diff --git a/.gitignore b/.gitignore index 2c770e09..12f86447 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,6 @@ build # other eclipse run + +# Files from Forge MDK +forge*changelog.txt diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..f29059a7 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,38 @@ +# AGENTS.md + +## Cursor Cloud specific instructions + +### Project overview + +This is a Minecraft Forge mod called "Instant Massive Structures Mod" (IMSM) for Minecraft 1.15.2 with Forge 31.2.57 (branch `mc-1.15`). It uses ForgeGradle 3.0.197 with Gradle 4.10.3. + +### Java version requirement + +**Java 8** is required. Set `JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64` before all Gradle commands. + +### Development commands + +| Task | Command | +|---|---| +| Build | `JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 ./gradlew build` | +| Run client | `JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 DISPLAY=:1 ./gradlew runClient` | +| Clean | `JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 ./gradlew clean` | + +### Branch layout + +| Branch | MC Version | Forge | Build System | +|---|---|---|---| +| `master` | 1.10.2 | 12.18.0.2007 | ForgeGradle 2.2, Gradle 2.7 | +| `mc-1.11` | 1.11.2 | 13.20.1.2386 | ForgeGradle 2.2, Gradle 2.7 | +| `mc-1.12` | 1.12.2 | 14.23.5.2847 | ForgeGradle 2.3, Gradle 4.9 | +| `mc-1.15` | 1.15.2 | 31.2.57 | ForgeGradle 3.0.197, Gradle 4.10.3 | + +### Known caveats + +- **LWJGL3 input in cloud VMs**: MC 1.15+ uses LWJGL3/GLFW for input, which does not respond to `xdotool` or `xte`. The `computerUse` subagent cannot interact with the MC 1.15+ game window. Manual testing via the Desktop pane is the only option, and even that may have trouble with mouse clicks depending on the VM's X11 implementation. +- **No audio in VM**: Sound initialization fails (OpenAL). The game falls back to silent mode automatically. +- **Auto-Creative mode**: The mod auto-sets Creative mode when a player joins (for testing convenience). Remove the `onPlayerLogin` handler in `IMSM.java` for production. +- **`/imsm ` command**: Added for testing. Usage: `/imsm WoodenHouse` places a structure at the player's location. Structure names match filenames in `assets/imsm/structs/` without the `.structure` extension. +- **Block registration**: Uses reflection to auto-register all static `Block` fields in `IMSM.java` with lowercase registry names. `BlockItem` entries are auto-created for all blocks in the `Structures` item group. +- **Asset naming**: All blockstate JSONs, model JSONs, texture PNGs, and lang files must be lowercase. Blockstate variant keys use `""` (empty string) not `"normal"`. Texture paths use `block/` not `blocks/`. +- **Transient HTTPS outages**: The Forge Maven and Maven Central occasionally have SSL connection reset issues in the cloud VM. Retry after a few minutes if Gradle dependency resolution fails. diff --git a/CREDITS-fml.txt b/CREDITS-fml.txt deleted file mode 100644 index 97122f5d..00000000 --- a/CREDITS-fml.txt +++ /dev/null @@ -1,28 +0,0 @@ -This is Forge Mod Loader. - -You can find the source code at all times at https://github.com/MinecraftForge/FML - -This minecraft mod is a clean open source implementation of a mod loader for minecraft servers -and minecraft clients. - -The code is authored by cpw. - -It began by partially implementing an API defined by the client side ModLoader, authored by Risugami. -http://www.minecraftforum.net/topic/75440- -This support has been dropped as of Minecraft release 1.7, as Risugami no longer maintains ModLoader. - -It also contains suggestions and hints and generous helpings of code from LexManos, author of MinecraftForge. -http://www.minecraftforge.net/ - -Additionally, it contains an implementation of topological sort based on that -published at http://keithschwarz.com/interesting/code/?dir=topological-sort - -It also contains code from the Maven project for performing versioned dependency -resolution. http://maven.apache.org/ - -It also contains a partial repackaging of the javaxdelta library from http://sourceforge.net/projects/javaxdelta/ -with credit to it's authors. - -Forge Mod Loader downloads components from the Minecraft Coder Pack -(http://mcp.ocean-labs.de/index.php/Main_Page) with kind permission from the MCP team. - diff --git a/CREDITS.txt b/CREDITS.txt new file mode 100644 index 00000000..a70c53d5 --- /dev/null +++ b/CREDITS.txt @@ -0,0 +1,65 @@ +Minecraft Forge: Credits/Thank You + +Forge is a set of tools and modifications to the Minecraft base game code to assist +mod developers in creating new and exciting content. It has been in development for +several years now, but I would like to take this time thank a few people who have +helped it along it's way. + +First, the people who originally created the Forge projects way back in Minecraft +alpha. Eloraam of RedPower, and SpaceToad of Buildcraft, without their acceptiance +of me taking over the project, who knows what Minecraft modding would be today. + +Secondly, someone who has worked with me, and developed some of the core features +that allow modding to be as functional, and as simple as it is, cpw. For developing +FML, which stabelized the client and server modding ecosystem. As well as the base +loading system that allows us to modify Minecraft's code as elegently as possible. + +Mezz, who has stepped up as the issue and pull request manager. Helping to keep me +sane as well as guiding the community into creating better additions to Forge. + +Searge, Bspks, Fesh0r, ProfMobious, and all the rest over on the MCP team {of which +I am a part}. For creating some of the core tools needed to make Minecraft modding +both possible, and as stable as can be. + On that note, here is some specific information of the MCP data we use: + * Minecraft Coder Pack (MCP) * + Forge Mod Loader and Minecraft Forge have permission to distribute and automatically + download components of MCP and distribute MCP data files. This permission is not + transitive and others wishing to redistribute the Minecraft Forge source independently + should seek permission of MCP or remove the MCP data files and request their users + to download MCP separately. + +And lastly, the countless community members who have spent time submitting bug reports, +pull requests, and just helping out the community in general. Thank you. + +--LexManos + +========================================================================= + +This is Forge Mod Loader. + +You can find the source code at all times at https://github.com/MinecraftForge/MinecraftForge/tree/1.12.x/src/main/java/net/minecraftforge/fml + +This minecraft mod is a clean open source implementation of a mod loader for minecraft servers +and minecraft clients. + +The code is authored by cpw. + +It began by partially implementing an API defined by the client side ModLoader, authored by Risugami. +http://www.minecraftforum.net/topic/75440- +This support has been dropped as of Minecraft release 1.7, as Risugami no longer maintains ModLoader. + +It also contains suggestions and hints and generous helpings of code from LexManos, author of MinecraftForge. +http://www.minecraftforge.net/ + +Additionally, it contains an implementation of topological sort based on that +published at http://keithschwarz.com/interesting/code/?dir=topological-sort + +It also contains code from the Maven project for performing versioned dependency +resolution. http://maven.apache.org/ + +It also contains a partial repackaging of the javaxdelta library from http://sourceforge.net/projects/javaxdelta/ +with credit to it's authors. + +Forge Mod Loader downloads components from the Minecraft Coder Pack +(http://mcp.ocean-labs.de/index.php/Main_Page) with kind permission from the MCP team. + diff --git a/LICENSE-new.txt b/LICENSE-new.txt deleted file mode 100644 index be2c9e66..00000000 --- a/LICENSE-new.txt +++ /dev/null @@ -1,483 +0,0 @@ -Minecraft Forge is licensed under the terms of the LGPL 2.1 found -here http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt and copied -below. - -A note on authorship: -All source artifacts are property of their original author, with -the exclusion of the contents of the patches directory and others -copied from it from time to time. Authorship of the contents of -the patches directory is retained by the Minecraft Forge project. -This is because the patches are partially machine generated -artifacts, and are changed heavily due to the way forge works. -Individual attribution within them is impossible. - -Consent: -All contributions to Forge must consent to the release of any -patch content to the Forge project. - -A note on infectivity: -The LGPL is chosen specifically so that projects may depend on Forge -features without being infected with its license. That is the -purpose of the LGPL. Mods and others using this code via ordinary -Java mechanics for referencing libraries are specifically not bound -by Forge's license for the Mod code. - - - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index 97f398b2..00000000 --- a/LICENSE.md +++ /dev/null @@ -1,2 +0,0 @@ - -Copyright (C) 2018 Simon diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 00000000..b0cbe2b3 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,520 @@ +Unless noted below, Minecraft Forge, Forge Mod Loader, and all +parts herein are licensed under the terms of the LGPL 2.1 found +here http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt and +copied below. + +Homepage: http://minecraftforge.net/ + https://github.com/MinecraftForge/MinecraftForge + + +A note on authorship: +All source artifacts are property of their original author, with +the exclusion of the contents of the patches directory and others +copied from it from time to time. Authorship of the contents of +the patches directory is retained by the Minecraft Forge project. +This is because the patches are partially machine generated +artifacts, and are changed heavily due to the way forge works. +Individual attribution within them is impossible. + +Consent: +All contributions to Forge must consent to the release of any +patch content to the Forge project. + +A note on infectivity: +The LGPL is chosen specifically so that projects may depend on Forge +features without being infected with its license. That is the +purpose of the LGPL. Mods and others using this code via ordinary +Java mechanics for referencing libraries are specifically not bound +by Forge's license for the Mod code. + + +=== MCP Data === +This software includes data from the Minecraft Coder Pack (MCP), with kind permission +from them. The license to MCP data is not transitive - distribution of this data by +third parties requires independent licensing from the MCP team. This data is not +redistributable without permission from the MCP team. + +=== Sharing === +I grant permission for some parts of FML to be redistributed outside the terms of the LGPL, for the benefit of +the minecraft modding community. All contributions to these parts should be licensed under the same additional grant. + +-- Runtime patcher -- +License is granted to redistribute the runtime patcher code (src/main/java/net/minecraftforge/fml/common/patcher +and subdirectories) under any alternative open source license as classified by the OSI (http://opensource.org/licenses) + +-- ASM transformers -- +License is granted to redistribute the ASM transformer code (src/main/java/net/minecraftforge/common/asm/ and subdirectories) +under any alternative open source license as classified by the OSI (http://opensource.org/licenses) + +========================================================================= +This software includes portions from the Apache Maven project at +http://maven.apache.org/ specifically the ComparableVersion.java code. It is +included based on guidelines at +http://www.softwarefreedom.org/resources/2007/gpl-non-gpl-collaboration.html +with notices intact. The only change is a non-functional change of package name. + +This software contains a partial repackaging of javaxdelta, a BSD licensed program for generating +binary differences and applying them, sourced from the subversion at http://sourceforge.net/projects/javaxdelta/ +authored by genman, heikok, pivot. +The only changes are to replace some Trove collection types with standard Java collections, and repackaged. +========================================================================= + + + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS diff --git a/MinecraftForge-Credits.txt b/MinecraftForge-Credits.txt deleted file mode 100644 index d0de5a52..00000000 --- a/MinecraftForge-Credits.txt +++ /dev/null @@ -1,26 +0,0 @@ -* Eloraam * - -* FlowerChild * - -* Hawkye * - -* MALfunction84 * - -Submitted the sleep handler code for his mod (Somnia) and others to use. - -* Scokeev9 * - -Gave permission for ScotTools API to be integrated into MCF, and also supported the Forge by converting his mods to use it. - -ScotTools Background: ScotTools was an API that enabled modders to add blocks to harvesting levels (and many other ease-of-use features to create new tools), and the first tool API that used block material for block breaking efficiency which allowed blocks from mods that didn't use ScotTools API to break with the correct speed. - -* SpaceToad * - -* LexManos * - -* cpw * - -* Minecraft Coder Pack (MCP) * -Forge Mod Loader and Minecraft Forge have permission to distribute and automatically download components of MCP and distribute MCP data files. -This permission is not transitive and others wishing to redistribute the Minecraft Forge source independently should seek permission of MCP or -remove the MCP data files and request their users to download MCP separately. diff --git a/Paulscode IBXM Library License.txt b/Paulscode IBXM Library License.txt deleted file mode 100644 index d4884b07..00000000 --- a/Paulscode IBXM Library License.txt +++ /dev/null @@ -1,10 +0,0 @@ -IBXM is copyright (c) 2007, Martin Cameron, and is licensed under the BSD License. -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -Neither the name of mumart nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - diff --git a/Paulscode SoundSystem CodecIBXM License.txt b/Paulscode SoundSystem CodecIBXM License.txt deleted file mode 100644 index a68a4947..00000000 --- a/Paulscode SoundSystem CodecIBXM License.txt +++ /dev/null @@ -1,40 +0,0 @@ -SoundSystem CodecIBXM Class License: - -You are free to use this class for any purpose, commercial or otherwise. -You may modify this class or source code, and distribute it any way you -like, provided the following conditions are met: - -1) You may not falsely claim to be the author of this class or any - unmodified portion of it. -2) You may not copyright this class or a modified version of it and then - sue me for copyright infringement. -3) If you modify the source code, you must clearly document the changes - made before redistributing the modified source code, so other users know - it is not the original code. -4) You are not required to give me credit for this class in any derived - work, but if you do, you must also mention my website: - http://www.paulscode.com -5) I the author will not be responsible for any damages (physical, - financial, or otherwise) caused by the use if this class or any - portion of it. -6) I the author do not guarantee, warrant, or make any representations, - either expressed or implied, regarding the use of this class or any - portion of it. - -Author: Paul Lamb -http://www.paulscode.com - - -This software is based on or using the IBXM library available from -http://www.geocities.com/sunet2000/ - - -IBXM is copyright (c) 2007, Martin Cameron, and is licensed under the BSD License. -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -Neither the name of mumart nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md deleted file mode 100644 index 501a2c7e..00000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -Instant Massive Structures Mod diff --git a/README.txt b/README.txt index b45931f4..6904b377 100644 --- a/README.txt +++ b/README.txt @@ -14,37 +14,31 @@ Source pack installation information: Standalone source installation ============================== -Step 1: Open your command-line and browse to the folder where you extracted the zip file. - -Step 2: Once you have a command window up in the folder that the downloaded material was placed, type: +See the Forge Documentation online for more detailed instructions: +http://mcforge.readthedocs.io/en/latest/gettingstarted/ -Windows: "gradlew setupDecompWorkspace" -Linux/Mac OS: "./gradlew setupDecompWorkspace" +Step 1: Open your command-line and browse to the folder where you extracted the zip file. -Step 3: After all that finished, you're left with a choice. -For eclipse, run "gradlew eclipse" (./gradlew eclipse if you are on Mac/Linux) +Step 2: You're left with a choice. +If you prefer to use Eclipse: +1. Run the following command: "gradlew genEclipseRuns" (./gradlew genEclipseRuns if you are on Mac/Linux) +2. Open Eclipse, Import > Existing Gradle Project > Select Folder + or run "gradlew eclipse" to generate the project. +(Current Issue) +4. Open Project > Run/Debug Settings > Edit runClient and runServer > Environment +5. Edit MOD_CLASSES to show [modid]%%[Path]; 2 times rather then the generated 4. -If you preffer to use IntelliJ, steps are a little different. +If you prefer to use IntelliJ: 1. Open IDEA, and import project. 2. Select your build.gradle file and have it import. -3. Once it's finished you must close IntelliJ and run the following command: - -"gradlew genIntellijRuns" (./gradlew genIntellijRuns if you are on Mac/Linux) +3. Run the following command: "gradlew genIntellijRuns" (./gradlew genIntellijRuns if you are on Mac/Linux) +4. Refresh the Gradle Project in IDEA if required. -Step 4: The final step is to open Eclipse and switch your workspace to /eclipse/ (if you use IDEA, it should automatically start on your project) - -If at any point you are missing libraries in your IDE, or you've run into problems you can run "gradlew --refresh-dependencies" to refresh the local cache. "gradlew clean" to reset everything {this does not effect your code} and then start the processs again. +If at any point you are missing libraries in your IDE, or you've run into problems you can run "gradlew --refresh-dependencies" to refresh the local cache. "gradlew clean" to reset everything {this does not affect your code} and then start the processs again. Should it still not work, Refer to #ForgeGradle on EsperNet for more information about the gradle environment. - -Tip: -If you do not care about seeing Minecraft's source code you can replace "setupDecompWorkspace" with one of the following: -"setupDevWorkspace": Will patch, deobfusicated, and gather required assets to run minecraft, but will not generated human readable source code. -"setupCIWorkspace": Same as Dev but will not download any assets. This is useful in build servers as it is the fastest because it does the least work. - -Tip: -When using Decomp workspace, the Minecraft source code is NOT added to your workspace in a editable way. Minecraft is treated like a normal Library. Sources are there for documentation and research purposes and usually can be accessed under the 'referenced libraries' section of your IDE. +or the Forge Project Discord discord.gg/UvedJ9m Forge source installation ========================= diff --git a/build.gradle b/build.gradle index 57490c06..4f73a3bd 100644 --- a/build.gradle +++ b/build.gradle @@ -1,82 +1,148 @@ - -// For those who want the bleeding edge buildscript { repositories { - jcenter() - maven { - name = "forge" - url = "http://files.minecraftforge.net/maven" - } + maven { url = 'https://maven.minecraftforge.net/' } + mavenCentral() } dependencies { - classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT' + classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.0.197' } } -apply plugin: 'net.minecraftforge.gradle.forge' +apply plugin: 'net.minecraftforge.gradle' +// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. +apply plugin: 'eclipse' +apply plugin: 'maven-publish' -/* -// for people who want stable - not yet functional for MC 1.8.8 - we require the forgegradle 2.1 snapshot -plugins { - id "net.minecraftforge.gradle.forge" version "2.0.2" -} -*/ -version = "1.0" -group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html -archivesBaseName = "modid" +version = '1.0' +group = 'com.yourname.modid' // http://maven.apache.org/guides/mini/guide-naming-conventions.html +archivesBaseName = 'modid' + +sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly. minecraft { - version = "1.10.2-12.18.0.2007-1.10.0" - runDir = "run" - - // the mappings can be changed at any time, and must be in the following format. - // snapshot_YYYYMMDD snapshot are built nightly. - // stable_# stables are built at the discretion of the MCP team. - // Use non-default mappings at your own risk. they may not allways work. - // simply re-run your setup task after changing the mappings to update your workspace. - mappings = "snapshot_20160518" + // The mappings can be changed at any time, and must be in the following format. + // snapshot_YYYYMMDD Snapshot are built nightly. + // stable_# Stables are built at the discretion of the MCP team. + // Use non-default mappings at your own risk. they may not always work. + // Simply re-run your setup task after changing the mappings to update your workspace. + mappings channel: 'snapshot', version: '20200514-1.15.1' // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable. + + // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') + + // Default run configurations. + // These can be tweaked, removed, or duplicated as needed. + runs { + client { + workingDirectory project.file('run') + + // Recommended logging data for a userdev environment + property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' + + // Recommended logging level for the console + property 'forge.logging.console.level', 'debug' + + mods { + imsm { + source sourceSets.main + } + } + } + + server { + workingDirectory project.file('run') + + // Recommended logging data for a userdev environment + property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' + + // Recommended logging level for the console + property 'forge.logging.console.level', 'debug' + + mods { + imsm { + source sourceSets.main + } + } + } + + data { + workingDirectory project.file('run') + + // Recommended logging data for a userdev environment + property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' + + // Recommended logging level for the console + property 'forge.logging.console.level', 'debug' + + args '--mod', 'imsm', '--all', '--output', file('src/generated/resources/') + + mods { + imsm { + source sourceSets.main + } + } + } + } } dependencies { - // you may put jars on which you depend on in ./libs - // or you may define them like so.. - //compile "some.group:artifact:version:classifier" - //compile "some.group:artifact:version" - - // real examples - //compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env - //compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env - - // the 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime. - //provided 'com.mod-buildcraft:buildcraft:6.0.8:dev' - - // the deobf configurations: 'deobfCompile' and 'deobfProvided' are the same as the normal compile and provided, - // except that these dependencies get remapped to your current MCP mappings - //deobfCompile 'com.mod-buildcraft:buildcraft:6.0.8:dev' - //deobfProvided 'com.mod-buildcraft:buildcraft:6.0.8:dev' - - // for more info... + // Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed + // that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied. + // The userdev artifact is a special name and will get all sorts of transformations applied to it. + minecraft 'net.minecraftforge:forge:1.15.2-31.2.57' + + // You may put jars on which you depend on in ./libs or you may define them like so.. + // compile "some.group:artifact:version:classifier" + // compile "some.group:artifact:version" + + // Real examples + // compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env + // compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env + + // The 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime. + // provided 'com.mod-buildcraft:buildcraft:6.0.8:dev' + + // These dependencies get remapped to your current MCP mappings + // deobf 'com.mod-buildcraft:buildcraft:6.0.8:dev' + + // For more info... // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html // http://www.gradle.org/docs/current/userguide/dependency_management.html } -processResources -{ - // this will ensure that this task is redone when the versions change. - inputs.property "version", project.version - inputs.property "mcversion", project.minecraft.version - - // replace stuff in mcmod.info, nothing else - from(sourceSets.main.resources.srcDirs) { - include 'mcmod.info' - - // replace version and mcversion - expand 'version':project.version, 'mcversion':project.minecraft.version - } - - // copy everything else, thats not the mcmod.info - from(sourceSets.main.resources.srcDirs) { - exclude 'mcmod.info' +// Example for how to get properties into the manifest for reading by the runtime.. +jar { + manifest { + attributes([ + "Specification-Title": "imsm", + "Specification-Vendor": "SimJoo", + "Specification-Version": "1", + "Implementation-Title": project.name, + "Implementation-Version": "${version}", + "Implementation-Vendor" :"SimJoo", + "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") + ]) } } + +// Example configuration to allow publishing using the maven-publish task +// we define a custom artifact that is sourced from the reobfJar output task +// and then declare that to be published +// Note you'll need to add a repository here +def reobfFile = file("$buildDir/reobfJar/output.jar") +def reobfArtifact = artifacts.add('default', reobfFile) { + type 'jar' + builtBy 'reobfJar' +} +publishing { + publications { + mavenJava(MavenPublication) { + artifact reobfArtifact + } + } + repositories { + maven { + url "file:///${project.projectDir}/mcmodsrepo" + } + } +} \ No newline at end of file diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 00000000..d62cf5f9 --- /dev/null +++ b/changelog.txt @@ -0,0 +1,1474 @@ +Build: 1.14.4-28.1.37 - Fri Oct 04 22:37:31 GMT 2019 + tterrag: + Combine all hidden mod resource packs into a single sortable pack + Fix mod datapacks sorting under vanilla + +========= +Build: 1.14.4-28.1.36 - Fri Oct 04 19:26:16 GMT 2019 + cpw: + Split server and client side pack locators apart and move them to their + respective behavioural components. This should facilitate fixing the + server pack data pack ordering, as well as other new features of mod + resource packs. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.1.35 - Fri Oct 04 17:37:04 GMT 2019 + lex: + Fix dimension types being incorrect when connecting to a non-Forge + server. Closes #6203 + +========= +Build: 1.14.4-28.1.34 - Fri Oct 04 11:27:27 GMT 2019 + cpw: + Fix the stupid derp that broke singleplayer dims. Don't send the dim + packet to the local client - it is not needed because obviously not. + Seems to have fixed the problem. Probably infinity new bugs by this. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.1.33 - Fri Oct 04 06:28:27 GMT 2019 + tterrag: + Move OnlyIn patches on DyeColor to SAS file + Also fix broken cobblestone stairs recipe + +========= +Build: 1.14.4-28.1.32 - Fri Oct 04 05:41:48 GMT 2019 + tterrag: + Expose DyeColor#colorValue, remove OnlyIn from all DyeColor methods + +========= +Build: 1.14.4-28.1.31 - Thu Oct 03 01:54:25 GMT 2019 + cpw: + Properly propagate the DimensionType information from server to client + at client connection time. This means the client now knows about the + dimensiontype properly and can access the ModDimension information on + the client. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.1.30 - Wed Oct 02 03:01:13 GMT 2019 + mattmess1221: + Move opening initial screen to after startup and events are enabled + (#6139) + This allows events to be fired for the initial opening of the main menu + Also fixes MC-145102 + + rubensworks: + Fix FluidTank with empty contents throwing error if drained (#6196) + +========= +Build: 1.14.4-28.1.28 - Wed Oct 02 02:54:31 GMT 2019 + wynprice999: + Changed all calls of `BlockState#getSoundType` to use the sensitive + version. (#6120) + + draco18s: + Patch Sweet Berry Bush to have Crop Growth Event Hook (#6094) + +========= +Build: 1.14.4-28.1.26 - Sat Sep 28 22:21:22 GMT 2019 + tterrag: + Allow structure processors to process entities + +========= +Build: 1.14.4-28.1.25 - Sat Sep 28 20:06:14 GMT 2019 + cpw: + Remove forced ANSI terminal - it breaks the Eclipse terminal output. As + a result, we can now support coloured log output again, by default. + Regen run configs to get the change (you should do this every update, + you know :D) + Signed-off-by: cpw + +========= +Build: 1.14.4-28.1.24 - Fri Sep 27 21:57:32 GMT 2019 + tterrag: + Make patched-in StairsBlock constructor public + Also fix supplier generic being too narrow in DeferredRegister#register + +========= +Build: 1.14.4-28.1.23 - Fri Sep 27 21:45:59 GMT 2019 + cpw: + Integrate modlauncher changes for mixin. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.1.22 - Wed Sep 25 22:03:41 GMT 2019 + tterrag: + Usability improvements to RegistryObject/DeferredRegister + + tterrag: + Fix new flower pot ctor not being usable with deferred register + +========= +Build: 1.14.4-28.1.20 - Wed Sep 25 01:06:00 GMT 2019 + tterrag: + Add constructor to StairsBlock that accepts a state supplier + +========= +Build: 1.14.4-28.1.19 - Tue Sep 24 01:43:11 GMT 2019 + lex: + Fix server jar manifest path. + +========= +Build: 1.14.4-28.1.18 - Mon Sep 23 17:19:28 GMT 2019 + tterrag: + Fix sea level not being available on client, move hook to Dimension + +========= +Build: 1.14.4-28.1.17 - Mon Sep 23 03:40:09 GMT 2019 + tterrag: + Add template arg to StructureProcessor#process + +========= +Build: 1.14.4-28.1.16 - Mon Sep 23 02:47:09 GMT 2019 + lex: + Fix timezone issue with the installer. + +========= +Build: 1.14.4-28.1.15 - Mon Sep 23 00:30:41 GMT 2019 + lex: + Bump binpatcher and jarsplitter versions to address Java differences on + older JDKs. + +========= +Build: 1.14.4-28.1.14 - Sun Sep 22 20:48:40 GMT 2019 + tterrag: + Fix type bound on GameRegistry.findRegistry being too narrow + + tterrag: + Fix jigsaw blocks not mirroring properly + + tterrag: + Allow modded dimensions to customise World#getSeaLevel + +========= +Build: 1.14.4-28.1.11 - Sat Sep 21 19:59:46 GMT 2019 + tterrag: + Add IExtensibleEnum#init, extend FillerBlockType/PlacementBehaviour + +========= +Build: 1.14.4-28.1.10 - Wed Sep 18 01:42:29 GMT 2019 + cpw: + Fixed the problem where an error would cause the main thread to continue + even though there were still parallel threads running. Also, handle + exceptions in the AutomaticEventSubscriber rather than leaking them to + the Parallel processor. + Actually closes #6148 Signed-off-by: cpw + + cpw: + Tag the deprecation of DeferredWorkQueue. I think this is causing + confusion as to scope. Its functionality will be tied to the events in + future - so mods can request the deferred work through methods on the + Mod Lifecycle events directly. The API will be coming soon. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.1.8 - Tue Sep 17 23:59:35 GMT 2019 + tterrag: + Make FlowerPotBlock extensible and reusable for mods + - Change static lookup map to an instance variable + - Add an instance variable for the "empty pot" for the current block + - Keep one instance of the lookup map between the empty pot and all its + full versions + - Convert everything to use delegates + +========= +Build: 1.14.4-28.1.7 - Tue Sep 17 21:39:44 GMT 2019 + Bward7864: + Post tag event directly from reloader thread (#6164) + +========= +Build: 1.14.4-28.1.6 - Tue Sep 17 00:16:04 GMT 2019 + cpw: + Some tweaks around the code base. A functional consumer for networking - + return a bool from your consumer function, rather than setPacketHandled. + Tweak the server modloading behaviour to try and be a bit clearer that a + mod errored. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.1.5 - Mon Sep 16 21:04:39 GMT 2019 + Bward7864: + Update furnace fuels to not recreate it's list every query, and update + when tags are reloaded. Add Tag update events. (#6140) + +========= +Build: 1.14.4-28.1.4 - Mon Sep 16 20:37:06 GMT 2019 + 17338378+Nightenom: + Maintain default behavior for Item#canPlayerBreakBlockWhileHolding() + (#6128) + +========= +Build: 1.14.4-28.1.3 - Mon Sep 16 20:21:40 GMT 2019 + Unnoen: + Update README badges to fix wrong version. (#6141) + +========= +Build: 1.14.4-28.1.2 - Mon Sep 16 20:03:26 GMT 2019 + mrcrayfish: + Reimplemented "MouseEvent" as RawMouseEvent for 1.14.X (#6144) + +========= +Build: 1.14.4-28.1.1 - Thu Sep 12 18:10:59 GMT 2019 + diesieben07: + Fix patch for vanilla spawning in WorldEntitySpawner (#6130) + +========= +Build: 1.14.4-28.1.0 - Thu Sep 12 16:14:54 GMT 2019 + lex: + Fix Entity.getPersistentData function name. Closes #6131 Bump spec + version for first 1.14.4 RB. + +========= +Build: 1.14.4-28.0.107 - Thu Sep 12 16:01:53 GMT 2019 + JDLogic: + Fix ParticleFactoryRegisterEvent not firing (#6126) + +========= +Build: 1.14.4-28.0.106 - Thu Sep 12 15:43:48 GMT 2019 + gigaherz: + Minor fixes to the fluids (#6150) + * Fixed vanilla rendering of fluids to take into account the alpha bits + of the color, and fix usages accordingly. + * Fixed missing texture derp. + +========= +Build: 1.14.4-28.0.105 - Wed Sep 11 14:00:40 GMT 2019 + gigaherz: + Some (sadly breaking) improvements to the Fluid API (#6110) + * Some (sadly breaking) improvements to the API, after feedback and + concerns provided by users: + - Moved calculation of the translation key to the FluidAttributes + constructor, so that builders can be shared between still & flowing + sub-fluids. + - Moved biome-based coloring to a dedicated FluidAttributes.Water + variant, which is not used by default. + - Added logic to automatically gather fluid textures into the list of + textures to bake. + - Patched BucketItem and FlowingFluidBlock to avoid eager access to the + fluid objects. + - Added a ForgeFlowingFluid class, as a more user-friendly way to + construct a new FlowingFluid. + +========= +Build: 1.14.4-28.0.104 - Tue Sep 10 23:02:31 GMT 2019 + lex: + Delay Block loot table name generation until needed, as calling early + will result in an empty name as the block is not registered yet. + + lex: + Add new DeferredRegistry helper, and change RegistryObject to update + when overrides are registered. + +========= +Build: 1.14.4-28.0.102 - Mon Sep 09 22:30:19 GMT 2019 + lex: + Fix slimes splitting more times then they should. Closes #6138 + +========= +Build: 1.14.4-28.0.101 - Mon Sep 09 03:32:59 GMT 2019 + tterrag: + Fix a couple places not calling forge getLightValue + +========= +Build: 1.14.4-28.0.100 - Sun Sep 08 06:23:38 GMT 2019 + cpw: + Fix problem with network connections timing out frequently. Turns out + there's a race condition - and the extra work forge does causes it to + happen much more frequently than vanilla (though I'm sure it's a vanilla + issue). Closes #6124, #5767 and probably lots more. + Signed-off-by: cpw + + tterrag: + Fix SCommandListPacket underflowing buffer when encountering a missing + argument type + + tterrag: + Remove StructureArgument to work around vanilla issue, clean up custom + arguments + + tterrag: + Fix vanilla typo causing errors when client is missing entity attributes + + tterrag: + Properly fix missing attribute issue, add vanilla bug ID + +========= +Build: 1.14.4-28.0.95 - Sat Sep 07 05:10:08 GMT 2019 + tterrag: + Make /locate command support modded structures + +========= +Build: 1.14.4-28.0.94 - Sat Sep 07 03:42:47 GMT 2019 + tterrag: + Make STRUCTURE_FEATURE registry a slave map of the FEATURE registry + Also convert Feature.STRUCTURES to a slave map + +========= +Build: 1.14.4-28.0.93 - Thu Sep 05 22:38:25 GMT 2019 + lex: + Fix REGISTER packet encode/decode issues. Changed ForgeConfig values to + return the default value if the config is not loaded, and exposed the + value objects as a internal config. + +========= +Build: 1.14.4-28.0.92 - Thu Sep 05 05:33:28 GMT 2019 + lex: + Fix naming conflicts with official names. + +========= +Build: 1.14.4-28.0.91 - Wed Sep 04 02:59:06 GMT 2019 + lex: + Fix item used stat not triggering properly on last item in the stack. + +========= +Build: 1.14.4-28.0.90 - Wed Sep 04 01:51:34 GMT 2019 + lex: + Add a bunch of tags from the omnibus. Fix test imports. And update + patches for line numbers. + + bl4ckscor33: + Add spawn reason to spawn events (#6096) + +========= +Build: 1.14.4-28.0.88 - Tue Sep 03 21:50:35 GMT 2019 + 6596492+yrsegal: + Add collisionExtendsVertically hook to allow modded blocks that extend + collision into the block above similar to fences. (#6092) + +========= +Build: 1.14.4-28.0.87 - Tue Sep 03 21:41:54 GMT 2019 + danielgoossens: + Fixed PlayerInteractEvent.LeftClickBlock useItem/useBlock (#6045) + +========= +Build: 1.14.4-28.0.86 - Tue Sep 03 21:31:04 GMT 2019 + danielgoossens: + Readded IForgeItem#getHighlightTip hook. (#6036) + +========= +Build: 1.14.4-28.0.85 - Tue Sep 03 20:20:52 GMT 2019 + goto.minecraft: + Added gravity as attribute to Entities (#5630) + +========= +Build: 1.14.4-28.0.84 - Tue Sep 03 19:59:53 GMT 2019 + ichttt: + Fix CME on chunk unload in FarmlandTicketManager (#5998) + +========= +Build: 1.14.4-28.0.83 - Sun Sep 01 18:42:33 GMT 2019 + cpw: + Add a modfolderfactory. Fix up login payload exposure. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.82 - Sun Sep 01 15:33:27 GMT 2019 + cpw: + Peel IModLocator into the SPI package and extract a small IModFile + interface as well. This allows building external IModLocator + implementations. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.81 - Sat Aug 31 17:57:15 GMT 2019 + cpw: + Move indexFor and biConsumer into FMLHandshakeHandler and expose them + publicly, so mods can add additional login messages. Closes #6087 + Signed-off-by: cpw + + faj10: + Added getters for FMLPlayMessages.SpawnEntity + + tobias.hotz: + move default log level for debug file to debug instead of trace, and + remove millis from console and GUI. Also remove unused config xmls + + cpw: + Add in MC REGISTER nonsense. Shut up #5730 + Tweak network a bit to fix initialization order stupidity. (Constants + don't load classes!) + Signed-off-by: cpw + + cpw: + Add in some client only player connectivity events. Closes #5536 + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.76 - Sat Aug 31 12:15:17 GMT 2019 + gigaherz: + Hookup BlockEvent.FluidPlaceBlockEvent (#6103) + +========= +Build: 1.14.4-28.0.75 - Fri Aug 30 03:42:51 GMT 2019 + cpw: + Update libs to 1.0 versions, bump grgit, and fix tag search behaviour + that resulted. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.74 - Thu Aug 29 19:09:49 GMT 2019 + gigaherz: + Fluid rework derp fixes. (#6098) + * Fix nulls returning from non-null methods, and null-check of + non-nullable values. + * Fix missed computation of the isEmpty flag in FluidStack + * Cleanup getAmount/isEmpty calls. + * Remove redundant suppliers. That info is readily available from the + vanilla Fluid / FluidState. + +========= +Build: 1.14.4-28.0.73 - Thu Aug 29 04:34:22 GMT 2019 + daemon.umbra: + Change fml.modloading.brokenfile.optifine to not imply that Forge is + responsible for Forge-Optifine compatibility. (#6080) + + ichttt: + Fix Digging particle sometimes using the wrong block pos to get + additional model data (#6077) + + williewillus: + Minor model system cleanup/documentation (#6089) + +========= +Build: 1.14.4-28.0.70 - Thu Aug 29 04:28:28 GMT 2019 + ichttt: + Add a config comment that lists the available constants of enums (#6079) + +========= +Build: 1.14.4-28.0.69 - Thu Aug 29 04:18:57 GMT 2019 + bl4ckscor33: + Restore PotionShiftEvent (#6042) + +========= +Build: 1.14.4-28.0.68 - Thu Aug 29 04:13:38 GMT 2019 + danielgoossens: + Added new InputEvent.MouseScrollEvent, fixes #5811 (#6037) + +========= +Build: 1.14.4-28.0.67 - Thu Aug 29 03:34:14 GMT 2019 + luasmrks: + Strip side annotations from CropsBlock.getSeedsItem (#6013) + + Bward7864: + Add Villager Trading Events (#6016) + +========= +Build: 1.14.4-28.0.65 - Thu Aug 29 03:14:27 GMT 2019 + wynprice999: + Updated constants to 1.14 (#6012) + + 46117728+valoeghese: + Added hook to allow biomes to specify custom river variants. (#5969) + +========= +Build: 1.14.4-28.0.63 - Thu Aug 29 01:42:25 GMT 2019 + williewillus: + Add particle factory registration event (#6018) + +========= +Build: 1.14.4-28.0.62 - Thu Aug 29 01:30:04 GMT 2019 + lex: + Recipe system cleanup. (#6014) + + gigaherz: + Fluid API rework (#5983) - Moved forge fluids into FluidAttributes + companion object to the vanilla Fluid. By gigaherz - Redesigned the + Fluid API to be closer to the Items API. By King Lemming Co-authored-by: + King Lemming + + gigaherz: + Fix license headers so `gradlew build` is happy. + + gigaherz: + Make FluidStacks non-nullable, and implement some TODOs. + +========= +Build: 1.14.4-28.0.58 - Thu Aug 29 01:12:54 GMT 2019 + bjfccb: + Fix regular arrows giving off particles after a world reload (MC-107941) + (#6061) + + ichttt: + Fix coremod not redirecting to the correct method (#6078) + +========= +Build: 1.14.4-28.0.56 - Wed Aug 28 19:59:19 GMT 2019 + lex: + Fix blocks being placed in adventure mode. Closes #6085 Add early error + for setting invalid world directory. Closes #6084 Fix PlayerTickEvent + not firing when dead, even if player isn't removed from world yet. + Closes #6074 Fix PlayerDestroyItemEvent not firing for some cases. + Closes #6067 + +========= +Build: 1.14.4-28.0.55 - Tue Aug 20 22:40:50 GMT 2019 + lex: + Fix Javac generics breakage. + + lex: + Sort server.properties while writing. + + lex: + Add Argument serializer for ModIdArgument. EnumArgument can't as vanilla + doesn't support extra data. + + lex: + Prevent worlds from unloading while players are in out-of-world states + by tracking all worlds references by every player in the server's player + list. + +========= +Build: 1.14.4-28.0.51 - Tue Aug 20 02:46:20 GMT 2019 + lex: + Fix Configs not generating correctly on first load Closes #6069 + + lex: + Fix chunk load failure when entering End portal Closes #6068 + +========= +Build: 1.14.4-28.0.49 - Thu Aug 15 18:04:06 GMT 2019 + williewillus: + Add hook to load custom mrls/rls not attached to a block or item. + (#6010) + +========= +Build: 1.14.4-28.0.48 - Thu Aug 15 17:35:07 GMT 2019 + bl4ckscor33: + Cover more cases for RightClickBlock event and restore onItemUseFirst + (#6009) + +========= +Build: 1.14.4-28.0.47 - Thu Aug 15 17:17:36 GMT 2019 + kirderf4: + Make DimensionManager.SavedEntry save sky light consistently (#6019) + +========= +Build: 1.14.4-28.0.46 - Wed Aug 14 23:13:25 GMT 2019 + lex: + Fix extract inheritance not using proper classpath and update + buildscript for FG asm changes. + +========= +Build: 1.14.4-28.0.45 - Mon Aug 05 12:56:59 GMT 2019 + cpw: + Grrr. Stupid error. Sorry lex: I fixed it. + Signed-off-by: cpw + + cpw: + Bump modlauncher to 3.2.x. Add a sender modid and document IMC. Closes + #5746 + Signed-off-by: cpw + + cpw: + Move fml's PlayerEvent and TickEvent to forge. Update `import + net.minecraftforge.fml.common.gameevent.PlayerEvent;` to `import + net.minecraftforge.event.entity.player.PlayerEvent;` and `import + net.minecraftforge.fml.common.gameevent.TickEvent;` to `import + net.minecraftforge.event.TickEvent;` + Signed-off-by: cpw + + cpw: + Actually reload config when it changes on disk. Closes #5541 and #5959 + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.41 - Mon Aug 05 01:19:19 GMT 2019 + cpw: + Turned minecraft into a proper Mod, with a "dummy" language provider. + Also fixed the "translations" not being available early if an exception + occurs by force loading the forge and MC ones. Closes #5984 + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.40 - Sat Aug 03 01:48:54 GMT 2019 + daemon.umbra: + Fix a crash I caused by misunderstanding formatToString (#6007) + +========= +Build: 1.14.4-28.0.39 - Sat Aug 03 01:03:37 GMT 2019 + lex: + Fix userdev setup by moving SAS concept to FG. + +========= +Build: 1.14.4-28.0.38 - Fri Aug 02 21:13:51 GMT 2019 + mods.itsmeow: + Add piston events (#5798) + +========= +Build: 1.14.4-28.0.37 - Fri Aug 02 21:07:42 GMT 2019 + des.herriott: + Make ParticleManager.IParticleMetaFactory public (#5926) + + mods.itsmeow: + Fix AT for EntitySpawnPlacementRegistry.register + +========= +Build: 1.14.4-28.0.35 - Fri Aug 02 21:01:02 GMT 2019 + jojohostert: + Add button to open mods folder (#5986) + +========= +Build: 1.14.4-28.0.34 - Fri Aug 02 20:50:19 GMT 2019 + mh: + Fixed PlayerInteractEvents not working (#5976) + + daemon.umbra: + Change ModLoadingException to display ModID instead of ModInfo instance + identifier. (#5999) + +========= +Build: 1.14.4-28.0.32 - Fri Aug 02 20:44:09 GMT 2019 + Gamebuster19901: + Fix LazyOptional throwing NPE to consumers when owners null. (#5772) + + Gamebuster19901: + Fixed Buttons in the error screen are incorrectly rendered if they are + extremely long Closes #5687 (#5924) + +========= +Build: 1.14.4-28.0.30 - Fri Aug 02 20:37:17 GMT 2019 + lex: + Make Villager profession unlocalized name use modids when not + 'minecraft' Closes #5977 Fixed trees able to be generated through water. + Closes #6000 Change Block#toString to use getRegistryName instead of + getNameForObject Closes #5937 Allow Cooking Recipes to deserialize + results with stack sizes. Closes #5960 + +========= +Build: 1.14.4-28.0.29 - Thu Aug 01 05:43:58 GMT 2019 + lex: + Fixed DimensionType.getRegistryName() returning null Closes #5992 Fixed + RegisterDimensionEvent not firing for new worlds. Closes #5987 + +========= +Build: 1.14.4-28.0.28 - Thu Aug 01 04:15:51 GMT 2019 + lex: + Introduce new Side Annotation Stripper system to semi-automate the + shipment of Sided methods and cleanup patches. New forge:checkSAS task + to validate this config file. Closes #5995 + +========= +Build: 1.14.4-28.0.27 - Tue Jul 30 23:42:43 GMT 2019 + ichttt: + Move world unload patch to tick function to prevent duplicate unloading, + fix log message in dim manager, fix javadoc for unload method (#5964) + +========= +Build: 1.14.4-28.0.26 - Tue Jul 30 23:36:37 GMT 2019 + bl4ckscor33: + fix melon and pumpkin seeds being peaceable on more than just farmland + (#5980) + +========= +Build: 1.14.4-28.0.25 - Tue Jul 30 23:30:21 GMT 2019 + thecheaterpaul: + Fixed possible ClassCastException with dye-able armor. (#5985) + +========= +Build: 1.14.4-28.0.24 - Tue Jul 30 00:20:04 GMT 2019 + cpw: + Fix naming for dev launch providers - they're in MCP.. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.23 - Mon Jul 29 01:10:50 GMT 2019 + cpw: + Register a config command. Currently one subcommand: showfile, which + when passed a modid and a type (CLIENT, COMMON or SERVER) will display a + link in the caller's chat to open that file in the OS file viewer of + choice. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.22 - Sun Jul 28 17:45:41 GMT 2019 + cpw: + Load default configs from the defaultconfig directory by default. (Can + be overridden in the fml.toml config file if desired). + Will load any type of config tracked file from there - client, common, + server or custom tracked file. This means you can ship defaults for your + pack in a defaultconfig directory. I am thinking about ways to force a + specific config override for an existing config. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.21 - Sat Jul 27 16:48:19 GMT 2019 + cpw: + Fix vanilla bug that hardcore death doesn't clean up properly, leaving a + running server and a broken GUI. Vanilla bug MC-148865 + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.20 - Sat Jul 27 09:35:20 GMT 2019 + lex: + Fixed network ticking player entity while it is dead. And explicitly + prevent overworld from unloading. Closes #5978 + +========= +Build: 1.14.4-28.0.19 - Sat Jul 27 00:02:37 GMT 2019 + cpw: + Crash report extended to show ModLauncher FML and Forge data. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.18 - Fri Jul 26 04:35:17 GMT 2019 + cpw: + Fix potion transformer to look up the right name depending on context. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.17 - Fri Jul 26 03:02:48 GMT 2019 + cpw: + Added a coremod, shush, don't tell Lex. + Seriously, this is how to do targeted changes to specific classes. + In this case, adding a fieldtomethod redirect for EffectInstance.potion + to allow substitution. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.16 - Fri Jul 26 01:00:15 GMT 2019 + lex: + Fix @ObjectHolderRegistry not properly detecting vanilla class level + references. Closes #5958 + + lex: + Fix Slimes not splitting on death Closes #5973 + +========= +Build: 1.14.4-28.0.14 - Wed Jul 24 18:15:36 GMT 2019 + lex: + Fixed missed patch causing blocks to not dropping EXP and BreakEvent to + not fire. + +========= +Build: 1.14.4-28.0.13 - Tue Jul 23 02:23:28 GMT 2019 + gigaherz: + Fix & Improve state comparison when checking vanilla block replacements + (#5922) + +========= +Build: 1.14.4-28.0.12 - Mon Jul 22 22:45:51 GMT 2019 + lex: + Keep player cap data until they have revived. Closes #5956 + +========= +Build: 1.14.4-28.0.11 - Sun Jul 21 01:04:23 GMT 2019 + cpw: + Fix datafixer exception catch: Closes #5951 + Signed-off-by: cpw + + cpw: + Fix objloader registering at wrong time. Closes #5847. Added test class + as suggested in the issue. + Note: most tests are commented out at the present time, pending rework. + Tests that work, work. + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.9 - Sat Jul 20 23:38:35 GMT 2019 + Barteks2x: + Fix RegistryObject when used with generic registry entry classes + + cpw: + Realms' removal has removed the need for additional jar transformation. + Signed-off-by: cpw + + cpw: + Fix error when ModsDiscoverer visits a non existent mods dir. + Closes cpw/modlauncher#30 + Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.5 - Sat Jul 20 23:20:18 GMT 2019 + cpw: + Make I18N format errors less spammy, also remove single apostrophes from + current translations in en_us.json. Other langs may still have problems. + Closes #5952 Signed-off-by: cpw + +========= +Build: 1.14.4-28.0.4 - Sat Jul 20 21:55:28 GMT 2019 + jojohostert: + Fix spam during startup (#5957) + +========= +Build: 1.14.4-28.0.3 - Sat Jul 20 19:59:31 GMT 2019 + ichttt: + Fix forge 1.14.4 startup in obfed enviroment (#5955) + +========= +Build: 1.14.4-28.0.2 - Sat Jul 20 16:06:15 GMT 2019 + thaun1: + Updated Example Version Range for 1.14.4 (#5950) + * Updated Example Version Range for 1.14.4 + + * Also changed loader version and version range + +========= +Build: 1.14.4-28.0.1 - Sat Jul 20 06:27:42 GMT 2019 + lex: + Fix javac compile issues. + + cpw: + Provisional update to 1.14.4. Missing a lot of playerinteractionmanager + patches because everything moved and I'm tired. + Fix up immediate problems. + bump to 28. + +========= +Build: 1.14.3-27.0.60 - Fri Jul 19 16:08:38 GMT 2019 + cpw: + Update mappings to 20190719 in prep for 1.14.4.. + Signed-off-by: cpw + +========= +Build: 1.14.3-27.0.59 - Thu Jul 18 21:22:01 GMT 2019 + github: + Remove OnlyIn Client Distribution from Effect and EffectType methods. + (#5925) + +========= +Build: 1.14.3-27.0.58 - Thu Jul 18 21:15:19 GMT 2019 + lex: + Change default BrewingRecipe to use an Ingredient for the input instead + of ItemStack. Closes #5944 Add AT for GameRules.register Closes #5946 + Fix Forge Blockstate loader model path is inconsistent with vanilla + blockstates Closes #5892 Fix client crashing when opting not to load a + world when there's missing blocks Closes #5886 + +========= +Build: 1.14.3-27.0.57 - Wed Jul 17 05:38:23 GMT 2019 + lex: + Fix CheckSpawn event logic for natural spawns. + +========= +Build: 1.14.3-27.0.56 - Tue Jul 16 23:03:04 GMT 2019 + lex: + Fixed item breaking particles not capturing current state of the + ItemStack. Closes #5934 + +========= +Build: 1.14.3-27.0.55 - Tue Jul 16 19:47:33 GMT 2019 + ewewukek: + Fix RenderSpecificHandEvent firing with wrong hand stack (#5927) + +========= +Build: 1.14.3-27.0.54 - Tue Jul 16 19:41:28 GMT 2019 + mods.itsmeow: + [1.14.x] Fix text positioning issues caused by scaling loading screen + (#5932) + +========= +Build: 1.14.3-27.0.53 - Tue Jul 16 18:53:16 GMT 2019 + lex: + Fixed PlayerSleepInBedEvent pos is always null Closes #5936 Fixed + decompile error causing Endless Loop in ModelBackery if model errors + exist. Fixed NPEs related to teleporting players without portals. + +========= +Build: 1.14.3-27.0.52 - Tue Jul 16 16:59:45 GMT 2019 + lex: + Add simple concurrency protection to Server world list. Closes #5938 and + #5739 + +========= +Build: 1.14.3-27.0.51 - Mon Jul 15 02:48:45 GMT 2019 + cpw: + Update modlauncher to the 3.x series. + Signed-off-by: cpw + +========= +Build: 1.14.3-27.0.50 - Thu Jul 11 03:14:20 GMT 2019 + tterrag1098: + Rework GuiModList mod info to use custom scrolling panel impl + +========= +Build: 1.14.3-27.0.49 - Thu Jul 11 00:39:30 GMT 2019 + lex: + Fix race condition in client mouse handler. Closes #5888 + + lex: + Cleanup Forge's Access Transformer, and add ATs for + Block.Properties#noDrop, and AxeItem/PickaxeItem. Closes #5866 and + Closes #5921 + +========= +Build: 1.14.3-27.0.47 - Wed Jul 10 02:21:09 GMT 2019 + lex: + Re-implement state.onBlockExploded() Closes #5914 + + lex: + Implement Item.isRepairable in Crafting and Grindstone. Closes #5917 + + lex: + Implemented Item.get/setDamage hooks. Closes #5899 + + lex: + Added LootPool.Builder#bonusRolls setter. Closes #5887 + +========= +Build: 1.14.3-27.0.43 - Tue Jul 09 03:43:09 GMT 2019 + williewillus: + Add general damage hook for items. Closes #5502 (#5670) + +========= +Build: 1.14.3-27.0.42 - Tue Jul 09 03:14:52 GMT 2019 + lex: + Fix syntax error in IRenderHandler. + + lex: + Pass tick counter to custom render handlers (#5744) + +========= +Build: 1.14.3-27.0.40 - Tue Jul 09 02:55:01 GMT 2019 + support: + Fix logoFile not working properly (#5775) + + 37298044+Cadiboo: + Fire Loading event (#5795) + +========= +Build: 1.14.3-27.0.38 - Tue Jul 09 02:49:22 GMT 2019 + 37298044+Cadiboo: + Added documentation to ObfuscationReflectionHelper adn deprecated index + based functions. (#5893) + + bk1325: + Add isServer and isClient methods to LogicalSide (#5606) + * Add helper methods to LogicalSide. + + * Fix backwards docs. + + sargun.vohra: + Throw exception when a mod returns null from a dispatched capability + provider (#5646) + + ichttt: + Fixed BakedModelWrapper not delegating new methods (#5761) + + ichttt: + Add IModelData to getParticleTexture (#5756) + + alucas: + Add InputEvent documentation (#5698) + + ichttt: + Adds some explanatory javadocs and check world in ModelDataManager + (#5762) + +========= +Build: 1.14.3-27.0.31 - Tue Jul 09 02:43:35 GMT 2019 + lex: + Fixed EntityJoinWorldEvent not being fired when player is added to + ServerWorld. #5827 Fixed wrong example path for the access transformer + in the MDK build.gradle. #5891 Added getters for mouse x/y velocity and + if the middle-mouse button is being held down. #5776 Modify issue + template for better clarity. #5874 Fixed grindstone not using + ItemStack-sensitive getMaxDamage. #5831 Added + ParticleManager.registerFactory to Forge's AT. #5896 Fixed NPE in + SidedInvWrapper when side was null. #5787 Moved + EndermanEntity.setAttackTarget super call to allow + LivingSetAttackTargetEvent the ability to override default behavior. + #5778 Added field to make "Looking at" debug info maximum distance + configurable #5714 + +========= +Build: 1.14.3-27.0.30 - Mon Jul 08 22:59:04 GMT 2019 + daemon.umbra: + Disable Config Button when no mods are selected (#5905) + Closes #5889 + +========= +Build: 1.14.3-27.0.29 - Mon Jul 08 22:53:13 GMT 2019 + me+github: + Fix link applying to whole component in chat if component starts with + link (#5909) + + daemon.umbra: + Fixed #5895: Shearing via Displenser drops Shears (#5906) + + tedstar.dev: + Fix MC-258 on mod list screen, enable sorting, minor tweaks. (#5846) + +========= +Build: 1.14.3-27.0.26 - Mon Jul 08 22:46:01 GMT 2019 + gerjan2001: + Added harvestLevel and harvestTool setter to the Block.Properties. + (#5916) + +========= +Build: 1.14.3-27.0.25 - Fri Jul 05 20:26:34 GMT 2019 + lex: + Fix installer realms issue on server. Uptake EventBus changes to fix + some potential dead locks. + +========= +Build: 1.14.3-27.0.24 - Thu Jul 04 20:03:53 GMT 2019 + elepet1906: + Fix old entity not being removed on dimension change (#5833) + +========= +Build: 1.14.3-27.0.23 - Wed Jul 03 19:35:33 GMT 2019 + primetoxinzz: + Update TextureStitchEvent.Pre to give access to the list of + ResourceLocations that will be loaded as textures. (#5870) + +========= +Build: 1.14.3-27.0.22 - Wed Jul 03 08:08:39 GMT 2019 + lex: + Add installer processor to deobfuscate Mincraft's Realms library. This + task will processes the current realms library from the json, so the + installer must be re-ran every time they update it. + +========= +Build: 1.14.3-27.0.21 - Tue Jul 02 20:08:57 GMT 2019 + gigaherz: + Redirect a method to the recipe book container, to allow modded screens + to have a recipe book. (#5873) + +========= +Build: 1.14.3-27.0.20 - Tue Jul 02 20:03:05 GMT 2019 + diesieben07: + Fix WorldEvent.Unload not firing on the client (fixes #5880) (#5884) + +========= +Build: 1.14.3-27.0.19 - Tue Jul 02 19:57:14 GMT 2019 + diesieben07: + Fix TickEvent.PlayerTickEvent firing twice for tick end (fixes #5878) + (#5885) + +========= +Build: 1.14.3-27.0.18 - Tue Jul 02 18:55:13 GMT 2019 + lex: + Fix type cast issues in ForgeConfig values. Closes #5894 Added config + value set and save functions. By default mod configs are auto-saved, so + you do not need to call save unless you create your own Config object. + +========= +Build: 1.14.3-27.0.17 - Mon Jul 01 03:49:18 GMT 2019 + cpw: + Remove legacy StartupProgress. Implement properly scalable progress + thanks to @gigaherz. Closes #5863. Implement API for pushing messages to + the startup screen from mods. Add memory display. + Signed-off-by: cpw + +========= +Build: 1.14.3-27.0.16 - Sat Jun 29 21:05:43 GMT 2019 + cpw: + Update coremods to newer version, with support for new targets. + Signed-off-by: cpw + +========= +Build: 1.14.3-27.0.15 - Fri Jun 28 00:23:46 GMT 2019 + lex: + Fix duplicate WorldEvent.Unload call in client key handler. Add recipe + generator to replace vanilla recipes with Forge tags. + +========= +Build: 1.14.3-27.0.14 - Thu Jun 27 17:57:18 GMT 2019 + lex: + Fix dimension save data invalid cache being to aggressive. + +========= +Build: 1.14.3-27.0.13 - Wed Jun 26 20:23:56 GMT 2019 + alalwww: + Fix garbled "µs" (#5818) + +========= +Build: 1.14.3-27.0.12 - Wed Jun 26 01:16:22 GMT 2019 + lex: + Fix fmluserdevdata not being a valid launch target. + +========= +Build: 1.14.3-27.0.11 - Wed Jun 26 01:04:02 GMT 2019 + lex: + Split userdev data entry point into it's own provider to fix duplicate + mod issue. + +========= +Build: 1.14.3-27.0.10 - Tue Jun 25 23:57:02 GMT 2019 + tterrag: + Fix configs correcting numeric values when the primitive type differs + Fix configs with range not clamping the corrected value, and instead + just replacing with the default + Closes #5855 + +========= +Build: 1.14.3-27.0.9 - Tue Jun 25 21:02:27 GMT 2019 + bs2609: + Fix item placement losing NBT data in creative mode (#5757) + +========= +Build: 1.14.3-27.0.8 - Tue Jun 25 20:56:41 GMT 2019 + kevin.iselborn: + Add extension to write entry id's to PacketBuffer's (#5812) + +========= +Build: 1.14.3-27.0.7 - Tue Jun 25 20:50:53 GMT 2019 + 33880787+RedBorg: + Add isItemValid check for ItemStackHandler (#5850) + +========= +Build: 1.14.3-27.0.5 - Tue Jun 25 20:45:02 GMT 2019 + tedstar.dev: + [1.14.x] Replace dye items in Forge tags. (#5843) + +========= +Build: 1.14.3-27.0.4 - Tue Jun 25 20:38:40 GMT 2019 + Unnoen: + Update readme and issue template. (#5773) + +========= +Build: 1.14.3-27.0.3 - Tue Jun 25 17:25:42 GMT 2019 + donalddani9612: + implement Ingredient.getSerializer for custom ingredients (#5813) + +========= +Build: 1.14.3-27.0.2 - Tue Jun 25 03:06:02 GMT 2019 + lex: + Fix vines and scaffolding not being climbable. Fix powered rails not + spreading power correctly. Closes: #5854 + +========= +Build: 1.14.3-27.0.1 - Tue Jun 25 02:37:14 GMT 2019 + lex: + Fix misaligned ServerWorld initCapabilities patch. + +========= +Build: 1.14.3-27.0.0 - Tue Jun 25 02:01:47 GMT 2019 + lex: + Initial 1.14.3 update. + +========= +Build: 1.14.2-26.0.63 - Sun Jun 23 23:55:05 GMT 2019 + cpw: + Fix too many registries being sent from server to client + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.62 - Sun Jun 23 22:36:43 GMT 2019 + tterrag: + Remove OnlyIn on TagCollection#getOwningTags + Fixes Block#getTags crashing on servers + +========= +Build: 1.14.2-26.0.61 - Sun Jun 23 20:01:37 GMT 2019 + cpw: + Reorganize sided event dispatch slightly. Dispatch model and + entityrenderer functions at more appropriate times. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.60 - Sun Jun 23 18:52:15 GMT 2019 + jojohostert: + Add mod failure identification + + cpw: + Tweak for lowercase handling. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.57 - Sun Jun 23 18:37:19 GMT 2019 + cpw: + Fix crash when crashing during modloading. Fix GuiModList being weird. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.56 - Sun Jun 23 16:27:18 GMT 2019 + cpw: + Process the main modloading work on the async thread, but still do + deferred work on the main thread by passing in the executor. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.55 - Sun Jun 23 06:57:15 GMT 2019 + tterrag: + Clean up config comments, make comment array nonnull + +========= +Build: 1.14.2-26.0.54 - Sun Jun 23 06:18:04 GMT 2019 + tterrag: + Automatically add range to config comments + + tterrag: + Fix forge event bus never starting up + +========= +Build: 1.14.2-26.0.52 - Sun Jun 23 03:39:20 GMT 2019 + cpw: + First pass of adding text to the loading progress UI. It deliberately + uses the very primitive STB generated font, so can only render basic + ASCII text, and also only renders pre-defined strings, as translations + aren't available either. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.51 - Sun Jun 23 00:43:36 GMT 2019 + cpw: + Moved some events to the Mod's event bus. You'll need to update which + bus you're listening to for these. (The Mod event bus is the only one + actively dispatching events during model loading). + ModelRegistryEvent, ModelBakeEvent, TextureStitchEvent.Pre, + TextureStitchEvent.Post, ColourHandlerEvent.Block, + ColourHandlerEvent.Item + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.50 - Sat Jun 22 23:58:24 GMT 2019 + cpw: + Fix StartupQuery, and put tests back. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.49 - Sat Jun 22 23:10:09 GMT 2019 + cpw: + Fix stupid bug introduced with the refactor.. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.48 - Sat Jun 22 16:53:05 GMT 2019 + cpw: + Tidy up mod loading a bit more, and also crash if the [[mods]] list + isn't a list. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.47 - Sat Jun 22 16:34:07 GMT 2019 + cpw: + Update mappings, move mod initialization to the async loader. + Signed-off-by: cpw + + cpw: + Fix server side loading, tweak mods command. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.43 - Sat Jun 22 03:35:29 GMT 2019 + tterrag: + Fix ModelDataTest + +========= +Build: 1.14.2-26.0.42 - Sat Jun 22 01:16:01 GMT 2019 + tterrag: + Fix #5612 add entity to ISelectionContext + +========= +Build: 1.14.2-26.0.41 - Sat Jun 22 00:29:32 GMT 2019 + tterrag: + Fix #5768 add access to MainWindow object in RenderGameOverlayEvent + +========= +Build: 1.14.2-26.0.40 - Sat Jun 22 00:23:47 GMT 2019 + tterrag: + Fix #5810 incorrect cullface on some models + +========= +Build: 1.14.2-26.0.39 - Fri Jun 21 23:48:06 GMT 2019 + tterrag: + Fix bad patch breaking armor dyeing + + tterrag: + Fix #5686 ArmorLayer still calls deprecated getArmorResource + +========= +Build: 1.14.2-26.0.37 - Fri Jun 21 23:35:42 GMT 2019 + tterrag: + Fix #5805 ModelBakeEvent does not fire + + tterrag: + Make sure test mods load, fix BlockstateRetextureTest + +========= +Build: 1.14.2-26.0.35 - Thu Jun 20 01:10:15 GMT 2019 + lex: + Fix some compile errors in test classes. + + lex: + Fix lighting not being sent to client when large amounts of blocks + change at once. Closes #5839 Remove RecipeType/VanillaRecipeTypes, as + 1.14 has a vanilla system for this. + +========= +Build: 1.14.2-26.0.33 - Mon Jun 17 21:08:30 GMT 2019 + lex: + Fix Vanilla resources loading from classpath, instead of the extra jar. + Causing issues in dev time, and Forge replacements. Closes #5824 + +========= +Build: 1.14.2-26.0.32 - Sun Jun 16 07:48:59 GMT 2019 + lex: + Make ReverseTagWrapper unmodifiable, fix error in log when mods folder + doesn't exist initial scan. + + lex: + Add temporary hard crash when mods error until we can load our error + screen. + +========= +Build: 1.14.2-26.0.30 - Sun Jun 16 04:48:14 GMT 2019 + cpw: + Skip running the datagenerator on unrequested mods. Add a run config for + the data task for modders to use + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.29 - Sun Jun 16 03:11:29 GMT 2019 + cpw: + Remove paulscode hack. It is not needed in 1.14, since paulscode is no + longer used. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.28 - Sun Jun 16 01:35:44 GMT 2019 + lex: + Expose the data entry point and generate Forge's Tags using it. + + cpw: + Add params for the exception message + Signed-off-by: cpw + tweak logging + Signed-off-by: cpw + + cpw: + Modify lex's data handler to use proper mod lifecycle event mechanisms + instead. New Lifecycle Event for requesting data harvesting. Mods will + be constructed, the registry will fire, and then a new Data event will + fire. Submit new data tag files to the data gatherer if you wish. The + game will shutdown after this. No other mod elements will happen. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.25 - Thu Jun 13 02:28:25 GMT 2019 + lex: + Add reverse tag cache, to make looking up tags for items/blocks/etc.. + less costly. + + 28928887+marcus8448: + Update Example Mod (#5781) + +========= +Build: 1.14.2-26.0.23 - Wed Jun 12 23:22:23 GMT 2019 + mods.itsmeow: + Fix AT for EntitySpawnPlacementRegistry.register (#5799) + +========= +Build: 1.14.2-26.0.22 - Wed Jun 12 23:16:39 GMT 2019 + hycrafthd: + Implement getValue in ClearableRegistry fixing DimensionArgument. + (#5809) + Fix DimensionArgument + +========= +Build: 1.14.2-26.0.21 - Wed Jun 12 05:06:33 GMT 2019 + kashike: + Use dragon_immune block tag instead of manually checking blocks (#5792) + + bonzoweb: + Fix RenderSpecificHandEvent firing with wrong hand (#5789) + +========= +Build: 1.14.2-26.0.19 - Wed Jun 12 05:00:33 GMT 2019 + tterrag: + Fix #5806 sheep drop shears instead of wool + lol + +========= +Build: 1.14.2-26.0.18 - Wed Jun 12 04:54:30 GMT 2019 + tterrag: + Fix incorrect method used in ShrubFeature patch + +========= +Build: 1.14.2-26.0.17 - Wed Jun 12 04:48:37 GMT 2019 + tterrag: + Rework AbstractTreeFeature patches to reduce impact and avoid name + conflicts + +========= +Build: 1.14.2-26.0.16 - Mon Jun 10 22:14:58 GMT 2019 + tterrag: + Add IContainerFactory for reading custom container data on the client + +========= +Build: 1.14.2-26.0.15 - Mon Jun 10 21:04:07 GMT 2019 + lex: + Fix Fishing and Mineshaft Minecarts loot tables erroring. #5785 Fix + Client block breaking speed not matching the server. #5790 Fix Village + Siege event location, and MC-154328 preventing Sieges starting. #5800 + Fix EntityJoinWorldEvent not firing on client, or some server code + paths. #5786 + +========= +Build: 1.14.2-26.0.14 - Mon Jun 10 04:13:40 GMT 2019 + tterrag: + Adjust NetworkEvent#enqueueWork to match vanilla logic + In singleplayer our packet work could get delayed until the next tick, + breaking the expectation of packet read order. Fixes that using + NetworkHooks.openGui would result in missing inventory data on the + client + +========= +Build: 1.14.2-26.0.13 - Sun Jun 09 18:19:15 GMT 2019 + lex: + Fix gameDir argument error on dedicated server. + +========= +Build: 1.14.2-26.0.12 - Sun Jun 09 08:24:28 GMT 2019 + tterrag: + Add registry flag for syncing + + tterrag: + Add forge registries for most vanilla registries + Made all registry names consistent with their vanilla counterparts Also + added a system for legacy registry names, so no data will be lost + Cleaned up formatting in GameData and ForgeRegistries + +========= +Build: 1.14.2-26.0.10 - Sun Jun 09 04:19:52 GMT 2019 + tterrag: + Add forge registry for container types, expose + ScreenManager.registerFactory + + tterrag: + Fix issues preventing test mods loading + +========= +Build: 1.14.2-26.0.8 - Sat Jun 08 18:30:30 GMT 2019 + cpw: + Don't NPE during construction of ModLoadingException.. + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.7 - Sat Jun 08 16:22:18 GMT 2019 + lex: + Fix misobfed methods due to mapping conflict. + +========= +Build: 1.14.2-26.0.6 - Sat Jun 08 14:45:48 GMT 2019 + cpw: + Update mappings + Signed-off-by: cpw + +========= +Build: 1.14.2-26.0.5 - Sat Jun 08 05:33:37 GMT 2019 + tterrag: + Fix block activation not occurring serverside + Missing block of code from the old patch caused it to be skipped + +========= +Build: 1.14.2-26.0.4 - Sat Jun 08 05:02:43 GMT 2019 + tterrag: + Rework model patches/classes for new bake signature + +========= +Build: 1.14.2-26.0.3 - Sat Jun 08 02:41:53 GMT 2019 + lex: + Fix NamespacedWrapper not delegating a new getter. Fixing data loading + spam at world start. Update red/yellow/green tags with new vanilla item + names. Reenabled test source directory in project and made ModelDataTest + compile. + +========= +Build: 1.14.2-26.0.2 - Fri Jun 07 21:49:40 GMT 2019 + cpw: + Fix realms class name + Signed-off-by: cpw diff --git a/forge-1.10.2-12.18.0.2007-1.10.0-changelog.txt b/forge-1.10.2-12.18.0.2007-1.10.0-changelog.txt deleted file mode 100644 index 98bd6287..00000000 --- a/forge-1.10.2-12.18.0.2007-1.10.0-changelog.txt +++ /dev/null @@ -1,10714 +0,0 @@ -Changelog: -Build 2007: - LexManos: - Fix hopper extract behavior being broken on edge cases due to - IItemHandler capability. Closes #3062 - -Build 1.10.2-12.18.0.2006-1.10.0: - LexManos: - Fixed FPS graph and new debug lines not being rendered in Debug screen. - Closes #3054 - -Build 1.10.2-12.18.0.2005-1.10.0: - diesieben07: - Restore (buggy?) behavior of vanilla BlockPistonMoving and ignore drop - chance (#3052) - -Build 1.10.2-12.18.0.2004-1.10.0: - LexManos: - Fix villages generating to high when using a cusom sea level. Closes - #3050 - -Build 1.10.2-12.18.0.2003-1.10.0: - LexManos: - Forge will now load extra mods from mods/mod_list.json and - mods/mc_version/mod_list.json. As defined by the same json spec as - --modListFile. And now if repositoryRoot is prefixed with absolute: the - path will NOT be relative to the MC directory. - LexManos: - Update build.gradle to have single line for specifying minecraft - version, and will update ForgeVersion.java as needed. - -Build 1.10.2-12.18.0.2002-1.10.0: - LexManos: - Fixed MC version number... I could of SWORN we removed this in favor of - a automated system... - -Build 1.10.2-12.18.0.2001-1.10.0: - LexManos: 1.10.2 Update - -Build 1.10-12.18.0.2000-1.10.0: - diesieben07: - Fix mob-spawners crashing for non-living entities and simply the patch - in the process (#3042) - -Build 1.10-12.18.0.1999-1.10.0: - mezz: - Fix legacy handling for ItemBucket subclasses and non-universal buckets - (#3038) - mezz: - Fix milk bucket is fillable with water or lava when milk is unregistered - (#3039) - -Build 1.10-12.18.0.1998-1.10.0: - mezz: Remove duplicated universal buckets from the creative list (#3035) - mezz: Fix FluidContainerRegistry handling potions as water bottles (#3037) - -Build 1.10-12.18.0.1997-1.10.0: - cpw: - Big warning for recipe types found without being registered, it turns - out this is pretty severe, modders need to fix it. - -Build 1.10-12.18.0.1996-1.10.0: - mezz: - Fix comparison stability of the Recipe Sorter with unknown recipes #2962 - (#3030) - -Build 1.10-12.18.0.1995-1.10.0: - LexManos: Fixed Husks rendering as standard zombies. Closes #3028 - -Build 1.10-12.18.0.1994-1.10.0: - LexManos: Fixed chests being replaced when trees grew. - -Build 1.10-12.18.0.1993-1.10.0: - luacs1998: Simple implementation of a Open/Close container event (#3017) - -Build 1.10-12.18.0.1991-1.10.0: - LexManos: - Fixed shifted patch in GameSettings causing settings to not load - properly. Closes #3025 #3022 - LexManos: Fixed incorrect variable being sent to doSpecialSpawn. Closes #2986 - LexManos: Fix incorrect logic in ChunkCache.isSideSolid. Closes #3026 - LexManos: Provide 'cleaner' version of TextureMap.setTextureEntry. Closes #1385 - -Build 1.9.4-12.17.0.1990: - LexManos: Fixed incorrect variable being sent to doSpecialSpawn. Closes #2986 - LexManos: Fix incorrect logic in ChunkCache.isSideSolid. Closes #3026 - -Build 1.10-12.18.0.1989-1.10.0: - cpw: Fix doors popping off solid sides. - -Build 1.10-12.18.0.1988-1.10.0: - cpw: Fix that the Missing blocks/items/registries prompt often got stuck. - -Build 1.9.4-12.17.0.1987: - LexManos: - Set ModelLoader.WHITE's texture size iniatlly instead of defaulting to - zero and being set later. - -Build 1.10-12.18.0.1986-1.10.0: - cpw: Fix Realms button text to be shorter again. Closes #3019 - -Build 1.10-12.18.0.1985-1.10.0: - cpw: Fix item pickup dupe bugs. Closes #3015 - -Build 1.10-12.18.0.1984-1.10.0: - blay09: - [1.10] Fix keys with KeyModifier failing to load (#3018) - Fix key options with KeyModifier failing to load due to - NumberFormatException - -Build 1.10-12.18.0.1983-1.10.0: - cpw: - Accept more 1.9.4 version strings. Fix NPE for custom villager types and - their associated zombie spawns. Still needs review. - -Build 1.10-12.18.0.1982-1.10.0: - mezz: Fix all guis closing as soon as they are opened (#3013) - -Build 1.10-12.18.0.1981-1.10.0: - cpw: Update to 1.10 - LexManos: Fix version number. - -Build 1.9.4-12.17.0.1980-1.10.0: - cpw: Fix the MDK - it gets the license too! - -Build 1.9.4-12.17.0.1979-1.10.0: - cpw: - Update the build.gradle script to ship the new license and stop shipping - the old licenses. - -Build 1.9.4-12.17.0.1978-1.10.0: - cpw: - In accordance with our stated goal of relicensing Forge to LGPL v2.1, - this commit enacts that change. Although it is using the 1.9.4 codebase, - it is intended that this branch become public with the 1.10 changes, as - such the license will take effect at that time. The three commits from - persons who have failed to accept the new license, as documented in - #2789, have had their commits reverted. This should complete the license - transition. Commits after the commit date of this commit should be - considered licensed by LGPLv2.1, as indicated in LICENSE-new.txt. All - patches are now considered owned by the Forge project and Forge - Development LLC in particular (note that they will not get the license - boilerplate, as they are machine generated files). - -Build 1.9.4-12.17.0.1976: - GirafiStudios: - Made forge-type spawn eggs spawn childs, when right clicking - EntityAgeable again. (#2982) - -Build 1.9.4-12.17.0.1975: - shadowfacts: Fix broken EntityItem merging for Items with capabilities - diesieben07: - Make ASMDataTable more useful: (#2911) - - EnumHolder now has getters for it's data - - enum arrays work now - - nested annotations work now outside of being in arrays - (cherry picked from commit f10f750) - -Build 1.9.4-12.17.0.1974-1.9.4: - diesieben07: - Make ASMDataTable more useful: (#2911) - - EnumHolder now has getters for it's data - - enum arrays work now - - nested annotations work now outside of being in arrays - -Build 1.9.4-12.17.0.1973: - mezz: Fix incorrect FluidUtil doc (#2996) - -Build 1.9.4-12.17.0.1972: - mezz: Fix ItemStack deserialization can't clear nbt (#3005) - mezz: Improve the "missing mods" on-screen error message (#2997) - -Build 1.9.4-12.17.0.1970: - cpw: Update CONTRIBUTING.md - -Build 1.9.4-12.17.0.1969: - cpw: Update CONTRIBUTING.md - -Build 1.9.4-12.17.0.1968: - mezz: Fix #2918 Make dispensers with buckets work with modded fluids (#2947) - -Build 1.9.4-12.17.0.1967: - LexManos: Fixed brewing stand returning incorrect solts for side inventories. - -Build 1.9.4-12.17.0.1966: - LexManos: Fixed villager career display names being off by one. - -Build 1.9.4-12.17.0.1965: - diesieben07: - Fix DataParameter mixup when vanilla clients are connected causing CCE - in zombie renderer (#2992) - -Build 1.9.4-12.17.0.1964: - williewillus: Fix AnimationItemOverrideList not falling back to super (#2990) - -Build 1.9.4-12.17.0.1963: - mezz: - Fix #2961 Capability data is not preserved by fluid handler interactions - (#2976) - -Build 1.9.4-12.17.0.1962: - cpw: Slight tweak to early loading, to accommodate FMP - -Build 1.9.4-12.17.0.1961: - LexManos: - Fixed Fernflower decompile issue in AnvilChunkLoader.saveExtraData() - Closes #2985 - -Build 1.9.4-12.17.0.1960: - cpw: - Mute the connection reset by peer exception - it's spamilicious for the - most part. - -Build 1.9.4-12.17.0.1959: - cpw: Fix missing IMC message query. - -Build 1.9.4-12.17.0.1958: - man.of.j: Read a Update JSON in UTF-8 (#2978) - -Build 1.9.4-12.17.0.1957: - williewillus: Add getter for the world to LootContext (#2954) - -Build 1.9.4-12.17.0.1956: - gurreja: Fixed arrows not showing in non default AchievementPages (#2968) - -Build 1.9.4-12.17.0.1955: - mezz: Add methods to Fluid to allow custom vaporization overrides (#2959) - -Build 1.9.4-12.17.0.1954: - fry: Fixes #1984. - -Build 1.9.4-12.17.0.1953: - fry: - Modified SimpleModelState to ignore the parts it doesn't know about. - Fixes model part hiding always applying to some models when - transformations are specified in the blockstate json. - -Build 1.9.4-12.17.0.1952: - fry: - Pass the GL context back from the splash screen during the - EntityRenderer init. - -Build 1.9.4-12.17.0.1951: - cpw: - Fire ChunkWatchEvent.Watch event, closes #2767. Based on @sfPlayer1 - patch suggestion. It looks like this logic has shifted relative to 1.8, - so there may be differences in event behaviour now. - -Build 1.9.4-12.17.0.1950: - minecrell: - Fix asynchronous chunk loading (#2946) - Since the update to Minecraft 1.9.4 chunks were actually never loaded - asynchronously because a sync request was always made from the - PlayerChunkMap shortly after the chunk had been queued. - - - PlayerChunkMapEntry now only loads chunks synchronously *after* the - chunk failed to load asynchronously. - - Fixed some minor bugs that caused "Attempted to dequeue chunk" - messages - - Simplified ChunkProviderServer patch. loadChunk no longer generates - chunks, - so there is no need to handle that. - - Moved loader and provider to ChunkIOProvider so there is no need for - "hashCode abuse" - -Build 1.9.4-12.17.0.1949: - mezz: - Make it easier to use FluidTanks that have input/output restrictions - (#2945) - These internal function should NOT be used by anything except the owner - of the tank. - -Build 1.9.4-12.17.0.1948: - LexManos: Fixed BiomeProvider.getModdedBiomeGenerators method name. Closes #2937 - -Build 1.9.4-12.17.0.1947: - williewillus: - Several bugfixes for PlayerInteractEvent (#2943) - * Don't change Result if setCanceled(false) called - - * Fix RightClickEmpty firing even when targeting a block or entity - - * Add a left click empty event - - * Move hook point for EntityInteractSpecific to the right place - - * Fix LeftClickBlock not firing clientside in creative, and clarify docs - about creative - -Build 1.9.4-12.17.0.1946: - mezz: - Add new IFluidHandler for capabilities. (#2942) - Old fluid system is deprecated and slated for removal in the next - cleanup cycle. - -Build 1.9.4-12.17.0.1945: - matti.j.ruohonen: - Add a Slot#isSameInventory() method (#2884) - This fixes shift + double clicking items in Containers that use - SlotItemHandler slots. - -Build 1.9.4-12.17.0.1944: - LexManos: - Fixed POTENTIAL issue where mods would query world infrom from TEs - before they are set. Closes #2863 - -Build 1.9.4-12.17.0.1943: - LexManos: - Fixed client side ticking TileEntites after they are unloaded. Closes - #2852 - LexManos: - Expanded custom villagers to Zombies and world gen. Fixed edge cases - where custom professiosn wernt being used correctly. Closes #2862 - -Build 1.9-12.16.0.1942-1.9: - ljfa-ag: Fix forge:default-tool transformation (#2795) - -Build 1.9.4-12.17.0.1941: - LexManos: Fixed position sent to sanSustainPlant from cactus. Closes #2941 - -Build 1.9.4-12.17.0.1940: - LexManos: - Forge will now warn the user and ask permission to load a world with - unknown registries. Closes #2934 - -Build 1.9.4-12.17.0.1939: - LexManos: Fix BlockFluidBase having collision. Closes #2932 - -Build 1.9.4-12.17.0.1937: - LexManos: - 1.9.4 Update. Major things to note: Class renames: - https://gist.github.com/LexManos/44dd211f90f498ad4015279b103dff86 Tile - Entities are now packed in the ChunkData packet. Forge intends to work - around this to better support large moded worlds, but for the time being - modders should implement the new function carefully and only send what - data they need to! Minecraft's codebase now has annotations, these are - directly from Mojang and should be adheared to! Added support for - package-info.java's containing @Nullable information for all MC code - base. - LexManos: Update mappoings snapshot to 20160518 - cpw: Fix schizophrenia in version numbers. - LexManos: Bump version information for 1.9.4. - LexManos: Update example mod for new mappings. - atomicblom: Add Unit Test to detect mismatches between EnumHelper and Enum ctor - cpw: - Tweak build file slightly - allow passing buildNumber using gradle - parameters (-PbuildNumber=...) and provide a "resetBuildNumber" function - to reset the buildNumber to zero in the ForgeVersion file. Means builds - can be reproducible in-IDE. - tterrag1098: Fix screenshot link paths on Windows (#2886) - LexManos: - Take capabilities into account when comparing ItemStack NBT's. Closes - #2726 - LexManos: - Tipped arrows are now not affected by infinite enchantment but are still - effected by creative mode. - LexManos: Set max enchantment ID to Short.MAX_VALUE. Closes #2799 - LexManos: - Fix Container.compouteStackSize not respecting stack version of - maxStackSize. Closes #2756 - LexManos: Fire playerDestroyItem event's in some cases where we were not. - LexManos: Fix villagers having farmer skin on vanilla servers. Closes #2894 - LexManos: Add alternative ItemAxe Constructor - LexManos: Fix paramters for addArmorMaterial, addOption and addGameType. - LexManos: - Make unit test for EnumHelper more robust and less spammy. Now detects - missing accessors as well. - the.f1repl4ce: Switch new constructor to use floats (#2904) - tterrag1098: Add hook for TE data sync on client (#2893) - cpw: - Strip Optional from the class signature as well, since that's loaded by - the TypeToken registry code and might cause a crash. - LexManos: - Fix installer downloading vanilla jar when not needed. And filter some - more known libraries. - LexManos: - Capture interfaces when scanning classes and preload implementations of - ICrashReportDetail. - LexManos: Set Enchantment table's harvest level. Closes #1349 - LexManos: - More uniformly apply Configuration.caseSensitiveCustomCategories. Closes - #1353 - LexManos: - Close player's inventory to prevent potential dupe issues on some modded - items. Closes #1431 - LexManos: - Move getArmorModel hook up two lines so that the attributes and - animation information is set. Closes #1939 - LexManos: Fire PopulateChunkEvent Pre and Post in ChunkProviderFlat. Closes #2050 - LexManos: Fire LivingSpawnEvents for MobSpawners. Closes #2079 - LexManos: Fix javadocs for BiomeColor events. Closes #2093 - LexManos: - Fixed EntityRegistry.addSpawn adding duplicate spawn entries. Closes - #2112 - LexManos: - Fix setTileEntity causing the world to remove the new and old tile - entities. Closes #2164 - LexManos: Add ServerHangWatchdog to TerminalTransformer whitelist. Closes #2203 - LexManos: Fixed NBTTagString.toString not properly escaping \'s. Closes #2393 - LexManos: - Reinitalize statistics information on Mapping changes. Fixes mismatched - stats to item/block ids. And auto registers stats for modded items. - Closes #2454 - LexManos: - Fix Thorns enchantment bypassing ISpecialArmor.damageArmor function. - Closes #2463 - LexManos: - Fix tooltip for survival tab in the creative menu not drawing on any but - the first page. Closes #2908 and #2504 - LexManos: - Make sure tool-classes for vanilla tools are initialized early. Closes - #2909 and #2525 - LexManos: - Fixed FluidUtil.tryEmptyFluidContainerItem not checking if the tank can - accept fluids first. Closes #2527 - LexManos: - Fixed potential issue with Chunk.getLightOpacity being called before the - chunk is added to the world map. Closes #2529 - LexManos: - Fixed TileEntityBeacon not using position-aware getLightOpacity. Closes - #2530 and #2910 - LexManos: Fixed village wells not having their biomes set. Closes #2499 - LexManos: - Fixed issue with @ObjectHolder and the new registry system. Closes #2640 - Only run static initalizers for classes we need to get the names from - values. - LexManos: - Fixed new ICrashReportDetail loader working with packaged mods by - delaying it until the ModContainer's construct event. Closes #2924 - fry: Reordered transformations during LayerHeldItem rendering, fixes #2827. - fry: - Initial support for model visibility system. Implemented it for OBJ, B3D - and normal vanilla models; fixed NPE accessing parent state in B3DModel. - Fixes #2801. - -Build 1.9.4-12.17.0.1935-1.9.4: - fry: Initial support for model visibility system. Implemented it for OBJ, B3D and normal vanilla models; fixed NPE accessing parent state in B3DModel. Fixes #2801. - -Build 1.9-12.16.1.1934: - mezz: - Improve JavaDoc links, fix some broken JavaDocs (#2833) - - Improve JavaDoc links, fix broken JavaDocs - -Build 1.9.4-12.17.0.1933-1.9.4: - fry: Reordered transformations during LayerHeldItem rendering, fixes #2827. - -Build 1.9.4-12.17.0.1932-1.9.4: - LexManos: Fixed new ICrashReportDetail loader working with packaged mods by delaying it until the ModContainer's construct event. Closes #2924 - -Build 1.9.4-12.17.0.1931-1.9.4: - LexManos: Fixed village wells not having their biomes set. Closes #2499 - LexManos: - Fixed issue with @ObjectHolder and the new registry system. Closes #2640 - Only run static initalizers for classes we need to get the names from values. - -Build 1.9.4-12.17.0.1930-1.9.4: - LexManos: Fix tooltip for survival tab in the creative menu not drawing on any but the first page. Closes #2908 and #2504 - LexManos: Make sure tool-classes for vanilla tools are initialized early. Closes #2909 and #2525 - LexManos: Fixed FluidUtil.tryEmptyFluidContainerItem not checking if the tank can accept fluids first. Closes #2527 - LexManos: Fixed potential issue with Chunk.getLightOpacity being called before the chunk is added to the world map. Closes #2529 - LexManos: Fixed TileEntityBeacon not using position-aware getLightOpacity. Closes #2530 and #2910 - -Build 1.9.4-12.17.0.1929-1.9.4: - LexManos: Fix Thorns enchantment bypassing ISpecialArmor.damageArmor function. Closes #2463 - -Build 1.9.4-12.17.0.1928-1.9.4: - LexManos: Fixed NBTTagString.toString not properly escaping \'s. Closes #2393 - LexManos: - Reinitalize statistics information on Mapping changes. - Fixes mismatched stats to item/block ids. And auto registers stats for modded items. - Closes #2454 - -Build 1.9.4-12.17.0.1927-1.9.4: - LexManos: Fire LivingSpawnEvents for MobSpawners. Closes #2079 - LexManos: Fix javadocs for BiomeColor events. Closes #2093 - LexManos: Fixed EntityRegistry.addSpawn adding duplicate spawn entries. Closes #2112 - LexManos: Fix setTileEntity causing the world to remove the new and old tile entities. Closes #2164 - LexManos: Add ServerHangWatchdog to TerminalTransformer whitelist. Closes #2203 - -Build 1.9.4-12.17.0.1926-1.9.4: - LexManos: Set Enchantment table's harvest level. Closes #1349 - LexManos: More uniformly apply Configuration.caseSensitiveCustomCategories. Closes #1353 - LexManos: Close player's inventory to prevent potential dupe issues on some modded items. Closes #1431 - LexManos: Move getArmorModel hook up two lines so that the attributes and animation information is set. Closes #1939 - LexManos: Fire PopulateChunkEvent Pre and Post in ChunkProviderFlat. Closes #2050 - -Build 1.9.4-12.17.0.1925-1.9.4: - LexManos: Fix installer downloading vanilla jar when not needed. And filter some more known libraries. - LexManos: Capture interfaces when scanning classes and preload implementations of ICrashReportDetail. - -Build 1.9.4-12.17.0.1924-1.9.4: - cpw: Strip Optional from the class signature as well, since that's loaded by the TypeToken registry code and might cause a crash. - -Build 1.9-12.16.1.1923: - shadowfacts: Pass the correct position into isSideSolid in BlockRailBase#canPlaceBlockAt (#2919) - -Build 1.9.4-12.17.0.1922-1.9.4: - tterrag1098: Add hook for TE data sync on client (#2893) - -Build 1.9.4-12.17.0.1921-1.9.4: - the.f1repl4ce: Switch new constructor to use floats (#2904) - -Build 1.9.4-12.17.0.1920-1.9.4: - atomicblom: Add Unit Test to detect mismatches between EnumHelper and Enum ctor - LexManos: Fix paramters for addArmorMaterial, addOption and addGameType. - LexManos: Make unit test for EnumHelper more robust and less spammy. Now detects missing accessors as well. - -Build 1.9.4-12.17.0.1918-1.9.4: - LexManos: Add alternative ItemAxe Constructor - -Build 1.9.4-12.17.0.1917-1.9.4: - LexManos: Fix villagers having farmer skin on vanilla servers. Closes #2894 - -Build 1.9.4-12.17.0.1916-1.9.4: - LexManos: Fire playerDestroyItem event's in some cases where we were not. - -Build 1.9.4-12.17.0.1915-1.9.4: - LexManos: Fix Container.compouteStackSize not respecting stack version of maxStackSize. Closes #2756 - -Build 1.9.4-12.17.0.1914-1.9.4: - LexManos: Set max enchantment ID to Short.MAX_VALUE. Closes #2799 - -Build 1.9.4-12.17.0.1913-1.9.4: - LexManos: Tipped arrows are now not affected by infinite enchantment but are still effected by creative mode. - -Build 1.9.4-12.17.0.1912-1.9.4: - tterrag1098: Fix screenshot link paths on Windows (#2886) - LexManos: Take capabilities into account when comparing ItemStack NBT's. Closes #2726 - -Build 1.9.4-12.17.0.1910-1.9.4: - cpw: Tweak build file slightly - allow passing buildNumber using gradle parameters (-PbuildNumber=...) and provide a "resetBuildNumber" function to reset the buildNumber to zero in the ForgeVersion file. Means builds can be reproducible in-IDE. - -Build 1.9.4-12.17.0.1909-1.9.4: - LexManos: Update example mod for new mappings. - -Build 1.9-12.16.1.1907: - bonii-xx: - Fix Bucket rendering and add sound (#2865) - - * Adjust generated quads from texture to take texture size into account #2858 - - * Fix universal bucket not passing through when rightclicking on a non-block - Add proper sound events when picking up modded fluids #2821 - - * Have FluidUtil execute properly on both sides and sync as expected. Add default sounds to interacting with tanks - - * Save sound for filling/emptying in the fluid - -Build 1.9-12.16.1.1906: - LexManos: Lets just simply this. Fixes last commit. - -Build 1.9-12.16.1.1905: - LexManos: Add modder facing API for Villager Career level trades. Ref: #2854 - -Build 1.9-12.16.1.1904: - cpw: Fix up release jsons to clean up extraneous netty references - fry: Extended Animation State Machine format to allow multiple transitions from one state. - -Build 1.8.9-11.15.1.1902-1.8.9: - cpw: Fix up release jsons to clean up extraneous netty references - -Build 1.9-12.16.1.1901: - cpw: Fix up release jsons to clean up extraneous netty references - -Build 1.9-12.16.1.1900: - LexManos: Make LootPool constructor public again. Closes #2847 - -Build 1.9-12.16.1.1899: - LexManos: Fix type in LootEntry json name. And rename LootTable.finalize to freeze to avoid overriding Object function. Closes #2846 and #2847 - -Build 1.9-12.16.1.1898: - fry: Fixed joint animation application correctly. - -Build 1.9-12.16.1.1897: - shadowfacts: - Add ScreenshotEvent (#2828) - - Add ScreenshotEvent - -Build 1.9-12.16.1.1896: - LexManos: - New LootTable interaction system and event. - Modders can now modify and reference internal elements of a loot table by name. - Editing can ONLY be done in the event and any external editing will cause a exception to be thrown. - See this gist for more information: https://gist.github.com/LexManos/77c983d67b9ad27010428478b66d50fd - -Build 1.9-12.16.1.1895: - fry: Fixed joint hierarchy not being used fully in the animation system. - -Build 1.9-12.16.1.1894: - LexManos: Fixed issue in ChunkIO that would potentially cause NPEs on chunks. Closes #2837 - -Build 1.9-12.16.1.1893: - LexManos: Fixed map extension recipie. - -Build 1.9-12.16.1.1892: - mezz: Fix the rand given to PopulateChunkEvent (#2834) - -Build 1.9-12.16.1.1891: - LexManos: Fix areas where dimension types are used as dimension IDs. - -Build 1.9-12.16.1.1889: - LexManos: Add NPE protection to in-hand item rendering. - -Build 1.9-12.16.1.1888: - mattmess1221: - Fix url regex (#2815) - - Fixed url detection in chat messages. Stops false positives such as `um.....no` - -Build 1.9-12.16.1.1887: - LexManos: Slightly better practice because wait can be randomly interupted. - LexManos: Bump version for new RB. - -Build 1.9-12.16.0.1886: - cpw: Don't ignore rejects - cpw: Add in mcp named patches and use them. Initial 1.9 setup. - cpw: Add rejects with mcp names for application to main codebase. Let's roll? - cpw: First few patches applied - LexManos: net.minecraft.block.* patches - LexManos: util, tileentity, stats, realms. Potions got an overhaul and out registry will need to be adapted. - LexManos: Some import renames and compile error fixes, killed ~800. - fry: Updated various block model patches. - fry: A bunch of rendering rejects updated. - fry: RendererLivingEntity, RenderEntityItem, RenderItem, RenderManager, LayerArmorBase; Item.getModel + ISmartItemModel are now inside ItemOverrideList; fix class rename in TESR patch. - fry: EntityRenderer, most of RenderGlobal, minor fix to LayerBipedArmor. - fry: tabs -> spaces. - fry: FontRenderer - fry: Fixed most errors in the model stuff, except for ModelLoader and b3d and obj getQuads/handleBlockState methods. - LexManos: Some entity patches. - CovertJaguar: Fix broken patches for EntityMinecart - LexManos: Items done, <1000 errors whoot! - LexManos: Small renames before bed. - fry: GuiCreateWorld, GuiSlot, GuiUtilRenderComponents, GuiContainerCreative - fry: GuiOverlayDebug, ItemModelMesher, RenderManager, Stitcher fixed + minor fixes in forge gui classes. - fry: removed Item.getModel, functionality is now achieveable via ItemOverrides. - fry: Updated raw types in ExtendedBlockState, fixed some ATs, updated some things that needed updating in model classes. - fry: Chunk - cpw: - DedicatedServer - IntegratedServer - Adubbz: - Updated the biome dictionary - - Squashed commits: - - [4064de6] Updated the biome dictionary - LexManos: Enchantments, some world, Biomes, bucks, world/gen/features. - Adubbz: Updated BiomeManager to 1.9 - LexManos: Delete reject files i missed - LexManos: More work on misc things. - LexManos: World Patches work. - fry: Fix various errors in text mods. - fry: Fixed B3D loader, fixed some obvious errors in ModelLoader. - cpw: - LanguageManager - NetHandlerPlayClient - fry: ModelBox, PositionTextureVertex, TexturedQuad. Does anyone really use those on the server? - cpw: - ServerPinger - PlayerList - cpw: - WorldServer: NOTE - ChestGenHooks has NOT been updated in accordance with plans for removing it - GuiStats - Fixup deletion of egg handling in entity registry? - fry: Removed generics from IModel subinterfaces, add ed ModelProcessingHelper instead. - fry: Model UV lock handling from the state to the model, fixed most compile errors in ModelLoader, disabled it (and ModelBakeEvent) until it's functional, fixed some errors in ForgeHooksClient. - fry: Made OBJModel.java compile. - LexManos: Fixed errrors in Fluids package. TODO: Make BlockLiquid implement IFluidBlock and REMOVE FluidContainerRegsitry. Everything *should* be able to use IFluidContainer directly. - LexManos: Fishing is now a loot table no more need for FishingHooks. {LootTables still need to be evaludated if they need extra hooks, but thats later} Goodbye 44 compile errors! - LexManos: Temporary hack to fix MCP mappings for param names we are using that is causing compile errors. - LexManos: NetworkDispatcher/FMLProxyPacket 41 more errors cleaned. - cpw: Some fixups for FML, and use the FML registry for potions - cpw: Some more FML related fixups - cpw: Fix up import in Potion - cpw: Some client handler cleanup - cpw: Remove two patches that aren't needed anymore - cpw: Command fixups - cpw: Few more compile fixups - LexManos: More patch work, client patches. - LexManos: - 10 more rejects down. - 98 errors 6 rejects left. - fry: World - fry: Most of ItemInWorldManager reject, various small error fixes. - cpw: Some more forge code fixes - cpw: - Another compilation fix - More patch tweaks for compilation errors. onItemUseTick takes an entity now, cos skellies use stuff too - cpw: More fixups, removing chestgenstuff aggressively. Use loot tables. Any missing ones WILL be added by Mojang. - cpw: Remove more chestgenhooks stuff. Clean up some more ATs - cpw: Potion cleanup. Moar fixes! - cpw: Finish world, chunkloading should work again? - cpw: Another AT, for the player - cpw: Fix up PlayerSP for the AT - LexManos: Interaction hooks need to be re-added but compiles {Doesn't run} - LexManos: - Added bypass functions to Defaulted registry, DO NOT USE THIS MODDERS FORGE INTERNAL ONLY. - And some other fixups for running. - LexManos: Bump version info. Rather important. - LexManos: Fixed position being shifted before being sent to shouldSideBeRendered. - fry: Fix perspective transformations for left-handed items, disable ModelAnimationDebug until model loading is fixed. - cpw: Fix race condition between server ticks and the netlogin code handshaking for FML - cpw: Move the patch into the fml override handler, for less patch - fry: Fix items rendering too low in first person. - fry: Fixed (hopefully) perspective transformations for custom models too. - cpw: Capture Biome Registry within FML - fry: Fixed emply hand not rendering in first person. - fry: Fixed incorrect rendering state caused by transparent rendering pass for entities. - fry: Fixed armor rendering - cpw: Switch to srg patches - fry: Updated to latest mappings. Exc is broken, some anonymous classes didn't map to srg names. - fry: Fixed some errors in forge.exc - fry: First version of updated of ModelLoader, mostly works. - fry: Big model loader refactoring: simplified a lot of things, broke some error reporting. Still generally works. - LexManos: Update patches for fixed inner class suffeling in srg files. - LexManos: We are based on 1.9 not 1.8.9 :D - LexManos: Delete mcp patches. - LexManos: PlayerManager updated. - LexManos: Fix digging blocks in survival. - LexManos: Fixed breaking of tall grass. It now uses fortune. Expanded grass seed hooks to allow Fortune. Potentially removing in future in favor of LootTables. - vazkii: - 1.9: Fixed registering armor materials through EnumHelper exploding - - 1.9 ArmorMaterial now requires a SoundEvent for the equip sound. - fry: Fixed model error reporting, fixed model errors in test mods that shouldn't happen, fixed custom texture loading, made more things private/final. - fry: Fixed incorrect rotations for items in the left hand. Closes #2548. - fry: Fixed incorrect culling of mod TESRs. - fry: Fixed EffectRenderer patch, closes #2547. - fry: Removed imports in patches. - fry: Fixed progress reporting for model loading. - fry: Javadocs, small cleanup. - LexManos: Remove our entity position fixer. Vanilla fixed the bug in 1.9. - LexManos: Fix vanilla bug where bows consumed tipped arrows in creative. - LexManos: Fixed onUseStop being called twice {Bows firing twice} - LexManos: Fixed Sand not falling. - LexManos: Fixed NPE when sneak using a item. - Adubbz: BlockColors and ItemColors no longer assume non-Vanilla id constancy. Added a getter for ItemColors. - fry: Fixed MultiLayerModel not getting correct submodels; Unified the gui lighting of normal and custom models - diffuse lighting is now done in the pipeline, no need for IColoredBakedQuad anymore. - fry: Fixed quads that don't need diffuse lighting getting it anyway. - LexManos: Fix AT lines. - fry: Fixed invalid index calculation in BakedQuadRetextured. - fry: Fixed Block.doesSideBlockRendering, closes #2564. - fry: Fixed outline shader rendering, closes #2560. - fry: Fixed sprite not being passed to the quad builder for custom models. - cordonfreeman: Fix for patch targetting the wrong field to change for failed pathfinding penalty - iTitus: - Fix the EntityPlayer patch - - In 1.8.9 the call goes to getDisplayNameString() so that any changes from the PlayerEvent.NameFormat event are being take into account. - In this patch the call goes to func_70005_c_() which is the getter for the GameProfile name. - I changed it back. - - Sorry if you do not want to accept it because it is a one-liner. - vincent.lee: Fix #2555 - diesieben07: Fix broken patch in EntityPlayer.updateRidden - blay09: - Fix KeyInputEvent only being fired if Keyboard.getEventKeyState() is false. - - It used to be called for both key-up and key-down states prior to 1.9, so I assume Vanilla's changes to F3 behavior broke the patch. - matthewprenger: Pass exceptions thrown in mod event buses back to FML to handle apropriately - vincent.lee: Fix double dropping of items. Closes #2549 - cpw: Ignore classes directory - cpw: Fix bucket test - diesieben07: Fix EntityList.func_188429_b not supporting mod-entities, fixes spawn eggs, fixes #2581 - CovertJaguar: Fix #2601 Minecart infinite acceleration - gigaherz: Fix a condition that caused the enchantment table to roll invalid enchantments. - fry: Switched animation system to capabilities, added animated item example, fixed state passing in MultiModel. - fry: Separated model classes to client and common packages. - fry: instance -> INSTANCE - vincent.lee: Expose IItemHandler on vanilla entities - fry: Implemented slightly more generic version of UVLock, re-enabled it for json models. Closes #2607. - fry: Removed blockCenterToCorner from TRSRTransformation constructor. Closes #2461. - fry: Ignore blocks/items with null registry name during model loading. Fixes NPE during resource reloading in worlds with removed blocks/items. - fry: Made VertexBuffer.sortVertexData cleanup pointers after it's done. Closes #2528. - fry: Added default left hand transforms for forge transform strings. Closes #2615. - elpatricimo: - Allow players sized smaller than 1 block to walk into small spaces - - Same as #2605 but for 1.9 branch - LexManos: Rework DimensionManager for new DimensionType enum, replaces the old provider registry. Also fixed save folder issues with dimensions. Closes #2570 - LexManos: Fix Chests not opening correctly with semi-solid blocks on top. - LexManos: Fixed Item.shouldCauseReequipAnimation hook. - LexManos: Add ShieldDecoration and Tipped arrows to recipe sorter. Closes #2613 - LexManos: Exclude jna from termal tansformer. - vincent.lee: Update according to suggestions - LexManos: Fix pushing players inside blocks. - LexManos: Make RenderLivingBase.add/remvoeLayer, Closes #2573 - LexManos: Added support for custom dyes with Banners. Closes #2596 - LexManos: Allow finite fluids to be drained correctly - LexManos: Make OreDictionary.initVanillaEntries() private so that dumb modders will stop calling it. - vincent.lee: Actually fix dupe drop - LexManos: Fix swap animations for sure this time. - fry: Added Capability.cast, to allow avoiding unchecked casts in ICapabilityProvider.getCapability - LexManos: Update FML Entity Spawn packet for 1.9's location change. Closes #2567 - LexManos: Fixed custom entities unique ids. - LexManos: Fix typo causing biomes to be generated in wrong chunks. Closes #2632 - fry: Show meaningful error if ModelLoaderRegistry is used before the missing model is initialized. - fry: Register the animation Capability. No idea how it worked before at some point. - iTitus: - Add flashing update notification icon made by @gigaherz, closes #2582 - - It is added to the "Mods" button in the main menu and to out-of-date mods in the mod list (there it replaces the "U"). - Also fixes a little typo. - diesieben07: Fix BlockCrops.getDrops not respecting new age methods (for beetroots) - diesieben07: Fix PopulateChunkEvent.Post not firing - LexManos: - New Builder class in BlockStateContainer. Makes building containers with both listed and unlisted properties cleaner. - Make all methods of BiomeGenBase$BiomeProperties public so that modders can use that class outside subclasses. - fry: Cleanup: removed IEEP, removed redundant casts, fixed imports, fixed typos. - fry: Fixed isSideSolid causing infinite loops due to the call to getActualState. - fry: Removed LanguageRegistry and CollectionWrapperFactory. - fry: Removed RenderWorldEvent, encapsulated all public event fields. - fry: Made some more public fields either private or final. - fry: Disabled erroring block, fixed DynBucketTest.TestItem model. - mezz: - Make tooltips layout in the right direction, wrap if there is no room - - Same as #2649, but for Minecraft 1.9 - fry: Fixed diffuse lighting not being applied if forge lighting pipeline is disabled, closes #2651 - fry: Enabled diffuse lighting by default in UnpackedBakedQuad.Builder. - fry: Fixed crosshair always being white, closes #2653. - kashike: - Replace Forge's `BlockPos#getImmutable` method with the included `BlockPos#toImmutable` (func_185334_h), while keeping the override in PooledMutableBlockPos to prevent mutable leaks. - Also prevent a mutable blockpos leak in World#setTileEntity - gigaherz: Add wrapper methods for IStorage#readNBT/writeNBT. - mezz: Fix Block.getPickBlock returning an ItemStack with a null Item - fry: Prevent missing model from loading multiple times. - fry: Fixed StackOverflow caused by the previous commit, closes #2669. - LexManos: Fix EntityPlayer still running old armor logic. Closes #2670 - LexManos: Fix shrubs not generating correctly. Closes #2663 - LexManos: Fix bows not animating properly when picking up ammo while using. Closes #2672 - LexManos: Make NoteBlockEvent raw constructor protected to allow subclasses. Closes #2153 - LexManos: Fix landing particles not showing up. Cloes #2661 - shadowfacts: Forward ItemBlock#addInformation to Block#addInformation - tterrag1098: Add state param to canRenderInLayer - hea3venmc: Fix remapped blocks being overriden with dummy air blocks. Closes #2491 - cpw: - Squashed commit of the following: - - commit b3b290aec9d3010a134859da6001ea28a96c2fdc - Merge: c6ce6a0 d803f7d - Author: cpw - Date: Fri Mar 25 13:28:04 2016 -0400 - - Merge branch 'RegistryRework' of https://github.com/LexManos/MinecraftForge into LexManos-RegistryRework - - Implement proper registry slaves. Should help with rollback related issues. - - Missing patch - - commit d803f7db76f65db9d27302c9804a643bc853dc22 - Author: LexManos - Date: Tue Mar 22 03:36:14 2016 -0700 - - Update VillagerRegistry and use it. Should in theory make custom villagers work now. Using string version instead of int id for networking. - - commit eb5e5b4b42fdca26d2a104e4dc1e6a3ea3051a7b - Author: LexManos - Date: Tue Mar 22 02:14:16 2016 -0700 - - More cleanup. - - commit edbc56b2ff314629d0e402709f3cf29fc79c4a3d - Author: LexManos - Date: Tue Mar 22 02:05:23 2016 -0700 - - More cleanups, removed deprecated UniqueIdentifier {ResourceLocation now} - - commit e2df8d1be3c97601508f83dc97b0e8853fa1e271 - Author: LexManos - Date: Tue Mar 22 01:29:19 2016 -0700 - - Stupid generics.... - - commit 46d57dc4677fa5ff3923e64eaccfb33d7e5aad8d - Author: LexManos - Date: Tue Mar 22 01:00:25 2016 -0700 - - Some registry tweaking to provde a non-complicated API modders can use. - cpw: Reconcile Block.patch - cpw: - Add registries for soundevents, enchantments and potiontypes - MinecraftForge-2576 [1.9] SoundEvents (and Enchantments and PotionTypes) need a FML registry - cpw: MinecraftForge-2683 InvocationTargetException for Forge 1820 for 1.9 - cpw: MinecraftForge-2684 [1.9] New Registry ignores keys - fry: Improved UV offset hackery - should fix most visible custom model seams. - cpw: Support ResLocations for IMC - cpw: Capture a vanilla freeze - will be used when FML connects to vanilla servers, soon - LexManos: Fixed compile error in registry code with Eclipse. - mezz: - Add key binding modifiers and contexts. - - Same as #2674, but for Minecraft 1.9 - Adubbz: Fixed mismatch registry names and mod ids - LexManos: Properly deprecate and link the replacement methods in GameRegistry. Add helper method for registering a block with default ItemBlock because people keep complaining -.- - fry: Changed generic signature of GameRegistry.register methods to work around the type inference bug; updated all example mods to the new block/item registration method. - fry: - Revert "Add key binding modifiers and contexts.", until it's fixed. - - This reverts commit 34c3af7e853d578c8e17e1f0cdf886251fad74ae. - mezz: Re-Add key binding modifiers and contexts. - mezz: Fix inability to attack while holding modifier keys - mcjty1: - Added DimensionManager.createProviderFor() to WorldClient constructor similar to what is done - in WorldServer to make sure the correct provider is created client-side too. - AEnterprise: onBlockHarvested is no longer called twice - fry: Added the ability to change the printed model error count; Added printing of actual exceptions causing missing variants related to blockstate loading, closes #2689. - fry: Made both exceptions occuring during item model loading print in the log; closes #2696. - LexManos: Fix issue caused by setting spawnRadius to 0. Closes #2624 - LexManos: Fixed EntityJoinWorldEvent not being fired for some entitites on Server Worlds. Closes #2685 - LexManos: Fix improper logic in ItemHandlerHelper.giveItemToPlayer causing some items to not be added. Closes #2705 - mezz: - Add modifier support to vanilla keybindings. - - Add Orange conflict color for modifier/key conflicts - (like Ctrl and Ctrl-Z conflicting) - Related to #2692 - vincent.lee: Player Interact Event - Zaggy1024: Fixed using PlaySoundEvent to replace a sound with a PositionedSound causing an NPE due to the Sound field not being set by a call to ISound.createAccessor(SoundHandler). - fry: Fixed mod languages not being loaded on the server. - fry: Fixed some test mods not being marked as client-only. - iTitus: Fix dynbucket item transformation. - fry: Fixed zip being closed too early in the server language loading. - fry: Fixed forge fluid having a collision box. - kat.swales: Corrected CapabilityItemHandler.readNBT ignoring anything in slot 0 in 1.9 - mezz: Fix #2717 Pick block hotkey not working in inventories - mezz: Fix some plain keybinds not working when a modifier is active - LexManos: Enhance some error logging related to OBJLoader issues, and RegistryEntries. - LexManos: - Cleanup OBJLoader parse function and fix issues related to JVM differences. - Also fix support for sopme of the spec that was partially respected. - LexManos: Fixed NPE in dedicated server languages. And fixed logger for main FML event bus. - fry: Made forge fluids use smooth lighting. - kashike: - Remove @SideOnly(Side.CLIENT) from BossInfo/BossInfoServer methods - - These methods can also be used by the server (see BossInfoServer, it sends packets to the client but the methods are @SideOnly(Side.CLIENT)) - LexManos: Fix potential desync between Forge's Villager profession and vanilla's int based system. - LexManos: Fix being kicked from server when climbing ladders. - matti.j.ruohonen: Fix ForgeChunkManager world unloading check (#2736) - mezz: - Add cancelable event for Potions shifting the gui position (#2667) - - Add cancelable event for Potions shifting the gui position - matthewprenger: Don't use import static with net.minecraft classes. Using the latest MCP snapshots this causes an import conflict. (#2742) - CrafterKina: make WorldSavedData implement NBTSerializable (#2745) - mezz: Fix log spam from invalid key modifiers (#2746) - LexManos: Expose a central place to access all of Vanilla and Forge's registries using the new registry API. - iTitus: - Fix forge:default-block transformation. (#2760) - - The first-person left-hand rotation was a little bit of. - vincent.lee: - Boss bar render event (#2701) - - Allow control over increment height - LexManos: Fix NPE on shield break. Closes #2786 - cpw: Add the new license text. Not yet applicable to forge. - cpw: - Update LICENSE-new.txt - - Clarification on infectivity - cpw: - Update LICENSE-new.txt - - Words - cpw: - Update LICENSE-new.txt - - Better words - mezz: Close #2780 add CMD localization for Mac key bindings (#2792) - bonii-xx: - Fix SidedInvWrapper accessing wrong slots for setStackInSlot. (#2797) - - Fix DoubleChestItemHandler not implementing IItemHandlerModifiable - LexManos: Fix sluggish scrolling on GuiScrollList's and fix small rendering issue with scroll bar on certian screen sizes. - bloodmc: - Only run block physics for TileEntities while capturing block placement. (#2803) - - Currently, all blocks placed by players that are not TE's run physics - twice. Blocks that contain a TileEntity are not affected due to a check in - 'ForgeHooks.onPlaceItemIntoWorld'. - - In order to fix the problem, 'Chunk.setBlockState' will now verify if - blocks are being captured before running onBlockAdded and if so, only run - physics if the block has a tileentity. This check also prevents blocks such - as TNT's from running its physics (explosion) when event is cancelled. - williewillus: Add Potion.renderHUDEffect (#2798) - bloodmc: - Call markDirty when restoring blocks with TileEntities. (#2809) - - This change makes sure the updated tileentity is saved properly within the - chunk. - AlexIIL: Fix TextureMap failing when registering a sprite's resource location twice (#2785) - fry: Fixed custom fluid sufraces not rendering from the bottom. Closes #2800. - fry: Make ChunkRenderDispatcher.countRenderBuilders configurable. Closes #2775. - fry: Fixed cooldown overlay sometimes rendering opaque. Closes #2772. - fry: Fixed villager profession not being set correctly on the client, and fixed custom village texture rendering. Closes #2766. - LexManos: Fix withers breaking bedrock. Closes #2813 - LexManos: - Add a java version detection and nag system for users on Java 7 or below. - Added detection of mods that rely on Java 8 and a graceful error screen. - The nag screen will be shown once a day. It can be disabled by editing the forge.cfg. - However it is HIGHLY recomended that user update to Java 8. - LexManos: Remove usage of AsynchronousExecutor library in favor or a simpler implementation. - cpw: Merge in a fix from 1.8.9 for rails - -Build 1.9-12.16.0.1885-1.9: - LexManos: Remove usage of AsynchronousExecutor library in favor or a simpler implementation. - -Build 1.9-12.16.0.1884-1.9: - LexManos: - Add a java version detection and nag system for users on Java 7 or below. - Added detection of mods that rely on Java 8 and a graceful error screen. - The nag screen will be shown once a day. It can be disabled by editing the forge.cfg. - However it is HIGHLY recomended that user update to Java 8. - -Build 1.9-12.16.0.1883-1.9: - LexManos: Fix withers breaking bedrock. Closes #2813 - -Build 1.9-12.16.0.1882-1.9: - fry: Fixed villager profession not being set correctly on the client, and fixed custom village texture rendering. Closes #2766. - -Build 1.9-12.16.0.1881-1.9: - fry: Fixed cooldown overlay sometimes rendering opaque. Closes #2772. - -Build 1.9-12.16.0.1880-1.9: - fry: Make ChunkRenderDispatcher.countRenderBuilders configurable. Closes #2775. - -Build 1.9-12.16.0.1879-1.9: - fry: Fixed custom fluid sufraces not rendering from the bottom. Closes #2800. - -Build 1.9-12.16.0.1878-1.9: - AlexIIL: Fix TextureMap failing when registering a sprite's resource location twice (#2785) - -Build 1.9-12.16.0.1877-1.9: - bloodmc: - Call markDirty when restoring blocks with TileEntities. (#2809) - - This change makes sure the updated tileentity is saved properly within the - chunk. - -Build 1.8.9-11.15.1.1875: - bloodmc: - Call markDirty when restoring blocks with TileEntities. (#2807) - - This change makes sure the updated tileentity is saved properly within the - chunk. - -Build 1.9-12.16.0.1874-1.9: - williewillus: Add Potion.renderHUDEffect (#2798) - -Build 1.8.9-11.15.1.1873: - bloodmc: Fix wrong blockstate being passed to notifyNeighborsRespectDebug. (#2806) - -Build 1.8.9-11.15.1.1872: - bloodmc: - Only run block physics for TileEntities while capturing block placement. (#2805) - - Currently, all blocks placed by players that are not TE's run physics - twice. Blocks that contain a TileEntity are not affected due to a check in - 'ForgeHooks.onPlaceItemIntoWorld'. - - In order to fix the problem, 'Chunk.setBlockState' will now verify if - blocks are being captured before running onBlockAdded and if so, only run - physics if the block has a tileentity. This check also prevents blocks - such as TNT's from running its physics (explosion) when placement event is - cancelled. - -Build 1.9-12.16.0.1871-1.9: - bloodmc: - Only run block physics for TileEntities while capturing block placement. (#2803) - - Currently, all blocks placed by players that are not TE's run physics - twice. Blocks that contain a TileEntity are not affected due to a check in - 'ForgeHooks.onPlaceItemIntoWorld'. - - In order to fix the problem, 'Chunk.setBlockState' will now verify if - blocks are being captured before running onBlockAdded and if so, only run - physics if the block has a tileentity. This check also prevents blocks such - as TNT's from running its physics (explosion) when event is cancelled. - -Build 1.9-12.16.0.1870-1.9: - LexManos: Fix sluggish scrolling on GuiScrollList's and fix small rendering issue with scroll bar on certian screen sizes. - -Build 1.9-12.16.0.1869-1.9: - bonii-xx: - Fix SidedInvWrapper accessing wrong slots for setStackInSlot. (#2797) - - Fix DoubleChestItemHandler not implementing IItemHandlerModifiable - -Build 1.9-12.16.0.1868-1.9: - cpw: - Update LICENSE-new.txt - - Clarification on infectivity - cpw: - Update LICENSE-new.txt - - Words - cpw: - Update LICENSE-new.txt - - Better words - mezz: Close #2780 add CMD localization for Mac key bindings (#2792) - -Build 1.9-12.16.0.1867-1.9: - cpw: Add the new license text. Not yet applicable to forge. - -Build 1.9-12.16.0.1866-1.9: - LexManos: Fix NPE on shield break. Closes #2786 - -Build 1.9-12.16.0.1865-1.9: - vincent.lee: - Boss bar render event (#2701) - - Allow control over increment height - -Build 1.9-12.16.0.1864-1.9: - izooDee5: - Fix forge:default-block transformation. (#2760) - - The first-person left-hand rotation was a little bit of. - -Build 1.9-12.16.0.1863-1.9: - LexManos: Expose a central place to access all of Vanilla and Forge's registries using the new registry API. - -Build 1.9-12.16.0.1862-1.9: - LexManos: Fix log spam from invalid key modifiers (#2746) - -Build 1.9-12.16.0.1861-1.9: - LexManos: make WorldSavedData implement NBTSerializable (#2745) - -Build 1.9-12.16.0.1860-1.9: - LexManos: Don't use import static with net.minecraft classes. Using the latest MCP snapshots this causes an import conflict. (#2742) - -Build 1.9-12.16.0.1859-1.9: - LexManos: - Add cancelable event for Potions shifting the gui position (#2667) - - Add cancelable event for Potions shifting the gui position - -Build 1.9-12.16.0.1858-1.9: - LexManos: Fix ForgeChunkManager world unloading check (#2736) - -Build 1.9-12.16.0.1857-1.9: - LexManos: Fix being kicked from server when climbing ladders. - -Build 1.9-12.16.0.1856-1.9: - LexManos: Fix potential desync between Forge's Villager profession and vanilla's int based system. - -Build 1.8.9-11.15.1.1855: - LexManos: - Update ore dictionary (#2721) - - Updated the Ore Dictionary with more vanilla items: - -Prismarine Shard ( "gemPrismarine" ) - -Prismarine Crystals ( "dustPrismarine" ) - -Prismarine Block ( "blockPrismarine" ) - -Prismarine Brick ( "blockPrismarineBrick" ) - -Dark Prismarine ( "blockDarkPrismarine" ) - -Nether Wart ( "cropNetherWart" ) - -Sugarcane ( "sugarcane" ) - -Paper ( "paper" ) - -Ender Pearl ( "enderpearl" ) - -Bone ( "bone) - -Gunpowder ( "gunpowder) - -String ( "string" ) - -Nether Star ( "netherStar" ) - -Leather ( "leather" ) - -Feather ( "feather" ) - -Egg ( "egg" ) - -End Stone ( "endstone" ) - -Torch ( "torch" ) - -Vine ( "vine" ) - -Cactus ( "blockCactus" ) - -Grass ( "grass") - -Obsidian ( "obsidian" ) - -Red Sandstone ( added to "sandstone" ) - -Crafting Table ( "workbench" ) - -Slime Block ( "blockSlime" ) - -Granite ( "stoneGranite" ) - -Polished Granite ( "stoneGranitePolished" ) - -Diorite ( "stoneDiorite" ) - -Polished Diorite ( "stoneDioritePolished" ) - -Andesite ( "stoneAndesite" ) - -Polished Andesite ( "stoneAndesitePolished" ) - -Build 1.9-12.16.0.1854-1.9: - kashike: - Remove @SideOnly(Side.CLIENT) from BossInfo/BossInfoServer methods - - These methods can also be used by the server (see BossInfoServer, it sends packets to the client but the methods are @SideOnly(Side.CLIENT)) - -Build 1.9-12.16.0.1853-1.9: - fry: Made forge fluids use smooth lighting. - -Build 1.9-12.16.0.1852-1.9: - LexManos: Fixed NPE in dedicated server languages. And fixed logger for main FML event bus. - -Build 1.9-12.16.0.1851-1.9: - LexManos: Enhance some error logging related to OBJLoader issues, and RegistryEntries. - LexManos: - Cleanup OBJLoader parse function and fix issues related to JVM differences. - Also fix support for sopme of the spec that was partially respected. - -Build 1.9-12.16.0.1850-1.9: - mezz: Fix some plain keybinds not working when a modifier is active - -Build 1.9-12.16.0.1849-1.9: - mezz: Fix #2717 Pick block hotkey not working in inventories - -Build 1.9-12.16.0.1848-1.9: - kat.swales: Corrected CapabilityItemHandler.readNBT ignoring anything in slot 0 in 1.9 - -Build 1.8.9-11.15.1.1847: - kat.swales: Corrected readNBT ignoring anything in slot 0 - -Build 1.9-12.16.0.1846-1.9: - fry: Fixed zip being closed too early in the server language loading. - fry: Fixed forge fluid having a collision box. - -Build 1.9-12.16.0.1845-1.9: - iTitus: Fix dynbucket item transformation. - -Build 1.9-12.16.0.1844-1.9: - fry: Fixed some test mods not being marked as client-only. - -Build 1.9-12.16.0.1843-1.9: - fry: Fixed mod languages not being loaded on the server. - -Build 1.9-12.16.0.1842-1.9: - Zaggy1024: Fixed using PlaySoundEvent to replace a sound with a PositionedSound causing an NPE due to the Sound field not being set by a call to ISound.createAccessor(SoundHandler). - -Build 1.9-12.16.0.1841-1.9: - mezz: - Add modifier support to vanilla keybindings. - - Add Orange conflict color for modifier/key conflicts - (like Ctrl and Ctrl-Z conflicting) - Related to #2692 - -Build 1.9-12.16.0.1840-1.9: - vincent.lee: Player Interact Event - -Build 1.9-12.16.0.1839-1.9: - AEnterprise: onBlockHarvested is no longer called twice - LexManos: Fixed EntityJoinWorldEvent not being fired for some entitites on Server Worlds. Closes #2685 - LexManos: Fix improper logic in ItemHandlerHelper.giveItemToPlayer causing some items to not be added. Closes #2705 - -Build 1.9-12.16.0.1838-1.9: - LexManos: Fix issue caused by setting spawnRadius to 0. Closes #2624 - -Build 1.9-12.16.0.1837-1.9: - fry: Made both exceptions occuring during item model loading print in the log; closes #2696. - -Build 1.9-12.16.0.1836-1.9: - fry: Added the ability to change the printed model error count; Added printing of actual exceptions causing missing variants related to blockstate loading, closes #2689. - -Build 1.9-12.16.0.1835-1.9: - mcjty1: - Added DimensionManager.createProviderFor() to WorldClient constructor similar to what is done - in WorldServer to make sure the correct provider is created client-side too. - -Build 1.9-12.16.0.1834-1.9: - iTitus: - Add flashing update notification icon made by @gigaherz, closes #2582 - - It is added to the "Mods" button in the main menu and to out-of-date mods in the mod list (there it replaces the "U"). - Also fixes a little typo. - -Build 1.9-12.16.0.1833-1.9: - mezz: Fix inability to attack while holding modifier keys - -Build 1.9-12.16.0.1832-1.9: - mezz: Re-Add key binding modifiers and contexts. - -Build 1.9-12.16.0.1831-1.9: - fry: - Revert "Add key binding modifiers and contexts.", until it's fixed. - - This reverts commit 34c3af7e853d578c8e17e1f0cdf886251fad74ae. - -Build 1.9-12.16.0.1830-1.9: - fry: Changed generic signature of GameRegistry.register methods to work around the type inference bug; updated all example mods to the new block/item registration method. - -Build 1.9-12.16.0.1829-1.9: - Adubbz: Fixed mismatch registry names and mod ids - -Build 1.9-12.16.0.1828-1.9: - mezz: - Add key binding modifiers and contexts. - - Same as #2674, but for Minecraft 1.9 - -Build 1.9-12.16.0.1827-1.9: - LexManos: Properly deprecate and link the replacement methods in GameRegistry. Add helper method for registering a block with default ItemBlock because people keep complaining -.- - -Build 1.9-12.16.0.1826-1.9: - LexManos: Fixed compile error in registry code with Eclipse. - -Build 1.9-12.16.0.1825-1.9: - cpw: Capture a vanilla freeze - will be used when FML connects to vanilla servers, soon - -Build 1.9-12.16.0.1824-1.9: - cpw: Support ResLocations for IMC - -Build 1.9-12.16.0.1823-1.9: - fry: Improved UV offset hackery - should fix most visible custom model seams. - -Build 1.9-12.16.0.1822-1.9: - cpw: MinecraftForge-2684 [1.9] New Registry ignores keys - -Build 1.9-12.16.0.1821-1.9: - cpw: MinecraftForge-2683 InvocationTargetException for Forge 1820 for 1.9 - -Build 1.9-12.16.0.1820-1.9: - cpw: - Add registries for soundevents, enchantments and potiontypes - MinecraftForge-2576 [1.9] SoundEvents (and Enchantments and PotionTypes) need a FML registry - -Build 1.9-12.16.0.1819-1.9: - cpw: Fix remapped blocks being overriden with dummy air blocks. Closes #2491 - cpw: - Squashed commit of the following: - - commit b3b290aec9d3010a134859da6001ea28a96c2fdc - Merge: c6ce6a0 d803f7d - Author: cpw - Date: Fri Mar 25 13:28:04 2016 -0400 - - Merge branch 'RegistryRework' of https://github.com/LexManos/MinecraftForge into LexManos-RegistryRework - - Implement proper registry slaves. Should help with rollback related issues. - - Missing patch - - commit d803f7db76f65db9d27302c9804a643bc853dc22 - Author: LexManos - Date: Tue Mar 22 03:36:14 2016 -0700 - - Update VillagerRegistry and use it. Should in theory make custom villagers work now. Using string version instead of int id for networking. - - commit eb5e5b4b42fdca26d2a104e4dc1e6a3ea3051a7b - Author: LexManos - Date: Tue Mar 22 02:14:16 2016 -0700 - - More cleanup. - - commit edbc56b2ff314629d0e402709f3cf29fc79c4a3d - Author: LexManos - Date: Tue Mar 22 02:05:23 2016 -0700 - - More cleanups, removed deprecated UniqueIdentifier {ResourceLocation now} - - commit e2df8d1be3c97601508f83dc97b0e8853fa1e271 - Author: LexManos - Date: Tue Mar 22 01:29:19 2016 -0700 - - Stupid generics.... - - commit 46d57dc4677fa5ff3923e64eaccfb33d7e5aad8d - Author: LexManos - Date: Tue Mar 22 01:00:25 2016 -0700 - - Some registry tweaking to provde a non-complicated API modders can use. - cpw: Reconcile Block.patch - -Build 1.9-12.16.0.1817-1.9: - kashike: - Replace Forge's `BlockPos#getImmutable` method with the included `BlockPos#toImmutable` (func_185334_h), while keeping the override in PooledMutableBlockPos to prevent mutable leaks. - Also prevent a mutable blockpos leak in World#setTileEntity - gigaherz: Add wrapper methods for IStorage#readNBT/writeNBT. - LexManos: Fix landing particles not showing up. Cloes #2661 - shadowfacts: Forward ItemBlock#addInformation to Block#addInformation - tterrag1098: Add state param to canRenderInLayer - -Build 1.9-12.16.0.1816-1.9: - LexManos: Make NoteBlockEvent raw constructor protected to allow subclasses. Closes #2153 - -Build 1.9-12.16.0.1815-1.9: - LexManos: Fix EntityPlayer still running old armor logic. Closes #2670 - LexManos: Fix shrubs not generating correctly. Closes #2663 - LexManos: Fix bows not animating properly when picking up ammo while using. Closes #2672 - -Build 1.9-12.16.0.1814-1.9: - mezz: Fix Block.getPickBlock returning an ItemStack with a null Item - -Build 1.9-12.16.0.1813-1.9: - fry: Fixed StackOverflow caused by the previous commit, closes #2669. - -Build 1.9-12.16.0.1812-1.9: - fry: Prevent missing model from loading multiple times. - -Build 1.9-12.16.0.1811-1.9: - fry: Enabled diffuse lighting by default in UnpackedBakedQuad.Builder. - fry: Fixed crosshair always being white, closes #2653. - -Build 1.9-12.16.0.1810-1.9: - fry: Fixed diffuse lighting not being applied if forge lighting pipeline is disabled, closes #2651 - -Build 1.9-12.16.0.1809-1.9: - mezz: - Make tooltips layout in the right direction, wrap if there is no room - - Same as #2649, but for Minecraft 1.9 - -Build 1.8.9-11.15.1.1808: - mezz: - Make tooltips layout in the right direction, wrap if there is no room - - Fixes #2255 - -Build 1.9-12.16.0.1807-1.9: - fry: Disabled erroring block, fixed DynBucketTest.TestItem model. - -Build 1.9-12.16.0.1806-1.9: - diesieben07: Fix PopulateChunkEvent.Post not firing - -Build 1.9-12.16.0.1805-1.9: - fry: Cleanup: removed IEEP, removed redundant casts, fixed imports, fixed typos. - fry: Fixed isSideSolid causing infinite loops due to the call to getActualState. - fry: Removed LanguageRegistry and CollectionWrapperFactory. - fry: Removed RenderWorldEvent, encapsulated all public event fields. - fry: Made some more public fields either private or final. - -Build 1.9-12.16.0.1804-1.9: - LexManos: - New Builder class in BlockStateContainer. Makes building containers with both listed and unlisted properties cleaner. - Make all methods of BiomeGenBase$BiomeProperties public so that modders can use that class outside subclasses. - -Build 1.9-12.16.0.1803-1.9: - diesieben07: Fix BlockCrops.getDrops not respecting new age methods (for beetroots) - -Build 1.9-12.16.0.1802-1.9: - fry: Show meaningful error if ModelLoaderRegistry is used before the missing model is initialized. - fry: Register the animation Capability. No idea how it worked before at some point. - -Build 1.9-12.16.0.1801-1.9: - LexManos: Fix typo causing biomes to be generated in wrong chunks. Closes #2632 - -Build 1.9-12.16.0.1800-1.9: - LexManos: Fixed custom entities unique ids. - -Build 1.9-12.16.0.1799-1.9: - LexManos: Update FML Entity Spawn packet for 1.9's location change. Closes #2567 - -Build 1.9-12.16.0.1798-1.9: - vincent.lee: Actually fix dupe drop - -Build 1.9-12.16.0.1797-1.9: - fry: Added Capability.cast, to allow avoiding unchecked casts in ICapabilityProvider.getCapability - -Build 1.9-12.16.0.1796-1.9: - LexManos: Fix swap animations for sure this time. - -Build 1.9-12.16.0.1795-1.9: - LexManos: Allow finite fluids to be drained correctly - LexManos: Make OreDictionary.initVanillaEntries() private so that dumb modders will stop calling it. - -Build 1.8.9-11.15.1.1794: - Choonster.2010: Allow finite fluids to be drained correctly - -Build 1.9-12.16.0.1792-1.9: - matthewprenger: Pass exceptions thrown in mod event buses back to FML to handle apropriately - vincent.lee: Fix double dropping of items. Closes #2549 - diesieben07: Fix EntityList.func_188429_b not supporting mod-entities, fixes spawn eggs, fixes #2581 - -Build 1.8.9-11.15.1.1791: - elpatricimo: - Fix pushing players inside blocks. - - same changes made to the 1.9 branch - -Build 1.9-12.16.0.1790-1.9: - vincent.lee: Expose IItemHandler on vanilla entities - vincent.lee: Update according to suggestions - -Build 1.9-12.16.0.1789-1.9: - LexManos: Make RenderLivingBase.add/remvoeLayer, Closes #2573 - LexManos: Added support for custom dyes with Banners. Closes #2596 - -Build 1.9-12.16.0.1788-1.9: - LexManos: Add ShieldDecoration and Tipped arrows to recipe sorter. Closes #2613 - LexManos: Exclude jna from termal tansformer. - LexManos: Fix pushing players inside blocks. - -Build 1.9-12.16.0.1787-1.9: - LexManos: Fix Chests not opening correctly with semi-solid blocks on top. - LexManos: Fixed Item.shouldCauseReequipAnimation hook. - -Build 1.9-12.16.0.1786-1.9: - elpatricimo: - Allow players sized smaller than 1 block to walk into small spaces - - Same as #2605 but for 1.9 branch - -Build 1.8.9-11.15.1.1785: - elpatricimo: Allow players sized smaller than 1 block to walk into small spaces - -Build 1.9-12.16.0.1784-1.9: - LexManos: Rework DimensionManager for new DimensionType enum, replaces the old provider registry. Also fixed save folder issues with dimensions. Closes #2570 - -Build 1.8.9-11.15.1.1783: - CovertJaguar: Add missing Minecart/Track hook. - -Build 1.9-12.16.0.1782-1.9: - fry: Removed blockCenterToCorner from TRSRTransformation constructor. Closes #2461. - fry: Ignore blocks/items with null registry name during model loading. Fixes NPE during resource reloading in worlds with removed blocks/items. - fry: Made VertexBuffer.sortVertexData cleanup pointers after it's done. Closes #2528. - fry: Added default left hand transforms for forge transform strings. Closes #2615. - -Build 1.9-12.16.0.1781-1.9: - fry: Switched animation system to capabilities, added animated item example, fixed state passing in MultiModel. - fry: Separated model classes to client and common packages. - fry: instance -> INSTANCE - fry: Implemented slightly more generic version of UVLock, re-enabled it for json models. Closes #2607. - -Build 1.9-12.16.0.1780-1.9: - gigaherz: Fix a condition that caused the enchantment table to roll invalid enchantments. - -Build 1.9-12.16.0.1779-1.9: - blay09: - Fix KeyInputEvent only being fired if Keyboard.getEventKeyState() is false. - - It used to be called for both key-up and key-down states prior to 1.9, so I assume Vanilla's changes to F3 behavior broke the patch. - -Build 1.9-12.16.0.1778-1.9: - CovertJaguar: Fix #2601 Minecart infinite acceleration - -Build 1.8.9-11.15.1.1777: - cordonfreeman: Fix for patch targetting the wrong field to change for failed pathfinding penalty - -Build 1.9-12.16.0.1776-1.9: - diesieben07: Fix broken patch in EntityPlayer.updateRidden - -Build 1.9-12.16.0.1775-1.9: - iTitus: - Fix the EntityPlayer patch - - In 1.8.9 the call goes to getDisplayNameString() so that any changes from the PlayerEvent.NameFormat event are being take into account. - In this patch the call goes to func_70005_c_() which is the getter for the GameProfile name. - I changed it back. - - Sorry if you do not want to accept it because it is a one-liner. - vincent.lee: Fix #2555 - -Build 1.9-12.16.0.1774-1.9: - cordonfreeman: Fix for patch targetting the wrong field to change for failed pathfinding penalty - -Build 1.9-12.16.0.1773-1.9: - cpw: Fix bucket test - -Build 1.9-12.16.0.1772-1.9: - bernhard.bonigl: - Fix CombinedInvWrapper accessing incorrect slots - Closes #2533 - -Build 1.9-12.16.0.1771-1.9: - cpw: Ignore classes directory - -Build 1.9-12.16.0.1770-1.9: - fry: Fixed sprite not being passed to the quad builder for custom models. - -Build 1.9-12.16.0.1769-1.9: - fry: Fixed outline shader rendering, closes #2560. - -Build 1.9-12.16.0.1768-1.9: - fry: Fixed Block.doesSideBlockRendering, closes #2564. - -Build 1.9-12.16.0.1767-1.9: - fry: Fixed invalid index calculation in BakedQuadRetextured. - -Build 1.8.9-11.15.1.1765: - bernhard.bonigl: - Fix CombinedInvWrapper accessing incorrect slots - Closes #2533 - -Build 1.8.9-11.15.1.1764: - abab9579: - Added EntityViewRenderEvent#FOVModifier - - Enables mods to modify raw FOV directly. - Avoids modifier limit from FOVUpdateEvent. - Aware of blocks which are needed for fov change related with materials. - -Build 1.8.9-11.15.1.1763: - mnmiller1: Added local click position to PlayerInteractEvent. - -Build 1.8.9-11.15.1.1762: - LexManos: - Fixed dummy blocks not being removed from registry on dedicated server correctly. Closes #2487 - Also added some more debug logs! - -Build 1.8.9-11.15.1.1761: - bernhard.bonigl: - Fix WordServer.canCreatureTypeSpawnHere not using Forge Events. - Followup of #2496 - -Build 1.8.9-11.15.1.1760: - agent-lego: - Increased actual maximum fuel burn time - - Increased actual maximum fuel burn time from 32767 to 2147483647. - Backwards compatible. - -Build 1.8.9-11.15.1.1759: - bernhard.bonigl: Fix WorldEvent.PotentialSpawns Event passing the list instance of the ChunkProvider to users - -Build 1.8.9-11.15.1.1758: - fry: ModelLoader: added verbose error logging showing items/blockstates associated with model locations; removed redundant cast leftover from ungenerified code; fixed up a couple of warnings. - -Build 1.8.9-11.15.1.1757: - cpw: Fix race condition when using indexed codec in a LAN server. Fixes spurious crash when LAN server is running. - -Build 1.8.9-11.15.1.1756: - cpw: Log when it's likely the indexedcodec is gonna fail, because of LAN server derps likely. Try and give some context for debuggers. - -Build 1.8.9-11.15.1.1755: - bernhard.bonigl: Fix universal bucket logging an exception - -Build 1.8.9-11.15.1.1754: - AlgorithmX2: Preserve ItemStack Caps when picking Items up. - AlgorithmX2: Test getLightOpacity(world,pos) in World as well as the chunk. - -Build 1.8.9-11.15.1.1752: - AlgorithmX2: In material Liquid Hooks. - -Build 1.8.9-11.15.1.1751: - diesieben07: Fix Potion.shouldRenderInvText - -Build 1.8.9-11.15.1.1750: - AlgorithmX2: - Fix bug with getLightOpacity based on TileEntities, - Capture getLightOpacity prior to removing the tile entity. - -Build 1.8.9-11.15.1.1749: - LexManos: Fix loading of world ID maps for worlds without dummy data. Closes #2477 - -Build 1.8.9-11.15.1.1748: - bernhard.bonigl: Fix customized bucket names not getting translated correctly - -Build 1.8.9-11.15.1.1747: - fry: Added default levels for fluid extended properties in fluid model. - -Build 1.8.9-11.15.1.1746: - bernhard.bonigl: Add universal bucket - -Build 1.8.9-11.15.1.1745: - LexManos: Fix chat formatting not surviving line wraps in chat messages. - -Build 1.8.9-11.15.1.1744: - diesieben07: Fix the entity shader hook - -Build 1.8.9-11.15.1.1743: - iLexiconn: Added hook to add entity spectator shader - -Build 1.8.9-11.15.1.1742: - ross: Workaround JDK-8087309: Constant folding "static final boolean" in boolean expressions is incomplete - -Build 1.8.9-11.15.1.1741: - LexManos: Protect BlockSnapshot and Chunk.getTileEntity from mutible BlockPos instances. Closes #2438 - -Build 1.8.9-11.15.1.1740: - LexManos: Fixed invalid parameters being sent to LivingSpawnEvent.CheckSpawn. Closes #2453 - LexManos: Fixed Entity.shouldRiderSit modifying game logic and not just rendering. Closes #2402 - LexManos: Fixed Block/Item.setRegistryName printing a incorrect warning when used. Closes #2398 - LexManos: Fixed vanilla bug where network clients would see incorrect break progress on blocks. Closes #2462 - LexManos: Fixed implementation of RenderEntityItem.shouldSpreadItems. Closes #2448 - LexManos: Fixed invalid item being passed to gatherCapabilities when itemstacks changed item. Closes #2445 - LexManos: Add missing classes to CrashReport preloading. Closes #2421 - LexManos: Fixed Block.onNeighborChange not being called for all axises. Closes #2428 - -Build 1.8.9-11.15.1.1739: - LexManos: Potential fix for NPE when using an item to open a slotless inventory. Closes #1354 - -Build 1.8.9-11.15.1.1738: - fry: Fix custom model loader reload hook not firing during registration. - -Build 1.8.9-11.15.1.1737: - fry: Fix incorrectly updated patch to ChunkCache. Related to #2451. - -Build 1.8.9-11.15.1.1736: - fry: Fix multiple registrations of reloading hooks in custom model loaders. - -Build 1.8.9-11.15.1.1735: - LexManos: Fix jar signer not applying to universal packed in the installer. - LexManos: Remove Mojang logger spam in EntityItem. - -Build 1.8.9-11.15.1.1734: - fry: Fix TRSRTransformation.toItemTransform. Closes #2425. - -Build 1.8.9-11.15.1.1733: - paul.fulham0: Fix #2321 - -Build 1.8.9-11.15.1.1732: - Mumfrey: Fix ASM SignatureReader choking on lambda signatures generated by JDT - -Build 1.8.9-11.15.1.1731: - fry: Revert binary-incompatible changes in models. - -Build 1.8.9-11.15.1.1730: - fry: Fix droppers not dropping. - -Build 1.8.9-11.15.1.1729: - fry: Added "gui3d" and "smooth_lighting" options to the forge blockstate. Implemented them for vanilla and B3D models. Added generic types to IModel subinterfaces, to simplify chaining. - fry: One day I will learn to include all required classes in the commit. - -Build 1.8.9-11.15.1.1727: - matthewprenger: Log unknown exceptions in commands. Resolves #2433 - -Build 1.8.9-11.15.1.1726: - fry: Fixed incorrect patch to GenLayer, causing large vanilla biomes to not work properly. - -Build 1.8.9-11.15.1.1725: - fry: Provide original armor model in the custom armor model hook. - -Build 1.8.9-11.15.1.1724: - fry: Fixed small bug in item extraction code. - -Build 1.8.9-11.15.1.1723: - fry: Fix NoSuchElementException in ModelBlockAnimation caused by empty event list. - -Build 1.8.9-11.15.1.1722: - LexManos: Bump version in prep for new Recomended Build. - -Build 1.8.9-11.15.0.1721: - LexManos: Loosen TileEntity's default hasCapability implementation. Modders should specifically opt in. - -Build 1.8.9-11.15.0.1720: - vikestepftb: - Add EntityTravelToDimensionEvent - - Resolve Merge Conflict - - Move event call inside conditional - -Build 1.8.9-11.15.0.1719: - fry: Fixed minor race condition between mouse clicks and TESR in the animation example. - -Build 1.8.9-11.15.0.1718: - fry: - Model animation system. - Main things of interest: - * IAnimationStateMachine - state machine for animations; can load - from json. - * AnimationTESR - automatic TESR for animated models. - * AnimationModelBase - same for entities. - * ITimeValue - time-varying value, used to control animation - parameters from code. - - * TESRs can now be batched - look at TESR.renderTileEntityFast + - TE.hasFastRenderer. - * RegionRenderCache is not accessible to TESRs and other client-side - logic - MinecraftForgeClient.getRegionRenderCache. - fry: Sometimes I forget how much trivial things are missing from Java 6. - -Build 1.8.9-11.15.0.1716: - t.tomkins: Fixed: BlockPos passed to isBeaconBase - rwtema: - Add IItemHandler capability - - Add the actual patches that I forgot. - - Add simple implementations of IStorage and the factory methods. - - Add ItemStackHandler. A simple IItemHandler implementaton. - - return nulls, not throw nulls. - - Move the vanilla wrappers to a separate class for now. - - Minor clean ups of VanillaWrapper code. - - Inline static methods. - - Add comments. - - Minor cleanup of code. - - Remove redundant size field and add a validate slot index method. - - Minor formatting issues. - - Break early If stacksize to insert is 0. - - Remove setByte() methods. - - Throw exception if IItemHandler can't be modifyed in NBT loading. - - Replace event handler with patches - - Add capability to mine cart inventory entities. - - Change formatting and registration of capability. - - Make InventoryPlayer implements IItemHandler because why not. Also added a field to allow mods that add additional player inventory space to publicly expose them. - - Reduce patch sizes - - Lazy initialization of the item handler for vanilla tiles. - - Minor formatting changes. - - Create a single vanilla chest item handler that will merge with adjacent chests when detected. Added hooks to reset the cached adjacent value when a block update is detected and when a chunk loads. - - Revert "Make InventoryPlayer implements IItemHandler because why not. Also added a field to allow mods that add additional player inventory space to publicly expose them." - - This reverts commit 306d4a37fd0e8c8a0754411c013b750dfe8e2c87. - - Fix furnace derp - - Replace double chest code with a simpler method. - - Vanilla wrappers implement IItemHandlerModifiable (since they are modifiable) - - Minor code cleanups - - Add an onContentsChanged() and onLoad() callback methods.to the default implementation. - - Add slot as a parameter in the callback method. - - Change IItemHandlerModifiable.setStackInSlot() to void, and added a note about not being intended for cross-mod use. - - Improve ItemStackHandler handling of errored NBT. - - Make the stacks array protected. - - Fix a lot of derps in SlotItemHandler. - - Fix derp in ItemStackHandler - - Clarify comments on IItemHandler - - ItemStackHandler no longer caches the stack array in local variable. - - Clean up the Chests code to make intentions clearer - - Vanilla hoppers have their cooldown activated when an item is inserted. Made this behavior part of an item handler (rather than the insertion code) - - Fix mistake in ItemStackHandler - - More documentation of potential edge cases in getStackInSlot() - - Make limit checking more resiliant. - LexManos: Fix J6 compile error in IItemHandler PR. - -Build 1.8.9-11.15.0.1715: - blay09: Fix items being dropped out of a GuiContainer when dealing with a slot outside of the xSize/ySize boundaries. - -Build 1.8.9-11.15.0.1714: - asiekierka: Fix #2388 - -Build 1.8.9-11.15.0.1713: - LexManos: Fix invalid ServerHangWatchdog patch causing it to not apply. - LexManos: - Restore OreDictionary.getOres(String, boolean) and doeOreNameExist(String) functions that went MIA in git merge issue. - Original Commit: https://github.com/MinecraftForge/MinecraftForge/commit/cd3bbfb02c9fcd4ce4bbf00f460dfdd6a386d107 - -Build 1.8.9-11.15.0.1712: - minecrell: Strip console formatting codes for Vanilla log file - -Build 1.8.9-11.15.0.1711: - iLexiconn: - Fixed makeItemStack ignoring stackSize - - Fixes #2376 - -Build 1.8.9-11.15.0.1710: - fry: Fixed error detection login in ModelLoader, reduced the maximum number of printed stack traces to 5 per domain. - -Build 1.8.9-11.15.0.1709: - LexManos: Fix Deobfusication transformer throwing verification errores in Eclipse development environments. - LexManos: Fix forge logging not working correctly in ForgeDev. - -Build 1.8.9-11.15.0.1708: - fry: Correctly handle error caused by missing/malformed bucket model definition file. - -Build 1.8.9-11.15.0.1707: - LexManos: Call deserialze on capabilities in ItemStack.setItem. Closes #2384 - -Build 1.8.9-11.15.0.1706: - LexManos: Fix ItemStacks not getting the parent capability provider from items. Closes #2383 - -Build 1.8.9-11.15.0.1705: - bartek.bok: Allow sleeping without bed - kashike: Skip hang detection on first run of the server hang watchdog - -Build 1.8.9-11.15.0.1703: - fry: Fixed missing model error reporting, made block and item variants sort before loading, to make the splash screen info more useful. - -Build 1.8.9-11.15.0.1702: - cpw: Fix spruce not growing properly - -Build 1.8.9-11.15.0.1701: - cpw: Fixed problem with LAN connections seeing the original ProxyPacket and consuming the first byte. Closes #2373 - -Build 1.8.9-11.15.0.1700: - cpw: Fix shouldRefresh not to be so over-eager about modded TEs. Should fix Packet21 causing a TE reset. - -Build 1.8.9-11.15.0.1699: - LexManos: Clone FML packet indexes if channel is not open. Fixes potential threading issue. - -Build 1.8.9-11.15.0.1698: - bernhard.bonigl: - Default bucket model is empty, allow bucket model without fluid. - This allows capsules, cans, bottles,... to use the same item model for their item variant. Also it's makes much more sense. - -Build 1.8.9-11.15.0.1697: - mezz: Add GuiScreenEvent.BackgroundDrawnEvent - -Build 1.8.9-11.15.0.1696: - cpw: - Fix problem which meant runtime deobf to MCP names wasn't working. SRG named mods located in the mods dir of a dev - environment will now load normally. - -Build 1.8.9-11.15.0.1695: - LexManos: - New Capability system allowing for more manageable world object features. - - When combined with @Optional this should address all issues of soft dependancy on mods/apis. - This also addresses the issue of dynamic functionality in TileEntities/Entities. - - Current capability providers: TileEntity, Entity, ItemStack - - Also added INBTSerializeable, a generic interface for game objects that can be written to/from NBT tags. - - Vanilla capabilities will be coming soon, mostly on request and review. - So start requesting capabiliteis on vanilla/Forge features. - -Build 1.8.9-11.15.0.1694: - LexManos: Fixed GuiWrongMinecraft having wrong Log file name. Closes #2348 - LexManos: Fix jline server console not showing colored text. Closes #2334 - LexManos: Fixed banners not droping the correct item when harvested using modded mechanics. Closes #2258 - -Build 1.8.9-11.15.0.1693: - LexManos: Remove dead code in JarDiscoverer. Closes #2346 - LexManos: Made WrongMinecraftVersionException and ModSortingException a bit easier to read in log files. Closes: #2345 - -Build 1.8.9-11.15.0.1692: - fry: Catch GROUND item transform type with the forge hook too. - -Build 1.8.9-11.15.0.1691: - fry: Implemented face culling for item models, improves performance slightly. Closes #2326 - -Build 1.8.9-11.15.0.1690: - vincent.lee: - Fix visual effect entity persisting longer than it should - - Fix derp - -Build 1.8.9-11.15.0.1689: - LexManos: Fixed issue with WorldServer.getTileEntities when being called with ranges that overlap chunks oddly. Closes #2350 - -Build 1.8.9-11.15.0.1688: - fry: Made block model loading bar more robust, and fixed the count. - -Build 1.8.9-11.15.0.1687: - fry: Added progress bar for the ModelLoader. - -Build 1.8.9-11.15.0.1686: - fry: Model loader improvements: adding custom data/textures to models that don't need them doesn't cause a error now, since it's common to put those in the defaults section of the blockstate json; you can get IModel associated with the variant now - using ModelLoaderRegistry.getModel; MultiLayerModel should now respect transformations applied to it, and respect part transformations. - fry: Derp. - -Build 1.8.9-11.15.0.1684: - cpw: STFU I know how to code. *shouts* get off my lawn! - -Build 1.8.9-11.15.0.1683: - cpw: Make the parent dir tree for the dep extractor - -Build 1.8.9-11.15.0.1682: - fry: Changed default implementation of Block.getExtendedState. Closes #2309. - -Build 1.8.9-11.15.0.1681: - fry: Fixed perspective transformation handling for fluid models, changed inventory fluid model to use unrotated still texture. - fry: Don't crash on exception during loading of item variants from blockstate jsons. - fry: Fixed implementation if IRetexturableModel in ItemLayerModel. Closes #2244. - fry: Java6 + Eclipse + Gradle strike again. - -Build 1.8.9-11.15.0.1677: - fry: Fixed invalid flow vector caching of still fluids. - -Build 1.8.9-11.15.0.1676: - fry: Fixed random offset not working properly for flatly-lit models. - -Build 1.8.9-11.15.0.1675: - cpw: Explicitly close the file. - -Build 1.8.9-11.15.0.1674: - cpw: - Add a simple ContainedDep mechanic- mods can contain other mods or libs, and can specify them using a manifest tag: "ContainedDeps". - This is a space separated (manifest standard) list of jar files that are to be extracted into the version specific directory. - - There's also a special system property "fml.skipContainedDeps" that will allow for runtime skipping of extraction of contained deps (a comma separated list, based on the file name). - -Build 1.8.9-11.15.0.1673: - LexManos: - Added new get/setRegistryName functions to Item and Block. - And helper functions in GameRegistry to allow for registering using those names automatically. - This is to simplify registration and get rid of the horrible hacks users are doing now with 'unlocalised names'. - -Build 1.8.9-11.15.0.1672: - cpw: Move substitution activation after id loading. This should fix the problem of null for existing object. - -Build 1.8.9-11.15.0.1671: - fry: SidedProxy now has sensible default values - nested ClientProxy and ServerProxy classes. - -Build 1.8.9-11.15.0.1670: - mattmess1221: Add links for messages and other commands - -Build 1.8.9-11.15.0.1669: - fry: Reverted Render registration changes due to them working. - -Build 1.8.9-11.15.0.1668: - fry: Fixed RenderingRegistry not working. Closes #2312. - fry: Nobody is left behind. - -Build 1.8.9-11.15.0.1666: - cpw: Fix that the dummy registry entries don't allow clients connecting to servers. Also fix that it repeatedly nags about missing stuff in the world. - -Build 1.8.9-11.15.0.1665: - LexManos: Fix boss health bar rendering when debug overlay is enabled. Closes #2328 - -Build 1.8.9-11.15.0.1664: - LexManos: Allow for default 1.8.8 mods to be loaded. Should be SRG compatible. - LexManos: Fix J6 compile issue with ModelFluid. - LexManos: Swap Mod and Realms button to fix new realms 'notification' icon. - -Build 1.8.9-11.15.0.1663: - fry: Restored transparency to the Forge logo. - -Build 1.8.9-11.15.0.1662: - fry: Updated the forge logo to a higher-quality GIF file. Closes #2276. - -Build 1.8.9-11.15.0.1661: - fry: Fixed broken leaky caching of OBJ models. - fry: Fixed wrong import. - -Build 1.8.9-11.15.0.1659: - fry: Caching of fluid models. Fixes #2145. - -Build 1.8.9-11.15.0.1658: - fry: TESRs registering in preinit don't break pistons anymore. Fixes #2298. - -Build 1.8.9-11.15.0.1657: - fry: Fixed color disabling not working for forge pipeline. Closes #2286. - -Build 1.8.9-11.15.0.1656: - fry: 1.8.9 update - -Build 1.8.8-11.15.0.1655: - mezz: Allow server to access Potion isBadEffect() - cpw: 1.8.8 initial work - cpw: regenerate reference patchset at patches.mcp. These will be used to generate a new patchtree under patches. - cpw: Test of mcp patching - cpw: - Patches and rejected patches. Note: some which had imports are not listed here because they need - to be refactored not to have imports. - Progress: https://gist.github.com/cpw/29695e426e2b122cf8ff - fry: Updated various rendering-related patches and classes to 1.8.8; forge still uses vecmath. - fry: Fix generics and error in the BlockState patch. - fry: FontRenderer + Item patch update; WorldVertexBufferUploader patch derp fix. - fry: IntegratedServer, World, EnumChatFormatting and EnumFacing - fry: WorldProvider, WorldType, WorldServer, WorldServerMulti - fry: EntityAIAttackOnCollide, ServerStatusResponse, MinecraftServer, NetHandlerLoginServer, Vec3, BiomeGenBase, AnvilChunkLoader, ChunkProviderServer, MapGenRavine, MinecraftServer updated; fix in Block, GuiIngameForge; can load the world and play with ~20 more manual error fixes. - fry: BlockOre, BlockRotatedPillar, SoundManager, EntityPlayerSP, GuiScreen, GuiAchievements, GuiContainer, BlockModelRenderer, ContainerEnchantment, Slot updated manually and imports removed; GitSlot patch updated. - cpw: Delete rejects that I initially processed. - cpw: - LoadingScreenRenderer,Minecraft,GuiContainerCreative,PlayerControllerMP,LanguageManager,Locale,SimpleReloadableResourceManager,EntityList,EntityLivingBase,EntityWither,EntityMinecart,EntityPlayerMP - - NethanlderPlayClient patch is now in vanilla. The FMLCommonHandler future exception catcher is not needed anymore, it's in Util. The caching of player profiles is now in vanilla (SkinManager). - fry: Updated FML Gui methods to WorldRenderer API changes. - fry: EntityPlayer patch updated. - fry: GuiButton, GuiChat, GuiCreateWorld, GuiIngameMenu, ServerListEntryNormal, GuiStats rejects updated. - fry: RenderEntityItem, RenderPlayer, RendererLivingEntity, LayerArmorBase, ItemStack rejects fixed; changed Armor Layer hook to catch LayerBipedArmor only. - fry: ItemRenderer, RenderGlobal, StateMap, RenderItem rejects updated. - fry: TileEntity and TileEntityHopper rejects fixed, GuiOverlayDebug patch fixed. - fry: PlayerManager, PlayerProfileCache, ServerConfigurationManager, NetHandlerHandshakeTCP rejects fixed; ItemInWorldManager patch error fixed. - fry: ItemBlock, ItemBow, ItemMonsterPlacer, ItemReed, ItemSign rejects fixed. - fry: Manually updated WorldChunkManager, Chunk and BiomeDecorator patches, removed imports. - fry: TextureMap, TextureManager and Stitcher rejects fixed. - fry: EntityRenderer, StringTranslate rejects fixed. - fry: Overlay patch fix: use the correct block position. - cpw: - Enchantment,EnchantmentHelper,EntityEnderman,EntityZombie,EntityVillager,FurnaceRecipes,RecipeFireworks,RecipeRepairItem,NetworkSystem,S00PacketServerInfo - PotionEffect,StatList,Session,WeightedRandomChestContent,Explosion,ExtendedBlockStorage,SaveHandler. - - All NBT patches seem to have been merged upstream, so removing. The IntegratedServer and MinecraftServer pending queue changes also removed, as fixed upstream. - cpw: WorldGen rejects, lots of them. Couple of small fixes elsewhere. - cpw: Fix a newly missing AT. Remove all CL_ references. OBFID is gone. - cpw: All the patches done? Some code fixups.. It begins. - cpw: A few tweaks, things are starting to work now.. - fry: Model stuff: updated to generics, fixed various warnings, added handling of new perspective types. - cpw: Some generic and other warning cleanups - fry: ExtendedBlockState, Properties generic updates. - cpw: Remove a suppression - cpw: This should be everything needed to separate blocks and items completely. - fry: Implemented interpolation of TRSR transformations; B3D: added interpolation capabilities to B3DState, animated TESR example in ModelAnimationTest (pure TESR right now, no separation inside the example model between the static and dynamic parts right now). - kashike: Use the FMLSecurityManager checkPermission(Permission) method for context-based permission checks. Fixes #2067 - fry: B3D loader: removed 2 redundand null checks, changed constructor args to final to fix (java6?) inner arg error. - fry: Fix holes in generated item models. - fry: Removed face doubles from item models. - minecrell: Add jline-based console with colors and tab-completion - cpw: Fix a typesig that was broken - cpw: Re-add trove and vecmath. Mojang no longer ship them. - cpw: Use the 2.1 snapshot for FG - fry: Fixed forge lighting working incorrectly outside 0x1000000 coordinates. - cpw: Back to srgnames for patches. We should be starting to look OK now. - cpw: Small tweak to the OUT/ERR logger - should skip the Throwable stuffs now. - cpw: - Fix weird patch issue where the this FG commit: https://github.com/MinecraftForge/ForgeGradle/commit/2f0ca9921b961133689d29b807333241010a802d - breaks if the exact end of a line is a srgname. Not ideal, but should work. - cpw: Fix derpy fir trees in the taiga. So many patches. See if we can find any more mistakes?! - fry: Fixed NPE is B3D loader caused by the missing vertex normal; updated the example chest model - it's now has 2 meshes; Updated ModelAnimationDebug - it now uses the new chest model, renders the base with the static world renderer, and only the lid with the TESR. - cpw: Update mappings to 20151122. - LexManos: Update universal manifest for 1.8.8's json. - cpw: Cleanup Fluid deprecations stuff. - cpw: - OMG! Documentation? WUT? I haz lost my mind. - Also, Functional interface for IMC. Senders can send a classname implementing Guava's function, and receivers - will be able to get that function, and do, well, whatever, really. Probably best for those callback type - scenarios, connecting up APIs and stuffs. - cpw: Fix MDK for 1.8.8 using FG2.1 snapshot - cpw: Yeah, amount is NOT deprecated. - cpw: ONE EVENT BUS TO RULE THEM ALL AND IN THE DARKNESS FIRE THEM! - cpw: Deprecate it as well, because hey, it's redundant now. - cpw: Clean up some very long dead code. Bukkit hasn't existed in a very long time now. IASM never worked, and I'm not about to implement it. - cpw: Cleaning up some derpy names - cpw: More cleanups, some documentation, a bunch of deprecations. - lordillyohs: - Remove trailing */ in the build.gradle - - Signed-off-by: Anthony Anderson - cpw: Fix button and lever placement problem. Closes #2204 - cpw: Fix up a couple of patches, affected by the recent update - cpw: - Add .exc for StatList patch - - More tweaking - lumien231: Fixed: The Integrated Server not being stopped when exiting a singleplayer world to the main menu - cpw: Propogate AbortException. Closes #2206. Also fix tracing printstream when printStackTrace is called. - LexManos: Bump version for new Minecraft version. - LexManos: Fixed placing blocks on snow layers with more then one layer. - LexManos: Fixed Large mushrooms generating incorrectly. - LexManos: Removed IItemRenderer class, all functionality is possible with new rendering system. - LexManos: Compiler warnings pass, undeprecated SplashProgress related stuff. - cpw: Giant registry fixup - LexManos: Add chunk loading protection to WorldSever.getTileEntitiesIn, may prevent orphanced chunks and a CME in EntityPlayerMP. Note: The 'max' parameters are NON-inclusive. - cpw: Fix up blockstate rebuild. Closes #2221. Also fix formatting. IDEA has differences. Solved now. - bernhard.bonigl: Add a PotionRegistry to handle dynamic distribution and remapping of Potion IDs - cpw: Fix problem with spam from registry on loading a second world. Empty the staging. - cpw: Some tweaks - GameRegistry is modder facing API, so avoid having MC methods there. Fix a couple of registry bugs. - cpw: Fixup Jline integration - cpw: A few fixes - cpw: Allow entity selectors to select "." in entity names. Closes #2125 - cpw: Be noisy when API is in a coremod. It'll never work and modders should realize that fact. - cpw: - Fix language adapter loading. - - The language adapter is now properly picked up after the mod is loaded - on the classpath, fixing the ClassNotFoundException occurring before. - Also fixed some minor formatting and made it throw a full - RuntimeException on failure. - - Fix up some formatting - cpw: Most requested feature of all time? TileEntity init method called after it's ready to roll. remove all the if (firstTicks) - mark.a.woodman: - Initialize sources list - - Fixes crash NPE thrown by addFile() - cpw: Clean up chunk patch. - liach: Fix typo in `guava` - cpw: Add a flag to the modidremapping event. If the remapevent is because the registry is refreezing, it'll be true. - minecrell: - Improve the console command completer - - - Fix space after command getting removed when completing a - subcommand together with the command prefix - - Add support for completing without input (shows command list) - - Sort command completion results - - Fix console spamming command prefixes after closing the input stream - bernhard.bonigl: Add shouldRender() to Potions that allows to hide them completely in the inventory - LexManos: Remove MCP reference patches. - LexManos: Fixed colored leather armor, and custom armor textures. - fry: Fixed orientations of generated item faces. Fixes #2215. - fry: Workaround for https://github.com/google/guava/issues/738 - bx9j52xd: Fixed that oldLight is not being used. - LexManos: Fixed ModList GUI rendering incorrectly. Closes #2254 - LexManos: Add EMERALD and SILVERFISH to GenerateMinable event. Closes #1158 - LexManos: Deprecate int IDs in FluidRegistry. Modders should only ever use the String name. Also add a 'friendly' exception when attempting to get an ID for a unregistered fluid. Closes #1374 - LexManos: Fix wrong EventType passed for Emerald ore-gen. - AlgorithmX2: - Added doesSideBlockRendering to provide finer grain face culling. - Implemented for BlockStairs and BlockSlab. - cpw: Use ItemStack.hasEffect. closes #2230 - minzmann: Update PotionEffect.java.patch - cpw: Fix derpage when loading a 1.8 world, with persistent state being entirely ignored in that case. - AlgorithmX2: Add getHighlightTip allowing a item to override its displayed renderToolHightlight. - cpw: - A test for issue #1848. Please try this with any mods you can @ 1.8.8, and see if you still get log spam of any kind (not just the - log message from the issue either). - AlgorithmX2: Added addLandingEffects allowing mods to override landing particles, for blocks that require world information to determine textures. - LexManos: Fix enchanting applying the same enchantment multiple times. Closes #2273 - fry: - Preparations for the Animation system. - Changes to the Model API - IModelState now works with Optional. Handling of parts of the model is not optional, and coordinate space/result interpretation is up to the caller. IModel doesn't extend IModelPart by default anymore; MapModelState uses composition to achieve previous functionality, IModelPart implementations are disjoint now. Updated perspective handing to the new API, removed IPerspectiveState (MapModelState is now the same thing). Perspective transforms for the default fluid model. - fry: IModel can now depend on a variant definition (ModelResourceLocation); added MultiLayerModel - simple model that'll render correctly in multiple layers + example of using it. - fry: Fixed java6 errors in previous commit. - fry: Forge pipeline will now take original model lightmap into account, if present. - fry: Delayed quad list resolution in MultiModel, fixes NPE in MultiLayerModel. - fry: LightUtil.pack and .unpack now work correctly with unpacked arrays of size <4. - fry: Fix dependency resolution for models with custom data/textures. - jadran.kotnik: Fix client side commands adding parts of the color codes on autocomplete (prefix "7" and suffix "r"). - fry: Fixed NPE caused by accessing undefined layer in MultiLayerModel. - bernhard.bonigl: - Add a dynamic bucket model that displays the animated liquid contained - Has a config option (default off) that replaces the vanilla buckets with the forge bucket model - - New original bucket textures from mr_hazard - LexManos: - Fixed registry issues that prevented connecting to 1.8 Forge servers. - More precisely: Servers with missing registries default back to frozen version. - Throw descriptive error if we do not have any information. - LexManos: Fixed vanilla bug related to spawning entities on top of fences. Closes #2303 - cpw: Fix the channel handler naming. It now uses the standard netty namer for it, by careful use of cunning reflection. - cpw: Fix up persistent substitution. Should close #2259 - cpw: - Blocks are no longer erased from the registry if the mod isn't present. This means that modded blocks can potentially retain their IDs - even if they are temporarily not present in the game. Currently TileEntity data associated with the block is erased. - cpw: Try and fix registry NPE when substitution is active. - cpw: Capture ItemBlock remaps. - cpw: Actually use the delegate for the itemblock - cpw: Try and make sure active substitutions are immediately available in the block to item map. - fry: Added an ability to register custom item variants, not ending with "#inventory". Should allow grouping multiple item models into 1 blockstate json. - fry: Fixed random block position offset not applying correctly. - LexManos: Fix Button/Torch/Lever placement on stairs and slabs. Closes #2291 - diesieben07: Allow forge-type spawn-eggs to spawn child entities when clicking EntityAgeable - bernhard.bonigl: Add a hook for custom particle spawning for slimes - bernhard.bonigl: - Fix bucket replacement not loading the bucket model by itself if replacing buckets. - This happens when no other mod that uses the bucket model is present. - Also added a simple method for registering the bucket model, should give - modders an idea on how to use the general model. - -Build 1.8.8-11.15.0.1654-1.8.8: - bernhard.bonigl: - Fix bucket replacement not loading the bucket model by itself if replacing buckets. - This happens when no other mod that uses the bucket model is present. - Also added a simple method for registering the bucket model, should give - modders an idea on how to use the general model. - -Build 1.8.8-11.15.0.1653-1.8.8: - bernhard.bonigl: Add a hook for custom particle spawning for slimes - -Build 1.8.8-11.15.0.1652-1.8.8: - diesieben07: Allow forge-type spawn-eggs to spawn child entities when clicking EntityAgeable - -Build 1.8.8-11.15.0.1651-1.8.8: - LexManos: Fix Button/Torch/Lever placement on stairs and slabs. Closes #2291 - -Build 1.8.8-11.15.0.1650-1.8.8: - fry: Fixed random block position offset not applying correctly. - -Build 1.8.8-11.15.0.1649-1.8.8: - fry: Added an ability to register custom item variants, not ending with "#inventory". Should allow grouping multiple item models into 1 blockstate json. - -Build 1.8.8-11.15.0.1647-1.8.8: - cpw: Try and make sure active substitutions are immediately available in the block to item map. - -Build 1.8.8-11.15.0.1646-1.8.8: - cpw: Actually use the delegate for the itemblock - -Build 1.8.8-11.15.0.1645-1.8.8: - cpw: Capture ItemBlock remaps. - -Build 1.8.8-11.15.0.1644-1.8.8: - cpw: Try and fix registry NPE when substitution is active. - -Build 1.8.8-11.15.0.1643-1.8.8: - cpw: - Blocks are no longer erased from the registry if the mod isn't present. This means that modded blocks can potentially retain their IDs - even if they are temporarily not present in the game. Currently TileEntity data associated with the block is erased. - -Build 1.8.8-11.15.0.1642-1.8.8: - cpw: Fix up persistent substitution. Should close #2259 - -Build 1.8.8-11.15.0.1641-1.8.8: - cpw: Fix the channel handler naming. It now uses the standard netty namer for it, by careful use of cunning reflection. - -Build 1.8.8-11.15.0.1640-1.8.8: - LexManos: Fixed vanilla bug related to spawning entities on top of fences. Closes #2303 - -Build 1.8.8-11.15.0.1639-1.8.8: - LexManos: - Fixed registry issues that prevented connecting to 1.8 Forge servers. - More precisely: Servers with missing registries default back to frozen version. - Throw descriptive error if we do not have any information. - -Build 1.8.8-11.15.0.1638-1.8.8: - bernhard.bonigl: - Add a dynamic bucket model that displays the animated liquid contained - Has a config option (default off) that replaces the vanilla buckets with the forge bucket model - - New original bucket textures from mr_hazard - -Build 1.8.8-11.15.0.1637-1.8.8: - fry: Fixed NPE caused by accessing undefined layer in MultiLayerModel. - -Build 1.8.8-11.15.0.1636-1.8.8: - jadran.kotnik: Fix client side commands adding parts of the color codes on autocomplete (prefix "7" and suffix "r"). - -Build 1.8.8-11.15.0.1635-1.8.8: - fry: Fix dependency resolution for models with custom data/textures. - -Build 1.8.8-11.15.0.1634-1.8.8: - fry: LightUtil.pack and .unpack now work correctly with unpacked arrays of size <4. - -Build 1.8.8-11.15.0.1633-1.8.8: - fry: Delayed quad list resolution in MultiModel, fixes NPE in MultiLayerModel. - -Build 1.8.8-11.15.0.1632-1.8.8: - fry: IModel can now depend on a variant definition (ModelResourceLocation); added MultiLayerModel - simple model that'll render correctly in multiple layers + example of using it. - fry: Fixed java6 errors in previous commit. - fry: Forge pipeline will now take original model lightmap into account, if present. - -Build 1.8.8-11.15.0.1630-1.8.8: - LexManos: Fix enchanting applying the same enchantment multiple times. Closes #2273 - fry: - Preparations for the Animation system. - Changes to the Model API - IModelState now works with Optional. Handling of parts of the model is not optional, and coordinate space/result interpretation is up to the caller. IModel doesn't extend IModelPart by default anymore; MapModelState uses composition to achieve previous functionality, IModelPart implementations are disjoint now. Updated perspective handing to the new API, removed IPerspectiveState (MapModelState is now the same thing). Perspective transforms for the default fluid model. - -Build 1.8.8-11.15.0.1628-1.8.8: - AlgorithmX2: Added addLandingEffects allowing mods to override landing particles, for blocks that require world information to determine textures. - -Build 1.8.8-11.15.0.1627-1.8.8: - AlgorithmX2: Add getHighlightTip allowing a item to override its displayed renderToolHightlight. - -Build 1.8.8-11.15.0.1626-1.8.8: - cpw: - A test for issue #1848. Please try this with any mods you can @ 1.8.8, and see if you still get log spam of any kind (not just the - log message from the issue either). - -Build 1.8.8-11.15.0.1625-1.8.8: - minzmann: Update PotionEffect.java.patch - -Build 1.8.8-11.15.0.1624-1.8.8: - cpw: Fix derpage when loading a 1.8 world, with persistent state being entirely ignored in that case. - -Build 1.8.8-11.15.0.1623-1.8.8: - bernhard.bonigl: Add shouldRender() to Potions that allows to hide them completely in the inventory - -Build 1.8.8-11.15.0.1622-1.8.8: - minecrell: - Improve the console command completer - - - Fix space after command getting removed when completing a - subcommand together with the command prefix - - Add support for completing without input (shows command list) - - Sort command completion results - - Fix console spamming command prefixes after closing the input stream - -Build 1.8.8-11.15.0.1621-1.8.8: - cpw: Use ItemStack.hasEffect. closes #2230 - -Build 1.8.8-11.15.0.1620-1.8.8: - liach: Fix typo in `guava` - -Build 1.8.8-11.15.0.1619-1.8.8: - AlgorithmX2: - Added doesSideBlockRendering to provide finer grain face culling. - Implemented for BlockStairs and BlockSlab. - -Build 1.8.8-11.15.0.1618-1.8.8: - LexManos: Fix wrong EventType passed for Emerald ore-gen. - -Build 1.8.8-11.15.0.1617-1.8.8: - LexManos: Deprecate int IDs in FluidRegistry. Modders should only ever use the String name. Also add a 'friendly' exception when attempting to get an ID for a unregistered fluid. Closes #1374 - -Build 1.8.8-11.15.0.1616-1.8.8: - LexManos: Add EMERALD and SILVERFISH to GenerateMinable event. Closes #1158 - -Build 1.8.8-11.15.0.1615-1.8.8: - LexManos: Fixed ModList GUI rendering incorrectly. Closes #2254 - -Build 1.7.10-10.13.4.1614-1.7.10: - LexManos: Fix dispensers equipping armor on players in the wrong slot Closes #1649 - -Build 1.8.8-11.15.0.1613-1.8.8: - bx9j52xd: Fixed that oldLight is not being used. - -Build 1.8.8-11.15.0.1612-1.8.8: - fry: Workaround for https://github.com/google/guava/issues/738 - -Build 1.8.8-11.15.0.1611-1.8.8: - fry: Fixed orientations of generated item faces. Fixes #2215. - -Build 1.8.8-11.15.0.1610-1.8.8: - LexManos: Remove MCP reference patches. - LexManos: Fixed colored leather armor, and custom armor textures. - -Build 1.8.8-11.15.0.1609-1.8.8: - cpw: Add a flag to the modidremapping event. If the remapevent is because the registry is refreezing, it'll be true. - -Build 1.8.8-11.15.0.1608-1.8.8: - cpw: Clean up chunk patch. - -Build 1.8.8-11.15.0.1607-1.8.8: - mark.a.woodman: - Initialize sources list - - Fixes crash NPE thrown by addFile() - -Build 1.8.8-11.15.0.1606-1.8.8: - cpw: Most requested feature of all time? TileEntity init method called after it's ready to roll. remove all the if (firstTicks) - -Build 1.8.8-11.15.0.1605-1.8.8: - cpw: - Fix language adapter loading. - - The language adapter is now properly picked up after the mod is loaded - on the classpath, fixing the ClassNotFoundException occurring before. - Also fixed some minor formatting and made it throw a full - RuntimeException on failure. - - Fix up some formatting - -Build 1.8.8-11.15.0.1604-1.8.8: - cpw: Be noisy when API is in a coremod. It'll never work and modders should realize that fact. - -Build 1.8.8-11.15.0.1603-1.8.8: - mezz: Allow server to access Potion isBadEffect() - -Build 1.8.8-11.15.0.1602-1.8.8: - kashike: Use the FMLSecurityManager checkPermission(Permission) method for context-based permission checks. Fixes #2067 - -Build 1.8.8-11.15.0.1601-1.8.8: - cpw: Allow entity selectors to select "." in entity names. Closes #2125 - -Build 1.8.8-11.15.0.1600-1.8.8: - minecrell: Add jline-based console with colors and tab-completion - bernhard.bonigl: Add a PotionRegistry to handle dynamic distribution and remapping of Potion IDs - cpw: Some tweaks - GameRegistry is modder facing API, so avoid having MC methods there. Fix a couple of registry bugs. - cpw: Fixup Jline integration - cpw: A few fixes - -Build 1.8.8-11.15.0.1596-1.8.8: - cpw: Fix problem with spam from registry on loading a second world. Empty the staging. - -Build 1.8.8-11.15.0.1595-1.8.8: - lumien231: Fixed: The Integrated Server not being stopped when exiting a singleplayer world to the main menu - -Build 1.8.8-11.15.0.1594-1.8.8: - LexManos: Add chunk loading protection to WorldSever.getTileEntitiesIn, may prevent orphanced chunks and a CME in EntityPlayerMP. Note: The 'max' parameters are NON-inclusive. - cpw: Fix up blockstate rebuild. Closes #2221. Also fix formatting. IDEA has differences. Solved now. - -Build 1.8.8-11.15.0.1592-1.8.8: - cpw: Giant registry fixup - -Build 1.8.8-11.15.0.1591-1.8.8: - LexManos: Bump version for new Minecraft version. - LexManos: Fixed placing blocks on snow layers with more then one layer. - LexManos: Fixed Large mushrooms generating incorrectly. - LexManos: Removed IItemRenderer class, all functionality is possible with new rendering system. - LexManos: Compiler warnings pass, undeprecated SplashProgress related stuff. - -Build 1.8.8-11.14.4.1590-1.8.8: - cpw: Propogate AbortException. Closes #2206. Also fix tracing printstream when printStackTrace is called. - -Build 1.8.8-11.14.4.1589-1.8.8: - cpw: Fix up a couple of patches, affected by the recent update - cpw: - Add .exc for StatList patch - - More tweaking - -Build 1.8.8-11.14.4.1588-1.8.8: - cpw: Fix button and lever placement problem. Closes #2204 - -Build 1.8.8-11.14.4.1587-1.8.8: - lordillyohs: - Remove trailing */ in the build.gradle - - Signed-off-by: Anthony Anderson - -Build 1.8.8-11.14.4.1586-1.8.8: - cpw: Cleaning up some derpy names - cpw: More cleanups, some documentation, a bunch of deprecations. - -Build 1.8.8-11.14.4.1585-1.8.8: - cpw: Deprecate it as well, because hey, it's redundant now. - cpw: Clean up some very long dead code. Bukkit hasn't existed in a very long time now. IASM never worked, and I'm not about to implement it. - -Build 1.8.8-11.14.4.1584-1.8.8: - cpw: ONE EVENT BUS TO RULE THEM ALL AND IN THE DARKNESS FIRE THEM! - -Build 1.8.8-11.14.4.1583-1.8.8: - cpw: Fix MDK for 1.8.8 using FG2.1 snapshot - cpw: Yeah, amount is NOT deprecated. - -Build 1.8.8-11.14.4.1582-1.8.8: - cpw: - OMG! Documentation? WUT? I haz lost my mind. - Also, Functional interface for IMC. Senders can send a classname implementing Guava's function, and receivers - will be able to get that function, and do, well, whatever, really. Probably best for those callback type - scenarios, connecting up APIs and stuffs. - -Build 1.8.8-11.14.4.1581-1.8.8: - cpw: Cleanup Fluid deprecations stuff. - -Build 1.8.8-11.14.4.1580-1.8.8: - LexManos: Update universal manifest for 1.8.8's json. - -Build 1.8.8-11.14.4.1579-1.8.8: - fry: Fixed NPE is B3D loader caused by the missing vertex normal; updated the example chest model - it's now has 2 meshes; Updated ModelAnimationDebug - it now uses the new chest model, renders the base with the static world renderer, and only the lid with the TESR. - LexManos: Fix incorrect position passes to Block.getExplosionResistance from entities. - LexManos: Moved client side Block.onBlockDestroyed to after Item.onBlockDestroyed to match server order. - LexManos: Enable the normal ModList GUI in game. Use GL_SCISSOR to support the transparent in-game GUI. - Choonster.2010: BiomeManager: Fix off-by-one errors - LexManos: Fix bold font rendering, Unicode is 2x pixel density of normal. - LexManos: Fix invalid position passed to isAir/getLight in World.playAmbientSound - fry: Fixed forge lighting working incorrectly outside 0x1000000 coordinates. - fry: Implemented interpolation of TRSR transformations; B3D: added interpolation capabilities to B3DState, animated TESR example in ModelAnimationTest (pure TESR right now, no separation inside the example model between the static and dynamic parts right now). - fry: B3D loader: removed 2 redundand null checks, changed constructor args to final to fix (java6?) inner arg error. - fry: Fix holes in generated item models. - fry: Removed face doubles from item models. - fry: Fixed forge lighting working incorrectly outside 0x1000000 coordinates. - cpw: Update mappings to 20151122. - -Build 1.8-11.14.4.1577: - fry: Implemented interpolation of TRSR transformations; B3D: added interpolation capabilities to B3DState, animated TESR example in ModelAnimationTest (pure TESR right now, no separation inside the example model between the static and dynamic parts right now). - fry: B3D loader: removed 2 redundand null checks, changed constructor args to final to fix (java6?) inner arg error. - fry: Fix holes in generated item models. - fry: Removed face doubles from item models. - fry: Fixed forge lighting working incorrectly outside 0x1000000 coordinates. - -Build 1.8.8-11.14.4.1576-1.8.8: - cpw: Fix derpy fir trees in the taiga. So many patches. See if we can find any more mistakes?! - -Build 1.8.8-11.14.4.1575-1.8.8: - cpw: Small tweak to the OUT/ERR logger - should skip the Throwable stuffs now. - cpw: - Fix weird patch issue where the this FG commit: https://github.com/MinecraftForge/ForgeGradle/commit/2f0ca9921b961133689d29b807333241010a802d - breaks if the exact end of a line is a srgname. Not ideal, but should work. - -Build 1.8-11.14.4.1572: - LexManos: Fix invalid position passed to isAir/getLight in World.playAmbientSound - -Build 1.8-11.14.4.1571: - Choonster.2010: BiomeManager: Fix off-by-one errors - -Build 1.8-11.14.4.1570: - LexManos: Fix bold font rendering, Unicode is 2x pixel density of normal. - -Build 1.8-11.14.4.1569: - LexManos: Enable the normal ModList GUI in game. Use GL_SCISSOR to support the transparent in-game GUI. - -Build 1.8-11.14.4.1568: - LexManos: Fix incorrect position passes to Block.getExplosionResistance from entities. - LexManos: Moved client side Block.onBlockDestroyed to after Item.onBlockDestroyed to match server order. - -Build 1.7.10-10.13.4.1566-1.7.10: - scott: Add an event hook to allow overriding of fuels recognized by vanilla fuel handling. - -Build 1.8-11.14.4.1565: - lumien231: Fix Client Login Issue when logging into a non existent dimension - -Build 1.7.10-10.13.4.1564-1.7.10: - LexManos: Fixed skulls not placing on fences like vanilla {Vanilla is buggy -.-} Closes #2185 - -Build 1.8-11.14.4.1563: - LexManos: Bump version for Recomended Build. - -Build 1.8-11.14.3.1562: - LexManos: - Merge pull request #2179 from arideus101/patch-1 - - Fixed issue where custom colored armor wouldn't be colored. (reverted from commit dee0b2084b519419bbf97d8ad177204830ea2b07) - -Build 1.8-11.14.3.1561: - jasondoyle528: Allows Custom Armor Coloring to be done easily - -Build 1.8-11.14.3.1560: - gabizou: - Fix a possible NPE when checking supertypes of interfaces. Closes #2176. - - Signed-off-by: Gabriel Harris-Rouquette - -Build 1.8-11.14.3.1559: - bjoern: - Fix possible crash in EventBus - - There is currently no way to check if an event handler has been registered or not. - But when trying to unregister a not-registered event handler, Minecraft crashes with a NullPointerException. - This is a simple fix to prevent such crashes. - cpw: Fix substitutions for recipes and oredict recipes. Should mean that substitutions start working properly. - cpw: - OreDictionary will warn if there's an invalid ore being registered now, rather than just - using -1 and doing weird things with the list as a result. - cpw: Two more corner cases in the oredictionary. Should work for all cases now. - cpw: - Fix firing the remap event. It always fires now, and additionally fires when the registry reverts to frozen. - Most mods refer to the gameregistry for ids they care about, so this shouldn't affect anything significantly, - but if your mod was dependent on their being content in the remap event, and only acting on that content, - empty content means it's "reverted to frozen" state - the state at the start of the game. - -Build 1.7.10-10.13.4.1558-1.7.10: - cpw: - Fix firing the remap event. It always fires now, and additionally fires when the registry reverts to frozen. - Most mods refer to the gameregistry for ids they care about, so this shouldn't affect anything significantly, - but if your mod was dependent on their being content in the remap event, and only acting on that content, - empty content means it's "reverted to frozen" state - the state at the start of the game. - -Build 1.7.10-10.13.4.1557-1.7.10: - cpw: Two more corner cases in the oredictionary. Should work for all cases now. - -Build 1.8-11.14.3.1556: - LexManos: Fixed Open url confirm screen not showing URL. - LexManos: Fixed Stronghold Library not having anything in it's chests. - -Build 1.8-11.14.3.1555: - diesieben07: Fix GameData.findBlock - -Build 1.8-11.14.3.1554: - fry: Fixed anaglyph transformation not being applied in the forge lighting fully. - -Build 1.8-11.14.3.1553: - fry: Provide ItemCameraTransforms for vanilla models when possible. - -Build 1.8-11.14.3.1552: - fry: OBJ loader: reworked texture resolution: keys now have to start with #, like every other model loader; models without explicit library now work, remapping is possible by using the key "#OBJModel.Default.Texture.Name"; in addition to remapping by material name, remapping by texture name works too, like in other model formats. - -Build 1.8-11.14.3.1551: - fry: Performace fix for item rendering. - -Build 1.8-11.14.3.1550: - Choonster.2010: - Fix texture error message for broken textures - - -- Fixes #2100 - -- Iterates over badTextureDomains instead of missingTextures.keySet() - as a domain can have broken textures without any missing textures - -Build 1.8-11.14.3.1549: - fry: Obj loader: fix vertices shared between faces having the same attributed (uvs/normals). - the.f1repl4ce: Fixed a bug that caused the config option name to overlap with the selectable values when using GuiConfigEntries.SelectValueEntry, fixes #2114 - fry: OBJ model: use original vertex material when defining face. - fry: Fixed block color multiplier not being cached properly in the forge renderer, performance improvement. - LexManos: Merge FML and Forge lang file, and update crowdin project. - LexManos: - Redesign the ModList GUI to use a scrolling list for the main body content. - Allowing for larger information to be displayed. - URLs are auto-detected and now clickable. - Mod Logos are now centered, it looks better. - LexManos: - Introduce a new centralized version checking system. - Using the @Mod annotation mods can opt-in to a centrally controlled update system. - This is PURELY a notification system and will NOT automatically download any updates. - The End User can control which mods check for updates and disabel the system entirely using the Forge Config and GUI. - Format for the json the URL must point to is described here: https://gist.github.com/LexManos/7aacb9aa991330523884 - -Build 1.8-11.14.3.1543: - fry: Fix color multiplier applied incorrectly for items. - fry: OBJ loader: fixed another whitespace-related issue; removed unused "modifyUVs" property for now; added the "flip-v" property to switch between OpenGL-style and DirextX-style model UVs; fixed normals - they are now correct in-world, still a bit strange for the items; fixed normals a little bit for B3D models too. - -Build 1.7.10-10.13.4.1541-1.7.10: - cpw: - OreDictionary will warn if there's an invalid ore being registered now, rather than just - using -1 and doing weird things with the list as a result. - -Build 1.7.10-10.13.4.1539-1.7.10: - diesieben07: Fix CME when entities are spawned from EntityJoinWorldEvent - bernhard.bonigl: Fix Potion IDs above 127 - Abrar Syed: Update FG version to 2.0.2 - fry: Changed how the forge lighting system handles holey models for opaque blocks; it now mimics vanilla behaviour, which allows light to pass through them. - fry: Fix for the previous commit - transparent blocks were handled improperly. - glstillman: OBJLoader: Quick bandages to support/fix the new way that face/vertex normals are calculated, a very quick bandage to patch TextureCoordinates for the time being, and the Parser now uses a Pattern to split strings on whitespace instead of only splitting on " ". - cpw: Fix substitutions for recipes and oredict recipes. Should mean that substitutions start working properly. - -Build 1.8-11.14.3.1532: - fry: Fixed normal calculation for vanilla models, fixed the grass darkening and simular issues. - fry: More lighting fixes, flat lighting now works correctly for grass and torches. - -Build 1.8-11.14.3.1530: - fry: Fixed piston rendering (WorldRenderer offset wasn't applied); fixed TESR being registered too early in one of the debug mods. - -Build 1.8-11.14.3.1529: - glstillman: Fixed a bug with item model loading that would occur if ModelBakery.addVariantName() was called with the same string location parameter for 2 different items, and the string pointed to a location that didn't exist, where ModelLoader.loadAnyModel() would substitute the blockdefinition in for the item model, but wouldn't remove the original input location from the loadingModels list, which would cause the location from the second call to throw an IllegalStateException even though that location now has a model. - fry: - Perspective awareness for vanilla and multi models, fixes #2148. - Improved error handling in MultiModel. - fry: Fixed generic bug in MultiModel - fry: Fixed AO being applied to OBJ model transparency, and OBJ loader trying to force the loading of the builtin white texture. - fry: Provide a IModel for "builtin/generated", fixes #2147 - fry: Fixed another generic issue in MultiModel. - -Build 1.8-11.14.3.1525: - fry: Small fix for reworked classic lighting - -Build 1.8-11.14.3.1524: - fry: Added OBJ loader for the ModelLoaderRegistry system. - -Build 1.8-11.14.3.1523: - fry: - Model pipeline system. - Should replace all ad-hoc quad generation methods in forge, and make IBakedModel -> WorldRenderer data transfer faster. Added IVertexConsumer + helper classes; lighting that works correctly for non-axis-aligned faces using the new infrastructure. Changed smooth lighting algorithm, now it should work correctly for everything. - New block lighter can be disabled in the forge config options. - fry: Added back in the lost class - -Build 1.8-11.14.3.1521: - simonbarnes1: - Add Guava and Apache to LaunchClassLoader exclusion list on server - - Move exclusions to common place. Less likely to get out of sync - -Build 1.8-11.14.3.1520: - bk1325: Add PlayerSetSpawnEvent - -Build 1.8-11.14.3.1519: - fry: '#' is now added automatically to the beginning of the texture names in B3D models, and the remapping is expected via the blockstate JSON, since it's more reasonable than adding it to the file name in the modelling program or matching the resource location with the filename. - -Build 1.8-11.14.3.1518: - fry: Fixes Attributes.transform affecting only 1 vertex. - -Build 1.7.10-10.13.4.1517-1.7.10: - bjoern: - Fix possible crash in EventBus - - There is currently no way to check if an event handler has been registered or not. - But when trying to unregister a not-registered event handler, Minecraft crashes with a NullPointerException. - This is a simple fix to prevent such crashes. - -Build 1.8-11.14.3.1516: - luacs1998: Fix a possible crash in EventBus - -Build 1.8-11.14.3.1515: - rubensworks: Fix dispenser action for modded spawn eggs - -Build 1.8-11.14.3.1514: - LexManos: Update Gradle wrapper to 2.7 - LexManos: Fix entity count being incorrect for spawning logic. Now filter out 'persistant' entities. - -Build 1.8-11.14.3.1513: - foka_12: Disallow conflicting furnace recipes - -Build 1.8-11.14.3.1512: - fry: Workaround for MinecraftForge/ForgeGradle#256 - -Build 1.8-11.14.3.1511: - cpw: - FMLNetworkHandler.openGui should not try and open a GUI on a FakePlayer. - Fixes #2082 and probably dozens of mod errors. Also, side benefit of the - merged codebase! FML code can ref Forge code! - -Build 1.8-11.14.3.1510: - laci200270: Update FMLSecurityManager.java - cpw: Format a bit better - -Build 1.8-11.14.3.1509: - fry: Much requested temporary hack for items and TESRs. Context: #1582, #1597, #1713, #2058 and others. - -Build 1.8-11.14.3.1508: - vorquel: Fix faulty Channel name - -Build 1.8-11.14.3.1507: - simonbarnes1: Use already provided profile for the player's own skin - -Build 1.8-11.14.3.1506: - cpw: - More cleanup of the default eclipse workspace. The project is now called "MDKExample" not "Minecraft". - The project tree is now contemporary, instead of a copy from 1.5.x era MC. The launches are cleaned up, and refer to - a better default "runDir" of "run" rather than "eclipse".. Updating to FG2.0.1 which will contain relevant binary fixes. - -Build 1.8-11.14.3.1505: - cpw: Fix eclipse workspace inside the mdk - don't run it through the tokenconverter. Also add in CREDITS-fml.txt to the MDK - it's still required. - -Build 1.8-11.14.3.1504: - LexManos: - Fixed issue where config folder would not be created before SplashProgress tried to read from it. - Default macs to disable the new loading screen due to to many macs having issues. - Users can enable it again by editing their config. - Catch and gracefully handle more errors when starting up the Splash Screen. - -Build 1.8-11.14.3.1503: - diesieben07: Re-introduce RenderBlockOverlayEvent, seems to have been missed during 1.8 update - Abrar Syed: removed broken and duplicate AT lines - Abrar Syed: added hardcoded fml version file - Abrar Syed: DeobfuscationData no longer required at dev time - Abrar Syed: removed old unnecessary stuff - Abrar Syed: Added FG2 buildscript + updated for Gradle 2.4 - Abrar Syed: added jenkins compat tasks - Abrar Syed: fixed local-building fail with changelog - Abrar Syed: updated installed gradle. not finished - Abrar Syed: fixed deployment credentials - cpw: FML is no more. FML has ceased to be. FML's expired and gone to meet its maker. FML's a stiff! Bereft of life, FML rests in peace. - cpw: Vestigal fml-ectomy. - cpw: - FML's metabolic processes are now history. FML's off the twig. FML's kicked the bucket, FML's shuffled off this mortal coil, - run down the curtain and joined the bleedin' choir invisible!! THIS IS AN EX-PROJECT! - Abrar Syed: added MDK package - cpw: Fix MDK task - it now runs. - cpw: The final nail in the coffin. BYE! - cpw: - Trying to fix the MDK to include gradle wrapper, but the gradle-wrapper.jar is - corrupted. @AbrarSyed can you take a look? - cpw: - Fix packaging the gradle wrapper properly. There is still a problem with - the MDK- it fails to run setupDecompWorkspace. - - Filed an issue at ForgeGradle, since this seems to be something FG2 shouldn't - be doing, but is? - - https://github.com/MinecraftForge/ForgeGradle/issues/235 - cpw: Remove patches - cpw: Fix ciWriteBuildNumber task. Ugly, but it works. - cpw: Fix crowdin task. Good luck jenkins, lets roll! - cpw: Fix crowdin again. Run, jenkins, for god's sake, run! - LexManos: Update gradle wrapper and fix changelog task. - -Build 1.8-11.14.3.1502: - cpw: ObjectHolder works great, but it should be a lot less spammy about failed lookups. They're usually mod options. - cpw: Actually rebuild the fluidNames each rebuild, don't just try and force changes in. Should fix #1973 - cpw: - Wake up the FluidRegistry before any mods start loading. Should stop mods claiming to own water or lava (depending on who accessed - FluidRegistry first) - cpw: Be a little bit more helpful when the ObjectHolder misses. Should help figure out what is going in in #2006 - cpw: Cherry pick some changes from 1.8 for inner class discovery, also fix the negativecache. Closes #1872 - -Build 1.8-11.14.3.1501: - LexManos: Fix placing skulls on fence posts. Closes #2055 - -Build 1.8-11.14.3.1500: - starbuck: Fix harvest logic running in addition to shearable logic - -Build 1.8-11.14.3.1499: - glstillman: Fixed a bug with ExtendedBlockStates containing at least one IProperty and one IUnlistedProperty not allowing blocks to be placed. - -Build 1.8-11.14.3.1498: - liach: Add an EnumHelper hook and fixed an issue - -Build 1.8-11.14.3.1497: - simonbarnes1: Fix placing signs with NBT prompting for text - -Build 1.8-11.14.3.1496: - Zaggy1024: - Fixed a Forge blockstates json removing models causing an NPE in the loader. - Fixed the deep clone of a V1 Variant not cloning the submodels properly. - -Build 1.8-11.14.3.1495: - clienthax: Signed-off-by: Clienthax - -Build 1.8-11.14.3.1494: - rubensworks: Make EnumFacing events available server-side - -Build 1.8-11.14.3.1493: - rubensworks: Fix source block check for BlockFluidClassic - -Build 1.7.10-10.13.4.1492-1.7.10: - cpw: Cherry pick some changes from 1.8 for inner class discovery, also fix the negativecache. Closes #1872 - -Build 1.8-11.14.3.1491: - diesieben07: Allow the new entity eggs to be created via middle-click - -Build 1.7.10-10.13.4.1490-1.7.10: - cpw: Actually rebuild the fluidNames each rebuild, don't just try and force changes in. Should fix #1973 - cpw: - Wake up the FluidRegistry before any mods start loading. Should stop mods claiming to own water or lava (depending on who accessed - FluidRegistry first) - cpw: Be a little bit more helpful when the ObjectHolder misses. Should help figure out what is going in in #2006 - -Build 1.8-11.14.3.1487: - fry: Custom transformations in forge blockstate json. - -Build 1.8-11.14.3.1486: - LexManos: Fixed ItemMonsterPlacer.getEggInfo missing return. Closes #1975 - -Build 1.8-11.14.3.1485: - jadran.kotnik: Fixed error GUIs showing a white screen and replaced a rogue direct GL call. - -Build 1.8-11.14.3.1484: - izooDee5: Fix particle texture of the generated item models. - -Build 1.8-11.14.3.1483: - bernhard.bonigl: Fix StateMap always mapping properties to the "minecraft" domain instead of the mods, causing it to not find BlockState definitions. - -Build 1.8-11.14.3.1482: - LexManos: Add debug for max texture size and output when Texture Atlas can not stitch all textures. - -Build 1.7.10-10.13.4.1481-1.7.10: - cpw: ObjectHolder works great, but it should be a lot less spammy about failed lookups. They're usually mod options. - -Build 1.8-11.14.3.1480: - LexManos: More descripotive error if Patcher is passed invalid data for vanilla classes. - -Build 1.8-11.14.3.1479: - fry: Fixed perspective transformations for item models. - fry: Vanilla models can now use custom textures. Fixes #1962 - fry: There's no Map.getOrDefault in java6. - -Build 1.8-11.14.3.1476: - LexManos: Fix AT for Block constructor. - -Build 1.8-11.14.3.1475: - fry: Added ItemLayerModel - less awkward, simpler and faster version of ItemModelGenerator. - -Build 1.8-11.14.3.1474: - LexManos: Throw more descriptive errors when mods attempt to register invalid global entity IDs. - LexManos: Include the thread state in the potential error handleing for SplashProgress. - LexManos: Fixed Wavefront Object Importer reading files with integer values. Closes #1651, #1654 - LexManos: Create config folder in SplashProgress if it does not exist. - LexManos: Add the stitching allocation stage to loading screen. - LexManos: - Make TextureMap for items and blocks skip the first pass of loading/stitching textures. - Should decrease loading times for large packs. - May cause issues with some mods so use -Dfml.skipFirstTextureLoad=false to disable. - LexManos: Add TextureManager to loading screen. - LexManos: Time each bar in the loading screen and print it to the log, useful information to see where most time is spent in loading. - cpw: - Mods that are extracted to the mods dir by unzipping or whatever will now cause the game to crash. Too much info is in the META-INF now, - and more will be being added. Extracting to the mods dir just completely breaks that. - -Build 1.8-11.14.3.1473: - jamioflan: - Added CameraSetup sub-event for camera angles - - Allows players to alter yaw and pitch of renderViewEntity, but more importantly, adds the ability to roll the view. - - Added camera roll hook - -Build 1.7.10-10.13.4.1472-1.7.10: - michafla: fix logic for guessing mesa tag in biome dict - cpw: - Mods that are extracted to the mods dir by unzipping or whatever will now cause the game to crash. Too much info is in the META-INF now, - and more will be being added. Extracting to the mods dir just completely breaks that. - -Build 1.7.10-10.13.4.1470-1.7.10: - LexManos: Add TextureManager to loading screen. - LexManos: Time each bar in the loading screen and print it to the log, useful information to see where most time is spent in loading. - -Build 1.7.10-10.13.4.1469-1.7.10: - LexManos: Create config folder in SplashProgress if it does not exist. - LexManos: Add the stitching allocation stage to loading screen. - LexManos: - Make TextureMap for items and blocks skip the first pass of loading/stitching textures. - Should decrease loading times for large packs. - May cause issues with some mods so use -Dfml.skipFirstTextureLoad=false to disable. - -Build 1.8-11.14.3.1468: - LexManos: Patch line number update. Ignore this. - LexManos: - New system in EntityRegistry to allow modders to register spawn eggs. - For entites that do not use the global ID system. - {Which no mod entity should} - Vanilla spawn eggs will now detect a 'entity_name' entry in it's NBT data and use that for spawning/rendering. - -Build 1.8-11.14.3.1467: - foka_12: Change permission levels on ore recipes parameters - -Build 1.8-11.14.3.1466: - foka_12: - Fixed NPE when calling canBrew - - Oversight on my part, - - If the ingredient doesn't return true in Item.isPotionIngredient, Items.potionitem.getEffects(stack) returns null, causing an NPE to be thrown later on. - - This invalidates #1947. - -Build 1.8-11.14.3.1465: - LexManos: Use Guava instead of Nio for J6 compatibility. - -Build 1.8-11.14.3.1464: - fry: Added fluid renderer. - -Build 1.8-11.14.3.1463: - LexManos: Make Item.shouldCauseReequipAnimation is bit more precise and copy over the new item for rendering even if the animation is diabled. - -Build 1.8-11.14.3.1462: - LexManos: Add vanilla block rotation support back in for certain blocks that were missed in 1.8 update. Closes #1903 - -Build 1.8-11.14.3.1461: - xxmicloxx: Bugfix for B3DLoader - -Build 1.8-11.14.3.1460: - Daniel: - Fix incorrect block position in BlockReed canPlaceBlockAt - - block.canSustainPlant is called on the wrong block position. It should be called on the block below (the 'soil' block). - -Build 1.8-11.14.3.1459: - mezz: Add GuiScreenEvents for keyboard and mouse input - -Build 1.8-11.14.3.1458: - t.tomkins: - Player sensitive version of Block.getPickBlock - - Block.getPickBlock was patched in 1.7 but was overlooked in 1.8. - - Closes: https://github.com/MinecraftForge/MinecraftForge/issues/1709 - LexManos: Add Item.shouldCauseReequipAnimation to allow modders more control over the 'Reequip' animation. - -Build 1.8-11.14.3.1457: - LexManos: Fixed compile issues with irtimaled's PR. - -Build 1.7.10-10.13.4.1456-1.7.10: - irtimaled: - Copy fortress.dat from vanilla location - - Fixes #1747 - - If the dat file isn't in the dimension specific folder but is present in the vanilla data folder then copy it over. - LexManos: Make FML Gui classes use GlStateManager. Closes FML#615 - LexManos: Fixed Wavefront Object Importer reading files with integer values. Closes #1651, #1654 - -Build 1.8-11.14.3.1453: - LexManos: Cleanup code format in LayerBreakingTest. - LexManos: Fixup model loading errors not being printed by making ICustomModelLoader.loadModel propogate IOExceptions as needed. - -Build 1.7.10-10.13.4.1452-1.7.10: - LexManos: Include the thread state in the potential error handleing for SplashProgress. - -Build 1.7.10-10.13.4.1451-1.7.10: - LexManos: Throw more descriptive errors when mods attempt to register invalid global entity IDs. - -Build 1.8-11.14.3.1450: - LexManos: Bump version for new RB. - LexManos: Cleanup some spammy output. - LexManos: Quiet ClassPatchManager debug spam by default. Reenable using -Dfml.debugClassPatchManager=true. - LexManos: Quiet FMLControlledNamespacedRegistry debug spam by default. Reenable using -Dfml.debugRegistryEntries=true. - LexManos: Quiet CrashReport class pre-loading debug, no flag to re-enable. - LexManos: Cleanup mod signature data table. Easily seperating those mods with signatures vs those with none. - LexManos: Cleanup mod state dump to be easier to read by displaying the states in abreviation and placing them before the mod info. - -Build 1.8-11.14.3.1449: - clarsson: Fixing two IndexOutBoundsExceptions from the BiomeDictionary - -Build 1.7.10-10.13.4.1448-1.7.10: - LexManos: Cleanup mod state dump to be easier to read by displaying the states in abreviation and placing them before the mod info. - -Build 1.7.10-10.13.4.1447-1.7.10: - LexManos: Cleanup some spammy output. - LexManos: Quiet ClassPatchManager debug spam by default. Reenable using -Dfml.debugClassPatchManager=true. - LexManos: Quiet FMLControlledNamespacedRegistry debug spam by default. Reenable using -Dfml.debugRegistryEntries=true. - LexManos: Quiet CrashReport class pre-loading debug, no flag to re-enable. - LexManos: Cleanup mod signature data table. Easily seperating those mods with signatures vs those with none. - -Build 1.8-11.14.3.1446: - LexManos: Copy over parent's modelSet value in variants as well. - LexManos: Bump version for new RB - -Build 1.7.10-10.13.4.1445-1.7.10: - LexManos: Bump version for new RB. - -Build 1.8-11.14.2.1444: - cpw: - Fix up the client/server fluid race condition that could cause the game to bail when an SSP game connects. - There's still a teeny gap, but it's MUCH less prominent than it was before. - -Build 1.8-11.14.2.1443: - lumien231: Added LivingExperienceDropsEvent to change the amount of experience an entity drops - -Build 1.8-11.14.2.1442: - jcoleman350: Added ItemMap type check to item frames and ItemRenderer, enabling vanilla style rendering for custom maps - -Build 1.8-11.14.2.1441: - LexManos: Redefine removal value in IRetextureableModel from null to empty string {""} due to ImmutibleMap not allowing null Values. Closes #1927 - -Build 1.8-11.14.2.1440: - foka_12: Added a brewing registry system - -Build 1.8-11.14.2.1439: - LexManos: Limit Sign text to 384 json characters and strip control codes. This is 1.8.7's Sign fix. Thanks Searge. - LexManos: Remove worlds from WorldBorder when unloaded tol prevent memory leak, Closes #1923 - LexManos: Missed patch for sign fix. - -Build 1.8-11.14.2.1437: - cpw: - Attempt to synchronize the state for vanilla client completions and quit the handler if the vanilla - thread has already setup the connection. Should fix #1924 - -Build 1.8-11.14.2.1436: - LexManos: Change custom payload lock to be buffer itself incase multiple packets use the same backend buffer. Closes #1908 - -Build 1.8-11.14.2.1435: - Fuami.cake: - Added Breaking Animation for Smart Models, Checking each layer. - Added Layered Smart Render Test. - -Build 1.8-11.14.2.1434: - LexManos: Update README.txt - -Build 1.8-11.14.2.1433: - fry: Fixed missing variant logging; added the possibility to specify the item variant in the blockstate json. - fry: fixed AT missing for getModelBlockDefinition - fry: - B3D Improvements - - fixed keyframe transformation application - - textures are now resolved the same way as in vanilla models - - added the ability to use forge blockstate texture information - - removed unused code from the B3D example - -Build 1.8-11.14.2.1431: - fry: Fixed partial variant detection in the forge blockstate loader. - -Build 1.8-11.14.2.1430: - LexManos: Mitigate potential issue with users requesting lots of server status information by caching ServerStatus json. - -Build 1.8-11.14.2.1429: - clienthax: - Add missing forge patch from 1.8 port - https://github.com/MinecraftForge/MinecraftForge/blob/1.7.10/patches/minecraft/net/minecraft/client/Minecraft.java.patch#L88 - -Build 1.7.10-10.13.3.1428-1.7.10: - cpw: - Fix up the client/server fluid race condition that could cause the game to bail when an SSP game connects. - There's still a teeny gap, but it's MUCH less prominent than it was before. - -Build 1.8-11.14.2.1427: - LexManos: - Hook BlockState's Json loading to add support for simplified Forge format. - See https://github.com/MinecraftForge/MinecraftForge/pull/1885 for more details. - -Build 1.8-11.14.2.1426: - cpw: - Attempt to disable the new splash screen if there are errors detected finishing up. Print a slightly more helpful error message. - - (cherry picked from commit e3211eec0469dc6717943010d584207b7abdb1e0) - - Conflicts: - fml/src/main/java/cpw/mods/fml/client/SplashProgress.java - cpw: - Finish loading screen before going fullscreen. Closes MinecraftForge/FML#662 - - (cherry picked from commit 19d7e16fa6a28c5665de1ed6e50d8699e865bff2) - - Conflicts: - fml/patches/minecraft/net/minecraft/client/Minecraft.java.patch - cpw: So we can't print a lot of unicode in the splash screen, so restrict to a hard subset we know we CAN print, closes #1910 - LexManos: Fixed missing import in last merge. - -Build 1.7.10-10.13.3.1424-1.7.10: - cpw: So we can't print a lot of unicode in the splash screen, so restrict to a hard subset we know we CAN print, closes #1910 - -Build 1.8-11.14.2.1423: - AlgorithmX2: Allow placing item frames on Solid Block Faces (isSideSolid) - -Build 1.7.10-10.13.3.1422-1.7.10: - cpw: - Attempt to disable the new splash screen if there are errors detected finishing up. Print a slightly more helpful error message. - - (cherry picked from commit e3211eec0469dc6717943010d584207b7abdb1e0) - - Conflicts: - fml/src/main/java/cpw/mods/fml/client/SplashProgress.java - cpw: - Finish loading screen before going fullscreen. Closes MinecraftForge/FML#662 - - (cherry picked from commit 19d7e16fa6a28c5665de1ed6e50d8699e865bff2) - - Conflicts: - fml/patches/minecraft/net/minecraft/client/Minecraft.java.patch - -Build 1.8-11.14.2.1421: - cpw: - MinecraftForge/FML@12ccf9cf49b76140841cdc5a459422ae4781de1a Rather than try to fall back to the backup level.dat in case of weirdness in the ID map, just fail hard. There is probably a serious modder derp in this case and there's nothing FML can do to recover the situation except avoid making it worse. - MinecraftForge/FML@e8cd368da30661ed2898fff232e2db787edcbdcc It's an IllegalState not an IllegalArgument *sigh* - MinecraftForge/FML@2be9c743424c92f8799a6af1d59d60edd65e6bf0 And fix itemblocks being removed, leaving behind a residual block. This is a legitimate action - use the missing mapping event to let the mod tell us about it - MinecraftForge/FML@7d8804cf656081d1570068f52e9bfc7140b21a65 You can't setAction to BLOCKONLY - MinecraftForge/FML@c73861efe67594ee9995bc93744cab06bd6647d1 Cherry-pick 01aaa7dc97480b381ca0d192ec65016d7baeb747 Fix mods defined via --mods or --modListFile launch args not being searched for coremods. #560 - MinecraftForge/FML@94c45b48c1265e7c4f60f591d413fa545787d354 Fix json cache crash, handle the file much more cleanly. Probably an MC JIRA since it's a vanilla bug. Closes #619 - cpw: - Forge really should have always supported the concept of an "exact spawn". Individual world providers can still - change this behaviour of course, but for default maps it makes sense to support it as a config option. - cpw: - Removed fluidID from ItemStack. - - This fixes a rather huge issue where FluidStacks on the client could be desynced if a modder was unaware of it. - - This is a breaking change but can be mitigated with a transformer to the getter getFluidID(). - - Signed-off-by: King Lemming - cpw: Add in a fluidid transformer - cpw: Fix formatting - cpw: - Allow for duplicate Fluid Blocks. It's annoying to be sure but just as with the OreDictionary, we'll have to handle it. - - Signed-off-by: King Lemming - cpw: - You shouldn't be creating FluidStacks from unregistered Fluids. Warn clearly on failed registrations, and make a useful log message for failed fluidstack - creations. Should help a lot with tracking down broken mods that are doing this wrongly. - LexManos: MinecraftForge/FML@31cf2a9cab6d1977d31436220d9612eaa13d4e0f Remove J7 only constructor in EnhancedRuntimeException, J6 compiling compatibility restored. - LexManos: Restore binary compatibility issues in FluidRegistry caused by recent changes. - me: - Fix FluidRegsitry.registerFluid - - FluidRegistry: - ```java - static BiMap fluids = HashBiMap.create(); - static BiMap fluidIDs = HashBiMap.create(); - ... - public static boolean registerFluid(Fluid fluid) - { - if (fluidIDs.containsKey(fluid.getName())) - ^^^^^^^ - ``` - There is definitely should be fluids instead fluidIDs. This mistake broke many mods. - kinglemming: - Fixes #1782 - - Signed-off-by: King Lemming - kinglemming: - Fixes FluidContainerRegistry properly - no more corner case where client/server mods disagree. - - Also clarifies the 2x Fluid registration error message somewhat. - - Signed-off-by: King Lemming - kinglemming: - Adds a warning to the FluidContainerRegistry when a mod does something stupid! Also denies the registration. - - Signed-off-by: King Lemming - cpw: - MinecraftForge/FML@ce791cb1f2cf983ef77b1e5c4028ddefab394062 Rework EventSubscriptionTransformer to bake @Cancelable and @HasResult values, should increase EventBus performance even more by removing logic from Event constructors. - MinecraftForge/FML@852710962a9b6d7c8e2ca188c715eebb2da44c2a Clean up some dead code - cpw: MinecraftForge/FML@be5ec06e3144d55a03d125f3ce364eade3771f4f Cleaning up the missing resource stack spam, and condensing the information into a usefully understandable format. - cpw: MinecraftForge/FML@0da1263ff9ede99267c03728a1c823b8056d5e44 Enhance error output for bad textures a bit more and try and capture more types of error.. - cpw: - Fluids are now tracked internally by mod. This allows for the server and the world to specify a "default" - in the case of a possible alternative fluid implementation. If you always called registerFluid, things - should work pretty seamlessly, but if you didn't (gating with an isFluidRegistered check for example) - you should change to register anyway. This way, even if you're not default in the overall instance, you may - become default if you're the only mod present on a server, for example, or in a world save. - - This should radically decrease the mixups caused by mod load ordering problems, and other issues around fluid - tracking. - cpw: Fix NPE - Closes #1794 - cpw: And handle the null case in the constructor itself. Closes #1794 (again) - cpw: - MinecraftForge/FML@dfce4cd8d023a546c4c21405db182b8ddcd38633 Allow registering custom language adapters. - MinecraftForge/FML@9fecd72cf0bd483ae7bc2ce821ae6b2f5e5b9c65 Some tidyup of the PR - MinecraftForge/FML@10ac2a4fd972e923a60d23d10e8f297b8584f565 Fix itemCtorArgs javadoc in registerBlock - MinecraftForge/FML@86f70d37a40bbeaf7c389a14adcd8311ba5584df Patch TracingPrintStream to handle Kotlin IO. - kinglemming: - Adjusts OreDictionary to prevent invalid registrations. - Getting Ore Names for a non-existent ore will no longer automatically add that Name to the list nor generate an ID. - - Tweaks a warning message in the FluidContainerRegistry. No functionality change. - - Signed-off-by: King Lemming - LexManos: - Revert KL's change, requesting a ore WILL register it. - - Registering like this and returning a new empty list allows for modders to register their recipes and such without requiring to be executed after someone actually adds an item. If handled properly this allows for more flexible load orders, and more responsive code. - kinglemming: - Adds some new Ore querying functionality. - - Also attempts to size initial Hashmaps in a logical manner. - - Signed-off-by: King Lemming - cpw: - Fixed NBTSizeTracker missing a lot of data being read. Also made new NBT object allocation claim 32-bits in the size tracker. - - (cherry picked from commit de066a86da281d381b0e3ab9e83682720327049c) - - Conflicts: - patches/minecraft/net/minecraft/nbt/CompressedStreamTools.java.patch - patches/minecraft/net/minecraft/nbt/NBTTagList.java.patch - cpw: Verify that the fluid registry doesn't contain "junk" fluids thru reflection. - cpw: MinecraftForge/FML@8f9e3a7e30c8cc436dcb8d94b18b4634e0376339 Exceptions during construction phase should not propogate and cause an immediate crash. Closes #638 - cpw: Change logging to avoid the String.format bug. Closes #1809 - cpw: Actually use the override constraint in ticket requests. Closes #1802 - cpw: - Reformat ItemArmor$ArmorMaterial.getBaseItem to use an if/then/else structure. The switch - causes the generation of an internal class which may derp custom armor addition. - Closes #1799 - cpw: Make FluidStack hold a delegate for the fluid. This can then float based on what is "live" at present. - cpw: Fix static initializer derp. - cpw: Replace the OLD fluid in the fluidID map, not the new one.. - cpw: - Expose the fluid that a block was constructed with, useful for 'non-default' - configuration of fluidblocks. Shouldn't be used outside of this purpose. - cpw: MinecraftForge/FML@d14d1a8fea4c9242c944079ab8e4cdd516dfce4c Update to use the inherited jar format. Simplifies a lot.. - cpw: - MinecraftForge/FML@a39482c4b7ac2883f821619b47ff31e0b6e74b29 Splash screen implementation - MinecraftForge/FML@01fea095cdcd80c2ae9f0ebfd1c72242b3f2dbf8 Merge branch '1.7.10-load-progress' of github.com:RainWarrior/FML into 1.7.10 - MinecraftForge/FML@364b4bbbb0d4d168f9a63fa62a09e4e2fa213039 Call some loader stuffs - MinecraftForge/FML@61a891280d15f9f17e28bf86a427f32de5a8983e Make sure to close the splash screen if there's gonna be an error display - fry: - MinecraftForge/FML@5785a9c9e8d76b91a03ed1f9791aeee1cb7ea00b Fix up multiple injections of cmdline files via versionspecificmoddir. Closes #645 - MinecraftForge/FML@bd117be9c3e3919f3c29538cde80e3eb8fa48368 Correctly track exceptions thrown in the loading screen rendering thread - cpw: - MinecraftForge/FML@36688e781aae67fb1e4e7047acf689edeeac7ddb Add in resource reloading to the bar. Tidy up some of the labels a bit. - MinecraftForge/FML@a1dc465a55612ecdd44e6cde3adc0f1d53c6d97b More progress bar action! - MinecraftForge/FML@bfcbf4ef4366fd3d8bfd20adafb63a857bb0dd53 More progress bar hooks - MinecraftForge/FML@a6670c415ee97e771020921e00773c4c15e7512e Thread errors should be correctly displayed in the crash report now - MinecraftForge/FML@9a16d26186d27029cae32a19c09ddf48f7cba22e fixed bar text positioning - MinecraftForge/FML@0059c630281b7105c0532d2dba1bec27cf0323b2 Track mipmaps and texture upload - MinecraftForge/FML@ef5f809752e87e369235e98a63027e9347185cd9 Fix broken log message in vanilla. - cpw: - MinecraftForge/FML@4fe7b469b5ba156d4a786cd9e105b18cca7c271a Loading screen: logo rotation is now optional; initial support for animated textures - animation rate is fixed for now. - MinecraftForge/FML@31ae43590a2ba771d69b6c6513bcd5fe87ae8f8f Fix trying to close the screen during error. - cpw: MinecraftForge/FML@94821fac98e64d9b8ad7434ed23a621850a8e11c Add a config file that lets you add additional soft dependencies at runtime - injectedDependencies.json - cpw: MinecraftForge/FML@2ed00c4da0ee76eb15e28eb8ee2c07a3096155c2 Splash progress screen will not load in the presence of optifine anymore. - cpw: MinecraftForge/FML@dda431353953457608c38aacb060ef82ddc88883 Revert "Merge pull request #650 from luacs1998/1.7.10" This undoes the seriously broken change from Sponge to support Mixins, that breaks a wide variety of coremods. Given the widespread incompatibility it introduces, it won't be re-added at 1.7.10. - fry: - Updated FML: - MinecraftForge/FML@2ed00c4da0ee76eb15e28eb8ee2c07a3096155c2 Splash progress screen will not load in the presence of optifine anymore. - MinecraftForge/FML@adcf2247c69f68415033a3c0b2c527053733514c Loading screen: moved config file to the standard config directory; added the option to load textures from the custom resource pack - MinecraftForge/FML@91338433fa74e782e237643632de2cc5e17ee280 Add classloader exclusion for ASM - MinecraftForge/FML@7c10b93a2ded2799d41b73b67a2766c31e992d8a Synchronize the available libraries. Turns out we've been forcing a newer apache commons-lang(3.2.1) for a long time, also sync the dev guava - we've been forcing 17 for a long time too. Bumping commons-lang to 3.3.2 since that's what Mojang are shipping with 1.8. It has no observable ill effects Closes MinecraftForge/FML#651 - MinecraftForge/FML@8ccfa24764a3f4854f5334c0da1224286175e13b Merge pull request MinecraftForge/FML#650 from luacs1998/1.7.10 - MinecraftForge/FML@b2650a0bdb7d69010a55de518e76591a6c417e87 Optifine can tell us when they're ready for the new splash screen. - MinecraftForge/FML@02a5a58a1cbb25cd3baecf1535950e4780b7810f Fix the ordering of the messages, so they make sense now. - MinecraftForge/FML@dda431353953457608c38aacb060ef82ddc88883 Revert "Merge pull request MinecraftForge/FML#650 from luacs1998/1.7.10" This undoes the seriously broken change from Sponge to support Mixins, that breaks a wide variety of coremods. Given the widespread incompatibility it introduces, it won't be re-added at 1.7.10. - MinecraftForge/FML@5dbb481732bf4bcf8b0c5c02806051a933e6587e Eliminated texture name allocation race condition - MinecraftForge/FML@450b82ca0e13cf889a42eeb198b67115a4851031 Updated default forge logo to animated gif; reverted config folder resolution to Minecraft class due to Loader not being initialized at the point it's needed - cpw: MinecraftForge/FML@0b84b6aa297bdf6ab9f010e340f286442cb242dc Expose the state of the loader - cpw: - Attempt to fix the slow loading problem. Instead of forcing the main thread to wait around - on every call to processWindowMessages, we will simply skip it, if the mutex is already - claimed by the display thread. This should fix slow loading issues seen by some with - the new loading screen. - cpw: Hardcode the FML version in-game as a specific value. - cpw: Strip control codes in progress bar messages. They cause crashes sometimes. - cpw: - Clean up transformers a bit. Can't use COMPUTE_FRAMES even though it's required - the game refuses to even - run if I do. Note for j8: when we force Java8 classes, all coremods will need a thorough overhaul - the - current way we do things is not sustainable when Java8 becomes the universal norm. - cpw: - Add in an ItemStackHolder - a way to inject ItemStacks without having to have complex lookup code everywhere. - - Example: https://gist.github.com/cpw/9af398451a20459ac263 - cpw: Bump minor version # to 2 because of the fluid changes (mirroring what happening in 1.7.10) - -Build 1.7.10-10.13.3.1420-1.7.10: - cpw: - Add in an ItemStackHolder - a way to inject ItemStacks without having to have complex lookup code everywhere. - - Example: https://gist.github.com/cpw/9af398451a20459ac263 - -Build 1.8-11.14.1.1419: - LexManos: Fixed damage reduction rate of vanilla armor incorrectly scaling with armor's current durability. - -Build 1.8-11.14.1.1418: - AlgorithmX2: Fix Partial Face Lighting on Top/Bottom Faces ; Vanilla MC-80148 - -Build 1.8-11.14.1.1417: - LexManos: Force netty downgrade on dedicated server to match client. Netty bug: https://github.com/netty/netty/issues/2302 Closes #1848 - -Build 1.8-11.14.1.1416: - LexManos: Fixed command exploit with C12 - -Build 1.8-11.14.1.1415: - LexManos: Fixes MC-75630 - Exploit with signs and command blocks - -Build 1.8-11.14.1.1414: - LexManos: Finish loading screen before going fullscreen. Closes MinecraftForge/FML#662 - -Build 1.8-11.14.1.1413: - LexManos: Loosen up ServerChatEvent to support IChatComponent Closes #1893 - LexManos: Cleanup a lot of spammy output. Everything hidden behind environment flags now. Scale anvil image down 50% - LexManos: Attempt to disable the new splash screen if there are errors detected finishing up. Print a slightly more helpful error message. - -Build 1.8-11.14.1.1412: - me: Add true support for unicode fonts - -Build 1.8-11.14.1.1411: - diesieben07: Fix crash when texture loading throws RuntimeException without message - -Build 1.8-11.14.1.1410: - xxt1g3lxx.xxt1g3lxx: Changed forge command tab completion to use getListOfStringsMatchingLastWord() - -Build 1.8-11.14.1.1409: - xxt1g3lxx.xxt1g3lxx: Added tab completion - -Build 1.7.10-10.13.3.1408-1.7.10: - cpw: Strip control codes in progress bar messages. They cause crashes sometimes. - cpw: - Clean up transformers a bit. Can't use COMPUTE_FRAMES even though it's required - the game refuses to even - run if I do. Note for j8: when we force Java8 classes, all coremods will need a thorough overhaul - the - current way we do things is not sustainable when Java8 becomes the universal norm. - -Build 1.7.10-10.13.3.1407-1.7.10: - cpw: Hardcode the FML version in-game as a specific value. - -Build 1.7.10-10.13.3.1406-1.7.10: - cpw: Merged FML into Forge's repo. FML is no longer developed seperatly. - -Build 1.8-11.14.1.1405: - cpw: Merged FML into Forge's repo. FML is no longer developed seperatly. - -Build 1.8-11.14.1.1404: - tmtravlrsmail: - Initialized the Nether Fortress chest loot - - Forced the nether fortress chest loot to initialize in ChestGenHooks - like the other types. - - Changed tabs to spaces. Silly Eclipse. - -Build 1.7.10-10.13.3.1403-1.7.10: - fry: - Updated FML: - MinecraftForge/FML@2ed00c4da0ee76eb15e28eb8ee2c07a3096155c2 Splash progress screen will not load in the presence of optifine anymore. - MinecraftForge/FML@adcf2247c69f68415033a3c0b2c527053733514c Loading screen: moved config file to the standard config directory; added the option to load textures from the custom resource pack - MinecraftForge/FML@91338433fa74e782e237643632de2cc5e17ee280 Add classloader exclusion for ASM - MinecraftForge/FML@7c10b93a2ded2799d41b73b67a2766c31e992d8a Synchronize the available libraries. Turns out we've been forcing a newer apache commons-lang(3.2.1) for a long time, also sync the dev guava - we've been forcing 17 for a long time too. Bumping commons-lang to 3.3.2 since that's what Mojang are shipping with 1.8. It has no observable ill effects Closes MinecraftForge/FML#651 - MinecraftForge/FML@8ccfa24764a3f4854f5334c0da1224286175e13b Merge pull request MinecraftForge/FML#650 from luacs1998/1.7.10 - MinecraftForge/FML@b2650a0bdb7d69010a55de518e76591a6c417e87 Optifine can tell us when they're ready for the new splash screen. - MinecraftForge/FML@02a5a58a1cbb25cd3baecf1535950e4780b7810f Fix the ordering of the messages, so they make sense now. - MinecraftForge/FML@dda431353953457608c38aacb060ef82ddc88883 Revert "Merge pull request MinecraftForge/FML#650 from luacs1998/1.7.10" This undoes the seriously broken change from Sponge to support Mixins, that breaks a wide variety of coremods. Given the widespread incompatibility it introduces, it won't be re-added at 1.7.10. - MinecraftForge/FML@5dbb481732bf4bcf8b0c5c02806051a933e6587e Eliminated texture name allocation race condition - MinecraftForge/FML@450b82ca0e13cf889a42eeb198b67115a4851031 Updated default forge logo to animated gif; reverted config folder resolution to Minecraft class due to Loader not being initialized at the point it's needed - cpw: MinecraftForge/FML@0b84b6aa297bdf6ab9f010e340f286442cb242dc Expose the state of the loader - -Build 1.8-11.14.1.1402: - silfadur: Added hook for IPerspectiveAwareModel in RenderItem.renderItemIntoGUI for ItemCameraTransforms.TransformType.GUI - -Build 1.7.10-10.13.3.1401-1710ls: - fry: - Updated FML: - MinecraftForge/FML@2ed00c4da0ee76eb15e28eb8ee2c07a3096155c2 Splash progress screen will not load in the presence of optifine anymore. - MinecraftForge/FML@adcf2247c69f68415033a3c0b2c527053733514c Loading screen: moved config file to the standard config directory; added the option to load textures from the custom resource pack - MinecraftForge/FML@91338433fa74e782e237643632de2cc5e17ee280 Add classloader exclusion for ASM - MinecraftForge/FML@7c10b93a2ded2799d41b73b67a2766c31e992d8a Synchronize the available libraries. Turns out we've been forcing a newer apache commons-lang(3.2.1) for a long time, also sync the dev guava - we've been forcing 17 for a long time too. Bumping commons-lang to 3.3.2 since that's what Mojang are shipping with 1.8. It has no observable ill effects Closes MinecraftForge/FML#651 - MinecraftForge/FML@8ccfa24764a3f4854f5334c0da1224286175e13b Merge pull request MinecraftForge/FML#650 from luacs1998/1.7.10 - MinecraftForge/FML@b2650a0bdb7d69010a55de518e76591a6c417e87 Optifine can tell us when they're ready for the new splash screen. - MinecraftForge/FML@02a5a58a1cbb25cd3baecf1535950e4780b7810f Fix the ordering of the messages, so they make sense now. - MinecraftForge/FML@dda431353953457608c38aacb060ef82ddc88883 Revert "Merge pull request MinecraftForge/FML#650 from luacs1998/1.7.10" This undoes the seriously broken change from Sponge to support Mixins, that breaks a wide variety of coremods. Given the widespread incompatibility it introduces, it won't be re-added at 1.7.10. - MinecraftForge/FML@5dbb481732bf4bcf8b0c5c02806051a933e6587e Eliminated texture name allocation race condition - MinecraftForge/FML@450b82ca0e13cf889a42eeb198b67115a4851031 Updated default forge logo to animated gif; reverted config folder resolution to Minecraft class due to Loader not being initialized at the point it's needed - -Build 1.7.10-10.13.3.1400-1.7.10: - cpw: MinecraftForge/FML@dda431353953457608c38aacb060ef82ddc88883 Revert "Merge pull request #650 from luacs1998/1.7.10" This undoes the seriously broken change from Sponge to support Mixins, that breaks a wide variety of coremods. Given the widespread incompatibility it introduces, it won't be re-added at 1.7.10. - -Build 1.7.10-10.13.3.1399-1.7.10: - cpw: - MinecraftForge/FML@a39482c4b7ac2883f821619b47ff31e0b6e74b29 Splash screen implementation - MinecraftForge/FML@01fea095cdcd80c2ae9f0ebfd1c72242b3f2dbf8 Merge branch '1.7.10-load-progress' of github.com:RainWarrior/FML into 1.7.10 - MinecraftForge/FML@364b4bbbb0d4d168f9a63fa62a09e4e2fa213039 Call some loader stuffs - MinecraftForge/FML@61a891280d15f9f17e28bf86a427f32de5a8983e Make sure to close the splash screen if there's gonna be an error display - fry: - MinecraftForge/FML@5785a9c9e8d76b91a03ed1f9791aeee1cb7ea00b Fix up multiple injections of cmdline files via versionspecificmoddir. Closes #645 - MinecraftForge/FML@bd117be9c3e3919f3c29538cde80e3eb8fa48368 Correctly track exceptions thrown in the loading screen rendering thread - cpw: - MinecraftForge/FML@36688e781aae67fb1e4e7047acf689edeeac7ddb Add in resource reloading to the bar. Tidy up some of the labels a bit. - MinecraftForge/FML@a1dc465a55612ecdd44e6cde3adc0f1d53c6d97b More progress bar action! - MinecraftForge/FML@bfcbf4ef4366fd3d8bfd20adafb63a857bb0dd53 More progress bar hooks - MinecraftForge/FML@a6670c415ee97e771020921e00773c4c15e7512e Thread errors should be correctly displayed in the crash report now - MinecraftForge/FML@9a16d26186d27029cae32a19c09ddf48f7cba22e fixed bar text positioning - MinecraftForge/FML@0059c630281b7105c0532d2dba1bec27cf0323b2 Track mipmaps and texture upload - MinecraftForge/FML@ef5f809752e87e369235e98a63027e9347185cd9 Fix broken log message in vanilla. - cpw: - MinecraftForge/FML@4fe7b469b5ba156d4a786cd9e105b18cca7c271a Loading screen: logo rotation is now optional; initial support for animated textures - animation rate is fixed for now. - MinecraftForge/FML@31ae43590a2ba771d69b6c6513bcd5fe87ae8f8f Fix trying to close the screen during error. - cpw: MinecraftForge/FML@94821fac98e64d9b8ad7434ed23a621850a8e11c Add a config file that lets you add additional soft dependencies at runtime - injectedDependencies.json - cpw: MinecraftForge/FML@2ed00c4da0ee76eb15e28eb8ee2c07a3096155c2 Splash progress screen will not load in the presence of optifine anymore. - -Build 1.8-11.14.1.1398: - Zaggy1024: Fixed a bug which caused the light level not to update when a block implements Block.getLightValue(IBlockAccess, BlockPos) to change the light value for different block states. - -Build 1.8-11.14.1.1397: - Parker Young: Fixes MC-52974: Host's skin doesn't load in LAN - -Build 1.8-11.14.1.1396: - Zaggy1024: Removed @SideOnly(Side.CLIENT) from EnumWorldBlockLayer. - -Build 1.7.10-10.13.3.1395-1710ls: - cpw: MinecraftForge/FML@94821fac98e64d9b8ad7434ed23a621850a8e11c Add a config file that lets you add additional soft dependencies at runtime - injectedDependencies.json - -Build 1.7.10-10.13.3.1394-1710ls: - cpw: - MinecraftForge/FML@4fe7b469b5ba156d4a786cd9e105b18cca7c271a Loading screen: logo rotation is now optional; initial support for animated textures - animation rate is fixed for now. - MinecraftForge/FML@31ae43590a2ba771d69b6c6513bcd5fe87ae8f8f Fix trying to close the screen during error. - -Build 1.7.10-10.13.3.1393-1710ls: - cpw: - MinecraftForge/FML@36688e781aae67fb1e4e7047acf689edeeac7ddb Add in resource reloading to the bar. Tidy up some of the labels a bit. - MinecraftForge/FML@a1dc465a55612ecdd44e6cde3adc0f1d53c6d97b More progress bar action! - MinecraftForge/FML@bfcbf4ef4366fd3d8bfd20adafb63a857bb0dd53 More progress bar hooks - MinecraftForge/FML@a6670c415ee97e771020921e00773c4c15e7512e Thread errors should be correctly displayed in the crash report now - MinecraftForge/FML@9a16d26186d27029cae32a19c09ddf48f7cba22e fixed bar text positioning - MinecraftForge/FML@0059c630281b7105c0532d2dba1bec27cf0323b2 Track mipmaps and texture upload - MinecraftForge/FML@ef5f809752e87e369235e98a63027e9347185cd9 Fix broken log message in vanilla. - -Build 1.8-11.14.1.1392: - LexManos: Cleanup RenderEntityItem patch, fixes Z-fighting issue in EntityItems. Closes #1824 - -Build 1.7.10-10.13.3.1391-1710ls: - fry: - MinecraftForge/FML@5785a9c9e8d76b91a03ed1f9791aeee1cb7ea00b Fix up multiple injections of cmdline files via versionspecificmoddir. Closes #645 - MinecraftForge/FML@bd117be9c3e3919f3c29538cde80e3eb8fa48368 Correctly track exceptions thrown in the loading screen rendering thread - -Build 1.8-11.14.1.1390: - jadran.kotnik: - Extracted the creation of RegionRenderCache into a method. - Classes extending RegionRenderCache can change the behavior of the cache, allowing to visually change blocks (schematics etc). - -Build 1.7.10-10.13.3.1388-1.7.10: - cpw: MinecraftForge/FML@d14d1a8fea4c9242c944079ab8e4cdd516dfce4c Update to use the inherited jar format. Simplifies a lot.. - -Build 1.7.10-10.13.3.1385-1.7.10: - cpw: - Expose the fluid that a block was constructed with, useful for 'non-default' - configuration of fluidblocks. Shouldn't be used outside of this purpose. - -Build 1.7.10-10.13.3.1384-1.7.10: - cpw: Replace the OLD fluid in the fluidID map, not the new one.. - -Build 1.7.10-10.13.3.1383-1.7.10: - cpw: Fix static initializer derp. - -Build 1.7.10-10.13.3.1382-1.7.10: - cpw: Make FluidStack hold a delegate for the fluid. This can then float based on what is "live" at present. - -Build 1.7.10-10.13.3.1381-1.7.10: - cpw: - Reformat ItemArmor$ArmorMaterial.getBaseItem to use an if/then/else structure. The switch - causes the generation of an internal class which may derp custom armor addition. - Closes #1799 - -Build 1.7.10-10.13.3.1380-1.7.10: - cpw: Actually use the override constraint in ticket requests. Closes #1802 - -Build 1.7.10-10.13.3.1379-1.7.10: - cpw: Change logging to avoid the String.format bug. Closes #1809 - -Build 1.7.10-10.13.3.1378-1.7.10: - cpw: MinecraftForge/FML@8f9e3a7e30c8cc436dcb8d94b18b4634e0376339 Exceptions during construction phase should not propogate and cause an immediate crash. Closes #638 - -Build 1.7.10-10.13.3.1377-1.7.10: - cpw: Verify that the fluid registry doesn't contain "junk" fluids thru reflection. - -Build 1.7.10-10.13.3.1376-1.7.10: - cpw: - Fixed NBTSizeTracker missing a lot of data being read. Also made new NBT object allocation claim 32-bits in the size tracker. - - (cherry picked from commit de066a86da281d381b0e3ab9e83682720327049c) - - Conflicts: - patches/minecraft/net/minecraft/nbt/CompressedStreamTools.java.patch - patches/minecraft/net/minecraft/nbt/NBTTagList.java.patch - -Build 1.8-11.14.1.1375: - LexManos: Fixed NBTSizeTracker missing a lot of data being read. Also made new NBT object allocation claim 32-bits in the size tracker. - -Build 1.7.10-10.13.3.1374-1.7.10: - kinglemming: - Adds some new Ore querying functionality. - - Also attempts to size initial Hashmaps in a logical manner. - - Signed-off-by: King Lemming - -Build 1.7.10-10.13.3.1373-1.7.10: - LexManos: - Revert KL's change, requesting a ore WILL register it. - - Registering like this and returning a new empty list allows for modders to register their recipes and such without requiring to be executed after someone actually adds an item. If handled properly this allows for more flexible load orders, and more responsive code. - -Build 1.7.10-10.13.3.1372-1.7.10: - kinglemming: - Adjusts OreDictionary to prevent invalid registrations. - Getting Ore Names for a non-existent ore will no longer automatically add that Name to the list nor generate an ID. - - Tweaks a warning message in the FluidContainerRegistry. No functionality change. - - Signed-off-by: King Lemming - -Build 1.8-11.14.1.1371: - cpw: - MinecraftForge/FML@888e489394e52abdfb349fbfbd7f8e153b5af124 Allow registering custom language adapters. - MinecraftForge/FML@906f94ca143f756f40404fde38af32b2481d0673 Some tidyup of the PR - MinecraftForge/FML@1c025f18433df868859022eea8e6d198444736de Patch TracingPrintStream to handle Kotlin IO. - -Build 1.7.10-10.13.3.1370-1.7.10: - cpw: - MinecraftForge/FML@dfce4cd8d023a546c4c21405db182b8ddcd38633 Allow registering custom language adapters. - MinecraftForge/FML@9fecd72cf0bd483ae7bc2ce821ae6b2f5e5b9c65 Some tidyup of the PR - MinecraftForge/FML@10ac2a4fd972e923a60d23d10e8f297b8584f565 Fix itemCtorArgs javadoc in registerBlock - MinecraftForge/FML@86f70d37a40bbeaf7c389a14adcd8311ba5584df Patch TracingPrintStream to handle Kotlin IO. - -Build 1.7.10-10.13.3.1369-1.7.10: - cpw: And handle the null case in the constructor itself. Closes #1794 (again) - -Build 1.7.10-10.13.3.1368-1.7.10: - cpw: Fix NPE - Closes #1794 - -Build 1.7.10-10.13.3.1367-1.7.10: - cpw: - Fluids are now tracked internally by mod. This allows for the server and the world to specify a "default" - in the case of a possible alternative fluid implementation. If you always called registerFluid, things - should work pretty seamlessly, but if you didn't (gating with an isFluidRegistered check for example) - you should change to register anyway. This way, even if you're not default in the overall instance, you may - become default if you're the only mod present on a server, for example, or in a world save. - - This should radically decrease the mixups caused by mod load ordering problems, and other issues around fluid - tracking. - -Build 1.7.10-10.13.3.1366-1.7.10: - cpw: MinecraftForge/FML@0da1263ff9ede99267c03728a1c823b8056d5e44 Enhance error output for bad textures a bit more and try and capture more types of error.. - -Build 1.7.10-10.13.3.1365-1.7.10: - cpw: MinecraftForge/FML@be5ec06e3144d55a03d125f3ce364eade3771f4f Cleaning up the missing resource stack spam, and condensing the information into a usefully understandable format. - -Build 1.7.10-10.13.3.1364-1.7.10: - cpw: - MinecraftForge/FML@ce791cb1f2cf983ef77b1e5c4028ddefab394062 Rework EventSubscriptionTransformer to bake @Cancelable and @HasResult values, should increase EventBus performance even more by removing logic from Event constructors. - MinecraftForge/FML@852710962a9b6d7c8e2ca188c715eebb2da44c2a Clean up some dead code - -Build 1.7.10-10.13.3.1363-1.7.10: - kinglemming: - Adds a warning to the FluidContainerRegistry when a mod does something stupid! Also denies the registration. - - Signed-off-by: King Lemming - -Build 1.7.10-10.13.3.1362-1.7.10: - kinglemming: - Fixes FluidContainerRegistry properly - no more corner case where client/server mods disagree. - - Also clarifies the 2x Fluid registration error message somewhat. - - Signed-off-by: King Lemming - -Build 1.8-11.14.1.1361: - LexManos: MinecraftForge/FML@4a753227adb805d29f3bf245c3f8427193c35544 Rework EventSubscriptionTransformer to bake @Cancelable and @HasResult values, should increase EventBus performance even more by removing logic from Event constructors. - -Build 1.7.10-10.13.3.1360-1.7.10: - kinglemming: - Fixes #1782 - - Signed-off-by: King Lemming - -Build 1.8-11.14.1.1359: - Abrar Syed: changed run configs to GradleStarts - -Build 1.7.10-10.13.3.1358-1.7.10: - me: - Fix FluidRegsitry.registerFluid - - FluidRegistry: - ```java - static BiMap fluids = HashBiMap.create(); - static BiMap fluidIDs = HashBiMap.create(); - ... - public static boolean registerFluid(Fluid fluid) - { - if (fluidIDs.containsKey(fluid.getName())) - ^^^^^^^ - ``` - There is definitely should be fluids instead fluidIDs. This mistake broke many mods. - -Build 1.8-11.14.1.1357: - LexManos: - Updated FML: - MinecraftForge/FML@c8160311d580f2dfccdf796a5243e16844787cb6 Stop IllegalFormatConversionException thrown if @Mod has flagged client-only or server-only - MinecraftForge/FML@9a894952afb526436649f608f7af5992b97f044c Merge pull request #627 from GotoLink/patch-1 - MinecraftForge/FML@40faac64520d1a197f08eaa9a0f850e7df43359a Remove J7 only constructor in EnhancedRuntimeException, J6 compiling compatibility restored. - -Build 1.7.10-10.13.3.1356-1.7.10: - LexManos: MinecraftForge/FML@31cf2a9cab6d1977d31436220d9612eaa13d4e0f Remove J7 only constructor in EnhancedRuntimeException, J6 compiling compatibility restored. - LexManos: Restore binary compatibility issues in FluidRegistry caused by recent changes. - -Build 1.7.10-10.13.3.1355-1.7.10: - cpw: - Removed fluidID from ItemStack. - - This fixes a rather huge issue where FluidStacks on the client could be desynced if a modder was unaware of it. - - This is a breaking change but can be mitigated with a transformer to the getter getFluidID(). - - Signed-off-by: King Lemming - cpw: Add in a fluidid transformer - cpw: Fix formatting - cpw: - Allow for duplicate Fluid Blocks. It's annoying to be sure but just as with the OreDictionary, we'll have to handle it. - - Signed-off-by: King Lemming - cpw: - You shouldn't be creating FluidStacks from unregistered Fluids. Warn clearly on failed registrations, and make a useful log message for failed fluidstack - creations. Should help a lot with tracking down broken mods that are doing this wrongly. - -Build 1.8-11.14.1.1354: - ohai.iChun: Readded but deprecated the old RenderPlayerEvent that were deleted. Sorry, Lex. - -Build 1.8-11.14.1.1353: - ohai.iChun: - Reimplement RenderPlayerEvent that was removed in the port to 1.8 from 1.7.10. - RenderPlayerEvent.Specials was removed because the special effects are done in the LayerRenderer now. - -Build 1.7.10-10.13.2.1352-1.7.10: - cpw: - Forge really should have always supported the concept of an "exact spawn". Individual world providers can still - change this behaviour of course, but for default maps it makes sense to support it as a config option. - -Build 1.7.10-10.13.2.1351-1.7.10: - cpw: - MinecraftForge/FML@12ccf9cf49b76140841cdc5a459422ae4781de1a Rather than try to fall back to the backup level.dat in case of weirdness in the ID map, just fail hard. There is probably a serious modder derp in this case and there's nothing FML can do to recover the situation except avoid making it worse. - MinecraftForge/FML@e8cd368da30661ed2898fff232e2db787edcbdcc It's an IllegalState not an IllegalArgument *sigh* - MinecraftForge/FML@2be9c743424c92f8799a6af1d59d60edd65e6bf0 And fix itemblocks being removed, leaving behind a residual block. This is a legitimate action - use the missing mapping event to let the mod tell us about it - MinecraftForge/FML@7d8804cf656081d1570068f52e9bfc7140b21a65 You can't setAction to BLOCKONLY - MinecraftForge/FML@c73861efe67594ee9995bc93744cab06bd6647d1 Cherry-pick 01aaa7dc97480b381ca0d192ec65016d7baeb747 Fix mods defined via --mods or --modListFile launch args not being searched for coremods. #560 - MinecraftForge/FML@94c45b48c1265e7c4f60f591d413fa545787d354 Fix json cache crash, handle the file much more cleanly. Probably an MC JIRA since it's a vanilla bug. Closes #619 - -Build 1.8-11.14.1.1350: - LexManos: - Updated FML: - MinecraftForge/FML@1de3bf733aef754f15de55006b1750376871feb0 Fix FML's package for net.miencraftforge on maven. Fixes uploading of new builds. Note: 1.7.10 builds are bug fixes only while FML/Forge for 1.8 stabelizes. - MinecraftForge/FML@05ecefb53857ecc1dc52d4a577ed593c26da9659 Update to ASM5 for Java 8 support - MinecraftForge/FML@1112c455b9758c38eab385f48578bad17c0180f9 Merge pull request #595 from Grinch/master - LexManos: Fixed potential NPEs in Structure code caused by componenets not being able to load. - cpw: - MinecraftForge/FML@6b0ae369eb9b8cf89eb9d53fe997a6e5ef222093 Try and improve performance of the registry by avoiding superType.cast. - MinecraftForge/FML@dfebcafd49550b8c3f90c6c028ef0d7f3a13e607 Something I meant to add a long time ago, but it got overlooked. My apologies. Presend the (int) dimension ID in the serverhello packet. This should be 100% backward compatible with existing servers but bumping a server to this version will allow clients with this version as well to now login in dimensions outside the byte range. Probably fixes a bunch of mods that add dimensions. - MinecraftForge/FML@6011419fa055c1375d05189f9bf0d86705c9c0ec Clean up my patch. Terrible person I am.. - MinecraftForge/FML@c6bbd0e82de3d8f7993d70aa7be3f883b3afbc47 Forgot that I need a noarg ctor. I'm so rusty. - MinecraftForge/FML@6edc1635de163c41b6b5dfe02bee13d6a9c5aa4d Need to load the dimension from disk - do it without filling out the player so that the normal player loading (including events) works properly - cpw: - MinecraftForge/FML@4ca6f6e19f3c3147fcf48c58669f55478a9a1345 What a dumb oversight. One needs to copy the active substitution set to the active gamedata. Doesn't work well otherwise. - MinecraftForge/FML@6f6cec96be73b4c94999cf60dc00741f3f3c2cc2 Substitutions need to be activated when they're registered, otherwise they won't appear in world, ever. - MinecraftForge/FML@13ac015f0c36b8e2091ae332c556be315429f4c8 Change iterator behaviour for the registry - include substitutions in the standard iterator, so that vanilla MC methods visit them (so they can get textures etc). The fml special one only visits the absolute set, used mostly for sanity checking and serialization. - LexManos: - MinecraftForge/FML@24cb4a42c4e4bddde95c0e49d1f8b8bcc20c626d Enhance output of common FML errors in crash reports and server GUI. - Force load anonymous minecraft classes used in crash reports. This prevents some crashes being hiddedn behind class definiton exceptions. - cpw: Experimental "fix" for the weird rendering in the Acheivements screen. Thanks skyboy for spotting this. - cpw: - Comment on previous commit fix - it worked. Thanks to skyboy and tterrag for investigating and verifying. - A chest as an acheivement icon will recreate the original problem, for note. - cpw: - Update FML - merge the 1.7.10 changes in to forge @ 1.8. Wow git is (sorta) AWESOME! - - MinecraftForge/FML@6b0ae369eb9b8cf89eb9d53fe997a6e5ef222093 Try and improve performance of the registry by avoiding superType.cast. - MinecraftForge/FML@dfebcafd49550b8c3f90c6c028ef0d7f3a13e607 Something I meant to add a long time ago, but it got overlooked. My apologies. Presend the (int) dimension ID in the serverhello packet. This should be 100% backward compatible with existing servers but bumping a server to this version will allow clients with this version as well to now login in dimensions outside the byte range. Probably fixes a bunch of mods that add dimensions. - MinecraftForge/FML@6011419fa055c1375d05189f9bf0d86705c9c0ec Clean up my patch. Terrible person I am.. - MinecraftForge/FML@c6bbd0e82de3d8f7993d70aa7be3f883b3afbc47 Forgot that I need a noarg ctor. I'm so rusty. - MinecraftForge/FML@6edc1635de163c41b6b5dfe02bee13d6a9c5aa4d Need to load the dimension from disk - do it without filling out the player so that the normal player loading (including events) works properly - MinecraftForge/FML@4ca6f6e19f3c3147fcf48c58669f55478a9a1345 What a dumb oversight. One needs to copy the active substitution set to the active gamedata. Doesn't work well otherwise. - MinecraftForge/FML@6f6cec96be73b4c94999cf60dc00741f3f3c2cc2 Substitutions need to be activated when they're registered, otherwise they won't appear in world, ever. - MinecraftForge/FML@13ac015f0c36b8e2091ae332c556be315429f4c8 Change iterator behaviour for the registry - include substitutions in the standard iterator, so that vanilla MC methods visit them (so they can get textures etc). The fml special one only visits the absolute set, used mostly for sanity checking and serialization. - MinecraftForge/FML@24cb4a42c4e4bddde95c0e49d1f8b8bcc20c626d Enhance output of common FML errors in crash reports and server GUI. - MinecraftForge/FML@12ccf9cf49b76140841cdc5a459422ae4781de1a Rather than try to fall back to the backup level.dat in case of weirdness in the ID map, just fail hard. There is probably a serious modder derp in this case and there's nothing FML can do to recover the situation except avoid making it worse. - MinecraftForge/FML@e8cd368da30661ed2898fff232e2db787edcbdcc It's an IllegalState not an IllegalArgument *sigh* - MinecraftForge/FML@2be9c743424c92f8799a6af1d59d60edd65e6bf0 And fix itemblocks being removed, leaving behind a residual block. This is a legitimate action - use the missing mapping event to let the mod tell us about it - MinecraftForge/FML@7d8804cf656081d1570068f52e9bfc7140b21a65 You can't setAction to BLOCKONLY - MinecraftForge/FML@13df640d9d4516219b07778edd76efd2643019f6 Pull in a lot of the FML tweaks from 1.7 to 1.8 - MinecraftForge/FML@447beaa99ec828fb83796185d07c72ea28b056c9 Merge remote-tracking branch 'origin/1.7.10' - -Build 1.8-11.14.1.1349: - cpw: - MinecraftForge/FML@2afd55ab825fad3b07073c474cdb96b348701084 Fix scala mods, Closes #621 - MinecraftForge/FML@c541b08ef68161f437eeb7b22eabe27b20eebf55 Merge pull request #622 from diesieben07/scala-fix - MinecraftForge/FML@d5021417dd10f36dc3d1b68e4975eb91f7f46e68 Forgot the register handling bit. Registration should work now.. - MinecraftForge/FML@5a65c6568699acaade8243040d8552b1f2e2e28f OK, this is finally actually working, I think... - -Build 1.8-11.14.1.1348: - fry: Fixed mipmapping not being enabled by expanding 1x1 texture - -Build 1.7.10-10.13.2.1347-1.7.10: - cpw: - Comment on previous commit fix - it worked. Thanks to skyboy and tterrag for investigating and verifying. - A chest as an acheivement icon will recreate the original problem, for note. - -Build 1.7.10-10.13.2.1346-1.7.10: - cpw: Experimental "fix" for the weird rendering in the Acheivements screen. Thanks skyboy for spotting this. - -Build 1.8-11.14.1.1344: - LexManos: - Updated FML: - MinecraftForge/FML@2a268cd5664b6562a4bf2a953a6a93fd8e111bd2 Improve mod list GUI, add sort and search - MinecraftForge/FML@951fc2d9fd7e7970c86accb1be095a24f7bfaf18 First attempt at making FMLControlledRegistry something a bit more generic than just blocks/items. - MinecraftForge/FML@410582222d9ba15d42dc47db0d3d6a84aeac2d22 Merge pull request #614 from tterrag1098/betterModList - MinecraftForge/FML@ba0b176430cdbc3573643a6e21d47013cfd1f0e0 Fix ModDiscoverer ignoring inner classes. - MinecraftForge/FML@9cc313eab9939724786f833f511a87c9957dbc72 Merge pull request #617 from diesieben07/innerclass-disc - MinecraftForge/FML@01aaa7dc97480b381ca0d192ec65016d7baeb747 Fix mods defined via --mods or --modListFile launch args not being searched for coremods. #560 - MinecraftForge/FML@8cecc47b85db68e8e69f45641b1d843509dbe71d Merge pull request #620 from killjoy1221/extra-coremod-fix - MinecraftForge/FML@38d9a5f444815810dec3607f5b3b7ff1ac513d4c Enhance output of common FML errors in crash reports and server - - Force load anonymous minecraft classes used in crash reports. This prevents some crashes being hiddedn behind class definiton exceptions.GUI. - -Build 1.7.10-10.13.2.1343-1.7.10: - LexManos: - MinecraftForge/FML@24cb4a42c4e4bddde95c0e49d1f8b8bcc20c626d Enhance output of common FML errors in crash reports and server GUI. - Force load anonymous minecraft classes used in crash reports. This prevents some crashes being hiddedn behind class definiton exceptions. - -Build 1.7.10-10.13.2.1342-1.7.10: - cpw: - MinecraftForge/FML@4ca6f6e19f3c3147fcf48c58669f55478a9a1345 What a dumb oversight. One needs to copy the active substitution set to the active gamedata. Doesn't work well otherwise. - MinecraftForge/FML@6f6cec96be73b4c94999cf60dc00741f3f3c2cc2 Substitutions need to be activated when they're registered, otherwise they won't appear in world, ever. - MinecraftForge/FML@13ac015f0c36b8e2091ae332c556be315429f4c8 Change iterator behaviour for the registry - include substitutions in the standard iterator, so that vanilla MC methods visit them (so they can get textures etc). The fml special one only visits the absolute set, used mostly for sanity checking and serialization. - -Build 1.8-11.14.1.1341: - simonbarnes1: - Add getTileData() to TileEntity - - - The same idea as Entity.getEntityData() - -Build 1.7.10-10.13.2.1340-1.7.10: - cpw: - MinecraftForge/FML@6b0ae369eb9b8cf89eb9d53fe997a6e5ef222093 Try and improve performance of the registry by avoiding superType.cast. - MinecraftForge/FML@dfebcafd49550b8c3f90c6c028ef0d7f3a13e607 Something I meant to add a long time ago, but it got overlooked. My apologies. Presend the (int) dimension ID in the serverhello packet. This should be 100% backward compatible with existing servers but bumping a server to this version will allow clients with this version as well to now login in dimensions outside the byte range. Probably fixes a bunch of mods that add dimensions. - MinecraftForge/FML@6011419fa055c1375d05189f9bf0d86705c9c0ec Clean up my patch. Terrible person I am.. - MinecraftForge/FML@c6bbd0e82de3d8f7993d70aa7be3f883b3afbc47 Forgot that I need a noarg ctor. I'm so rusty. - MinecraftForge/FML@6edc1635de163c41b6b5dfe02bee13d6a9c5aa4d Need to load the dimension from disk - do it without filling out the player so that the normal player loading (including events) works properly - -Build 1.8-11.14.1.1339: - erlend: Added newVolume and newPitch to PlaySoundAtEntityEvent. Deprecated ForgeEventFactory.onPlaySoundAt, added replacement ForgeEventFactory.onPlaySoundAtEntity. - -Build 1.8-11.14.1.1338: - Geforce132: -Added EntityMountEvent. - -Build 1.8-11.14.1.1337: - diesieben07: Fix jukebox message being too low with forge - -Build 1.8-11.14.1.1336: - LexManos: - Updated FML: - MinecraftForge/FML@3e7ae47f8f5d642b256adbe8b3395bb40daf85da Fix Event Bus Access Issues - MinecraftForge/FML@c8e2a5f377ddf8a35cceda6a14697dbe8cad4ca8 Fixed WorldInfo properties not loaded - MinecraftForge/FML@7f96b2c69ab8a2ed07b5b786b3d679ea4c509121 Fix Debug packet logger on local memory connections. - -Build 1.8-11.14.1.1335: - robin: remove translation and add a note for contributors - -Build 1.8-11.14.1.1334: - erju01: Fixed enchanting table applying secondary enchs. - -Build 1.8-11.14.1.1333: - mnmiller1: Add NeighborNotiftyEvent. - -Build 1.8-11.14.1.1332: - tmtravlrsmail: - Added Nether Fortress chest to the ChestGenHooks - - I tried to follow the directions on - - https://github.com/MinecraftForge/MinecraftForge/wiki/If-you-want-to-contribute-to-Forge - - as best as I could. =) - - If anything is wrong, let me know and I'll change it! - clienthax: - Current spawner implementation checks the EntitySpawnPlacementRegistry hashmap to check where a entity should spawn - as there is no way to modify this without the use of reflection or a AT, you can not specify where you want your entity to spawn - adding this helper method will allow developers to specify where they want their entity to spawn. - - Signed-off-by: Clienthax - - Update EntitySpawnPlacementRegistry.java.patch - LexManos: Fix compile error in ClientHax's PR. - -Build 1.8-11.14.1.1329: - fry: Hopefully fix NPE during baking of empty vanilla item models - -Build 1.8-11.14.1.1328: - LexManos: Fire WorldEvent.Load for Client worlds. Closes #1719 - -Build 1.8-11.14.1.1327: - LexManos: Make Container.mergeItemStack respect Slot.isValidItem Closes #1630 - -Build 1.8-11.14.1.1326: - LexManos: Fix JukeBoxes not storing the inserted record. All TE's in minecraft are in net.minecraft.tileentity EXCEPT JukeBoxes. Closes #1633 Closes #1714 - -Build 1.8-11.14.1.1325: - LexManos: Fix NPEs in last commit. - -Build 1.8-11.14.1.1324: - LexManos: - Updated FML: - MinecraftForge/FML@c9cf3136c265b2e8e46eab102b2310a9312b8cfb New @Mod properties to define which environment to load the mod on. - clientSideOnly will only be loaded in the Client environment. - serverSideOnly will only be loaded in the Dedicated server environment. - Combine with acceptedMinecraftVersions to prevent users from loading the mod in the incorrect environment. - -Build 1.8-11.14.1.1323: - LexManos: - Updated FML: - MinecraftForge/FML@5eff40897545c9e6f597a202bc9e86c3b07761ad Filter more known libraries from potential mod canidates. - MinecraftForge/FML@feb4c436db27a249dd5190023edd38cb5884e90b Quiet ClassPatchManager debug spam by default. Reenable using -Dfml.debugClassPatchManager=true. - MinecraftForge/FML@41e806fa950839bf901ebf9c18d0c632a7c5538c Fix double decoding of UTF8 characters in lang files. - -Build 1.8-11.14.1.1322: - LexManos: Fixed using items on the wrong block client side caused by iChuns eyeheight update. - -Build 1.8-11.14.1.1321: - ohai.iChun: Reimplement variable eyeHeight for players which was removed in the 1.7 to 1.8 port. - -Build 1.8-11.14.1.1320: - fry: Removed event bus call from the ModelLoader - -Build 1.8-11.14.1.1319: - matthewprenger: Add the ability to add prefixes and suffixes to the player's display name. - LexManos: Add safty to URL detection in chat. Closes #1712 - -Build 1.8-11.14.1.1318: - fry: Added a default white texture; Fixed B3DLoader crashing when the brush has empty texture specified - fry: RenderItem can now use baked quad color - -Build 1.8-11.14.1.1317: - Parker Young: - Added ATs for EnumFacing - - This publics the VALUES array and HORIZONTALS array in EnumFacing, thus giving modders access to these arrays, much like ForgeDirection had. - -Build 1.8-11.14.1.1316: - fry: Attributes.put (de)normalization now works as intended - -Build 1.8-11.14.1.1315: - LexManos: Hold a weak reference to the Minecraft fake player object. Closes #1705 - -Build 1.8-11.14.1.1314: - matthewprenger: Minor tweak to UsernameCache to also cache usernames of offline players. - -Build 1.8-11.14.1.1313: - fry: Updated FML - -Build 1.8-11.14.1.1312: - fry: ModelRotation.getMatrix() now returns the correct matrix; fixed the application of custom transformations to vanilla models; fixed application of transformations to B3D models; fixed the culling of rotated vanilla models - -Build 1.8-11.14.1.1311: - fry: Alternative models work once again - -Build 1.8-11.14.1.1310: - fry: Updated FML - -Build 1.8-11.14.1.1309: - fry: fix ModelLoader.setCustomModelResourceLocation not storing same item with different metadata values - -Build 1.8-11.14.1.1308: - LexManos: Fixed debugging Dedicated server in Forge Dev workspace. - LexManos: Fixed being kicked from the server while swimming. - fry: - fixed NPE during loading of B3D models without textures/brushes. - changed default B3D color to have full opacity. - fry: Reworked vanilla texture resolution, hopefully fixes NPE bug in FaceBakery - fry: made renderLayer ThreadLocal, now it should hold correct value for use inside custom baked models - LexManos: Try a maven mirrior to fix build issues. - -Build 1.7.10-10.13.2.1307-1.7.10: - LexManos: Fixed potential NPEs in Structure code caused by componenets not being able to load. - -Build 1.8-11.14.1.1306: - LexManos: Fixed potential NPEs in Structure code caused by componenets not being able to load. Closes #1686 - -Build 1.8-11.14.1.1305: - LexManos: Fixed InitMapGenEvent's fire order so values are used. And added OCEAN_MONUMENT type. Closes #1681 - LexManos: Fixed BlockBush and BlockCrops not respecting custom soils. Closes #1683 - -Build 1.8-11.14.1.1303: - fry: Restore binary backwards compatibility - -Build 1.8-11.14.1.1302: - fry: ModelBakeEvent now has ModelLoader as an argument instead of ModelBakery; Added various static hooks to ModelLoader to allow registering model-related information before it's needed (prevents file-not-found errors on first baking pass); ModelLoader waits until ModelBakeEvent is done before showing any missing model exceptions; It's now possible to define models completely in-code (as illustrated by ModelBakeEventDebug). - -Build 1.8-11.14.1.1301: - LexManos: Bump version to 11.14.1 for next development cycle. - -Build 1.8-11.14.0.1299: - fry: Fixed tracking of UV locking state. Closes #1679 - -Build 1.8-11.14.0.1298: - LexManos: Fixed ItemFrames not having a model. Closes #1678 - LexManos: Updated FML: MinecraftForge/FML@22c9656196dbbea8ed983663d536c3ca272d7282 Reset S->C CustomPayload data after Write, allowing the same packet to be written multiple times. - -Build 1.8-11.14.0.1297: - LexManos: Fixed domain support in ArmorMaterial texture name. Closes #1675 - LexManos: Fixed Buttons not dropping anything when broken. Closes #1676 - -Build 1.8-11.14.0.1296: - LexManos: - Initial update to 1.8, Super beta. Most rendering related hooks are out due to major changes in 1.8. - - Some notes: - Almost all int x, int y, int z parameters have been changed to BlockPos class - ForgeDirection has been removed, replaced by net.minecraft.util.EnumFacing. - All FML classes have moved from packet cpw.mods.fml to net.minecraftforge.fml - Fluid Rendering has been disabled for the time being, to be re-evaulated and a test mod created for it. - Minecraft now uses a Model based system for rendering blocks and Items. The intention is to expand the model format to better suit modder's needed once it is evaulated. - As such, The model loaders from Forge have been removed, to be replaced by expanding vanilla's model format. - Metadata has been extracted out in Minecraft to IBlockState, which holds a list of properties instead of magic number metadata. DO NOT listen to the fearmongering, you can do EVERYTHING with block states you could previously with metadata. - Stencil Bits are disabled entirely by for the main Display, Modders must enable and recreate the FrameBuffer if they wish to use Stencil Bits. - LexManos: Fix local variable conflict in Forge patch and latest MCP mappings. - LexManos: Fix fog colors, Closes #1524 - LexManos: Fix acedential inversion causing some tress to not have leaves. Closes #1522 - LexManos: Fix creative picking a CommandBlock minecart returning wrong item. Closes #1523 - LexManos: Fixed crash with caomparators due to wrong position. Closes #1512 - LexManos: Fix inverted logic preventing blocks from breaking. - LexManos: Fix Entityies not taking damage correctly. Closes #1511 - LexManos: Fix wrong state being passed to Block.getDrops - LexManos: Fix potential NPE in Block.isToolEffective - LexManos: Update RecipeSorter for new 1.8 recipies. - LexManos: Fix destroy particles not being added. Closes #1528 - LexManos: Fix debug screen not showing grey background. Closes #1529 - LexManos: Fix not being able to place blocks in liquids, and related issues. - LexManos: - Updated FML: - MinecraftForge/FML@36644e97714b46dbbb24416febdde1332a3e753c Finalize modded handshakes in the World tick thread. Prevents potential CMEs when login event takes to long to fire. - LexManos: Fix interacting with entities. - LexManos: Fixed Entity extended properties init order. Closes #1532 - LexManos: Fixed Entities not being able to climb ladders, Closes #1535 - LexManos: Fixed snow layers not being able to stack more then twice. Closes #1534 - LexManos: Fix BlockPane's connection detection. - LexManos: Fixed vanilla bug where top part of double plants would flicker a tifferent texture before dissapearing. - LexManos: Fix NPE with BlockSnapshots that caused items with TileEntities to be used up in creative mode. - LexManos: Fixed vanilla issue where exceptions in World tasks would not be logged. - LexManos: Fixed blocks not breaking properly when instantly destroied. - LexManos: Fix stickey pistons not retracting properly. - LexManos: - Updated FML: - MinecraftForge/FML@9c8ca4a4e3c4acc4980535e5c60da169b75a7810 Unlink banner block and item id. Mojang should of matched these up but they didn't -.- - MinecraftForge/FML@84a101f344b8fc21de1201fde717fbcbcba2aa79 Update Dev mcp mappings to 11-30 snapshot. - LexManos: Remove debug patch I left in. - LexManos: Fix finding of spawn location for mobs. Closes #1546 - LexManos: Only call blockBreak when block itself changes, not just meta. Fixes bottles poping out of brewing stands. - fry: Added model bake event (allows mods to insert custom baked models, much like TextureStitchEvent allows to load custom textures), ISmartBlock/ItemModel (ability form models to react to block/item states), Block.getExtendedState, support for unlisted properties in block states. Includes example implementation of http://imgur.com/a/FyyJX - LexManos: Added Explosion Start and Detonate events to control explosion. - LexManos: Fixed bug in ServerConfigurationManager.transferPlayerToDimension where it would send the old dimension's information. - LexManos: Add "sand" to the OreDictionary - LexManos: Cleanup deprecated code, and TODOs in OreDictionary. Down-typed things from ArrayList to List. Asking for the ores with a null stack will now throw an Exception. - LexManos: Added CreateSpawnPosition event. - LexManos: Add LivingHealEvent called from EntityLivingBase.heal() - LexManos: Added PotionBrewEvent.Pre/Post. To allow for modification and cancelation of Brewing. - LexManos: Add quartz_ore tool init, more mojang special casing -.- - LexManos: Changed ToolMaterial's repair material to ItemStack version to allow metadata sensitive versions. - LexManos: Improved Control of Enchantment.canApplyTogether() in Mod Enchantments, allowing both enchantments to determine if they can apply together. - LexManos: Expand PlayerWakupEvent to expose the three parameters passed into EntityPlayer.wakeUp. - LexManos: Unbind Shaped/Shapeless Ore Recipies from Array list to normal List. - LexManos: Fixed NPE thrown when brewing event is fired and not all slots are filled. Closes #1564 - LexManos: Make daylight sensor recipe use ore dictionary wooden slabs Closes #1565 - LexManos: Fix missed patch causing Dispensed Armor to go into the wrong slot. Closes #1560 - LexManos: Fixed log spam when breaking DoublePlants. Closes #1555 - LexManos: Fix texture stitcher not using all avalible spaces. - LexManos: Fix EnumHelper for new ArmorTexture argument. - LexManos: Untie ItemModelMesher from using Item Ids internally by implementing our own simple mechanics using Trove. - LexManos: Fix userdev for new BlockState change. - LexManos: MinecraftForge/FML@e3785c28930a218cf9374458c67c34e7fba17922 Ensure that EntitySpawn and OpenGUI packets are handled in the world thread. Also log all errors that are thrown in FutureTasks. - LexManos: Remove our changes to Stitcher slot allocation. - LexManos: Fix incorrect logic in world change clumping. - LexManos: MinecraftForge/FML@5a4d362293fe70e1421d1f22c4a195944731d6ba Finish removing marker in mapping entry names. FMLMissingMappingsEvent/FMLModIdMappingEvent should fire with correct names now. - jadran.kotnik: Fixed messages not being added to the chat history and ClientCommandHandler not being called when sleeping. - LexManos: Fix BlockSnapshots not firing correctly due to patch mixup in 1.8 update. Closes #1591 - palechip: Fix Scoreboard rendering for the sidebar. - LexManos: Removed exclusion of white stained glass recipes in ore dictionary. - LexManos: Added chests to the ore dictionary. - LexManos: Fix crafting of non-oak fences/gates. - LexManos: Fix MC-30864 (sending web links in chat) - LexManos: Fix recipies for stone variants. - Chicken-Bones: Allow blocks to render in multiple layers - lumien231: Fixes #1603: Moving the start of the update thread to the pre init of the forge mod container - LexManos: Fix potential NPE when loading a single player world where you were saved in a unloaded dimension. Closes #1575 - LexManos: Call World.init from DimensionManager.initDimension Closes #1551 - LexManos: Made Chunk.fillBlock respect TileEntity.shouldRefresh. - LexManos: Fix value passed for Item.getModel useRemaining argument. Closes #1623 - LexManos: Silently eat exceptions when getting a TE's rendering bounding box, this 'fixes' Bukkit servers screwing up world data and causing clients to crash. - jadran.kotnik: Fixed NPE when canceling ClientChatRecievedEvent. Fixes #1644 - Parker Young: Re-enabled Icon setting for Fluids - LexManos: - Updated FML: - MinecraftForge/FML@a55e4124531119f1c9c023cff74cfa09b49ef0e0 Save the mod list of players in their NetworkDispatcher (Make it accessable for mods) - MinecraftForge/FML@69d479d46ae658c5a5c2c00081be3df38e38c748 Fixed getEffectiveSide() for Netty Server threads - MinecraftForge/FML@0f9a33cf14165ddd424a7d82c2178cf5854bf32f Exclude only log4j2 queue from class loader - jadran.kotnik: Don't skip the first line when rendering (debug) text. - fry: - Added model loader registry - - Entry point: ModelLoaderRegistry - loader interface: ICustomModelLoader - custom model: IModel - - ModelLoader is responsible for splicing into vanilla model system. - (you probably don't need to use it directly) - - Interop with vanilla models isn't great yet - (vanilla models can't refer to custom ones as parents), will improve in - the future. - - Includes loader for B3D models, with animation support - (net.minecraftforge.client.model.b3d). - Blender export plugin with compatible coordinate system: - https://github.com/RainWarrior/B3DExport - - OBJ loader is being written, will be included at some point in the - future. For now you can convert OBJ to B3D via blender, or wait. - techStackLp: - Closes #1552 - - Set the destination block the to the fluid. - In the previous code the destination block was still Air and would would - cause a crash because air doesn't have a property for LEVEL - fry: Removed leftover debug messages - LexManos: - Updated FML: - MinecraftForge/FML@d00feb58c762b0bbc506d79faf1ce40bc96732e9 Remove debug code that was causing console spam in Forge. - MinecraftForge/FML@1de3bf733aef754f15de55006b1750376871feb0 Fix FML's package for net.miencraftforge on maven. Fixes uploading of new builds. Note: 1.7.10 builds are bug fixes only while FML/Forge for 1.8 stabelizes. - MinecraftForge/FML@05ecefb53857ecc1dc52d4a577ed593c26da9659 Update to ASM5 for Java 8 support - MinecraftForge/FML@1112c455b9758c38eab385f48578bad17c0180f9 Merge pull request #595 from Grinch/master - MinecraftForge/FML@9c3013e02af1bd2f724d34a30e0b880b6e131645 Merge remote-tracking branch 'origin/1.8' - -Build 1.8-11.14.0.1295-1.8: - fry: Removed leftover debug messages - -Build 1.8-11.14.0.1294-1.8: - techStackLp: - Closes #1552 - - Set the destination block the to the fluid. - In the previous code the destination block was still Air and would would - cause a crash because air doesn't have a property for LEVEL - -Build 1.8-11.14.0.1293-1.8: - jadran.kotnik: Don't skip the first line when rendering (debug) text. - -Build 1.8-11.14.0.1292-1.8: - fry: - Added model loader registry - - Entry point: ModelLoaderRegistry - loader interface: ICustomModelLoader - custom model: IModel - - ModelLoader is responsible for splicing into vanilla model system. - (you probably don't need to use it directly) - - Interop with vanilla models isn't great yet - (vanilla models can't refer to custom ones as parents), will improve in - the future. - - Includes loader for B3D models, with animation support - (net.minecraftforge.client.model.b3d). - Blender export plugin with compatible coordinate system: - https://github.com/RainWarrior/B3DExport - - OBJ loader is being written, will be included at some point in the - future. For now you can convert OBJ to B3D via blender, or wait. - -Build 1.7.10-10.13.2.1291: - lukastenbrink: - Fix fluid tanks incorrectly reading NBT when empty - - If the Empty flag was set, the tank would not correctly read the data, keeping the outdated FluidStack instead. This is especially relevant with updatable TileFluidHandler TEs. - -Build 1.8-11.14.0.1290-1.8: - LexManos: - Updated FML: - MinecraftForge/FML@a55e4124531119f1c9c023cff74cfa09b49ef0e0 Save the mod list of players in their NetworkDispatcher (Make it accessable for mods) - MinecraftForge/FML@69d479d46ae658c5a5c2c00081be3df38e38c748 Fixed getEffectiveSide() for Netty Server threads - MinecraftForge/FML@0f9a33cf14165ddd424a7d82c2178cf5854bf32f Exclude only log4j2 queue from class loader - -Build 1.8-11.14.0.1289-1.8: - Parker Young: Re-enabled Icon setting for Fluids - -Build 1.8-11.14.0.1288-1.8: - jadran.kotnik: Fixed NPE when canceling ClientChatRecievedEvent. Fixes #1644 - -Build 1.8-11.14.0.1287-1.8: - LexManos: Silently eat exceptions when getting a TE's rendering bounding box, this 'fixes' Bukkit servers screwing up world data and causing clients to crash. - -Build 1.7.10-10.13.2.1286: - asiekierka: fix shouldRefresh being too broad in tile entity update - -Build 1.8-11.14.0.1285-1.8: - Chicken-Bones: Allow blocks to render in multiple layers - -Build 1.7.10-10.13.2.1284: - lumien231: Fix versionCheck config option - -Build 1.7.10-10.13.2.1283: - CovertJaguar: Bulk Chunk Data packets should also check TileEntity.shouldRefresh(). - -Build 1.8-11.14.0.1282-1.8: - LexManos: Fix potential NPE when loading a single player world where you were saved in a unloaded dimension. Closes #1575 - LexManos: Call World.init from DimensionManager.initDimension Closes #1551 - LexManos: Made Chunk.fillBlock respect TileEntity.shouldRefresh. - LexManos: Fix value passed for Item.getModel useRemaining argument. Closes #1623 - -Build 1.8-11.14.0.1281-1.8: - lumien231: Fixes #1603: Moving the start of the update thread to the pre init of the forge mod container - -Build 1.8-11.14.0.1280-1.8: - LexManos: Fix recipies for stone variants. - -Build 1.8-11.14.0.1279-1.8: - palechip: Fix Scoreboard rendering for the sidebar. - -Build 1.8-11.14.0.1278-1.8: - LexManos: Removed exclusion of white stained glass recipes in ore dictionary. - LexManos: Added chests to the ore dictionary. - LexManos: Fix crafting of non-oak fences/gates. - LexManos: Fix MC-30864 (sending web links in chat) - -Build 1.7.10-10.13.2.1277: - mattmess1221: Fix MC-30864 (sending web links in chat) - -Build 1.7.10-10.13.2.1276: - clashsoft: Fix Stained Glass pane rendering issues - -Build 1.7.10-10.13.2.1275: - Kittychanley: Removed exclusion of white stained glass recipes in ore dictionary. Closes #1502 & #1481 - -Build 1.8-11.14.0.1274-1.8: - LexManos: Fix BlockSnapshots not firing correctly due to patch mixup in 1.8 update. Closes #1591 - -Build 1.8-11.14.0.1273-1.8: - jadran.kotnik: Fixed messages not being added to the chat history and ClientCommandHandler not being called when sleeping. - -Build 1.7.10-10.13.2.1272: - jadran.kotnik: Fixed messages not being added to the chat history and ClientCommandHandler not being called when sleeping. - -Build 1.8-11.14.0.1271-1.8: - LexManos: Fix incorrect logic in world change clumping. - LexManos: MinecraftForge/FML@5a4d362293fe70e1421d1f22c4a195944731d6ba Finish removing marker in mapping entry names. FMLMissingMappingsEvent/FMLModIdMappingEvent should fire with correct names now. - -Build 1.7.10-10.13.2.1270: - LexManos: Remove our changes to Stitcher slot allocation. - LexManos: Fix incorrect logic in world change clumping. - -Build 1.8-11.14.0.1269-1.8: - LexManos: MinecraftForge/FML@e3785c28930a218cf9374458c67c34e7fba17922 Ensure that EntitySpawn and OpenGUI packets are handled in the world thread. Also log all errors that are thrown in FutureTasks. - LexManos: Remove our changes to Stitcher slot allocation. - -Build 1.8-11.14.0.1268-1.8: - LexManos: Fix userdev for new BlockState change. - -Build 1.8-11.14.0.1267-1.8: - fry: Added model bake event (allows mods to insert custom baked models, much like TextureStitchEvent allows to load custom textures), ISmartBlock/ItemModel (ability form models to react to block/item states), Block.getExtendedState, support for unlisted properties in block states. Includes example implementation of http://imgur.com/a/FyyJX - -Build 1.8-11.14.0.1266-1.8: - LexManos: Untie ItemModelMesher from using Item Ids internally by implementing our own simple mechanics using Trove. - -Build 1.8-11.14.0.1265-1.8: - LexManos: Fix texture stitcher not using all avalible spaces. - LexManos: Fix EnumHelper for new ArmorTexture argument. - -Build 1.7.10-10.13.2.1264: - LexManos: Fix texture stitcher not using all avalible spaces. Closes #1557 - -Build 1.7.10-10.13.2.1263: - LexManos: Fixed NPE thrown when brewing event is fired and not all slots are filled. - -Build 1.8-11.14.0.1262-1.8: - LexManos: Fixed NPE thrown when brewing event is fired and not all slots are filled. Closes #1564 - LexManos: Make daylight sensor recipe use ore dictionary wooden slabs Closes #1565 - LexManos: Fix missed patch causing Dispensed Armor to go into the wrong slot. Closes #1560 - LexManos: Fixed log spam when breaking DoublePlants. Closes #1555 - -Build 1.8-11.14.0.1261-1.8: - LexManos: Unbind Shaped/Shapeless Ore Recipies from Array list to normal List. - -Build 1.8-11.14.0.1259-1.8: - LexManos: Add quartz_ore tool init, more mojang special casing -.- - LexManos: Changed ToolMaterial's repair material to ItemStack version to allow metadata sensitive versions. - LexManos: Improved Control of Enchantment.canApplyTogether() in Mod Enchantments, allowing both enchantments to determine if they can apply together. - LexManos: Expand PlayerWakupEvent to expose the three parameters passed into EntityPlayer.wakeUp. - -Build 1.7.10-10.13.2.1258: - LexManos: Add quartz_ore tool init, more mojang special casing -.- Closes #1333 and Closes #1335 - LexManos: Fix invalid argument being passed to Block.isNormalCube from World.updateNeighbors. Closes #1339 and Closes #1346 - LexManos: Changed ToolMaterial's repair material to ItemStack version to allow metadata sensitive versions. Closes #1355 - LexManos: Improved Control of Enchantment.canApplyTogether() in Mod Enchantments, allowing both enchantments to determine if they can apply together. Closes #1434 - LexManos: Expand PlayerWakupEvent to expose the three parameters passed into EntityPlayer.wakeUp. Closes #1486 - -Build 1.8-11.14.0.1257-1.8: - LexManos: Fixed bug in ServerConfigurationManager.transferPlayerToDimension where it would send the old dimension's information. - LexManos: Add "sand" to the OreDictionary - LexManos: Cleanup deprecated code, and TODOs in OreDictionary. Down-typed things from ArrayList to List. Asking for the ores with a null stack will now throw an Exception. - LexManos: Added CreateSpawnPosition event. - LexManos: Add LivingHealEvent called from EntityLivingBase.heal() - LexManos: Added PotionBrewEvent.Pre/Post. To allow for modification and cancelation of Brewing. - -Build 1.7.10-10.13.2.1256: - LexManos: Fixed bug in ServerConfigurationManager.transferPlayerToDimension where it would send the old dimension's information. Closes #1548 - LexManos: Add "sand" to the OreDictionary Closes #1487 - LexManos: Added CreateSpawnPosition event Closes #1053 - LexManos: Add LivingHealEvent called from EntityLivingBase.heal() Closes #1282 - LexManos: Added PotionBrewEvent.Pre/Post. To allow for modification and cancelation of Brewing. Closes #1248 - -Build 1.8-11.14.0.1255-1.8: - LexManos: Added Explosion Start and Detonate events to control explosion. - -Build 1.7.10-10.13.2.1254: - LexManos: Added Explosion Start and Detonate events to control explosion. Closes #1469 - -Build 1.7.10-10.13.2.1253: - draco18s: - Update RenderBlockFluid.java - - Added tessellator calls to render the block's back faces, so that the liquid properly renders when the player is immersed in the fluid. - -Build 1.8-11.14.0.1252-1.8: - LexManos: Fix finding of spawn location for mobs. Closes #1546 - LexManos: Only call blockBreak when block itself changes, not just meta. Fixes bottles poping out of brewing stands. - -Build 1.8-11.14.0.1251-1.8: - LexManos: - Updated FML: - MinecraftForge/FML@9c8ca4a4e3c4acc4980535e5c60da169b75a7810 Unlink banner block and item id. Mojang should of matched these up but they didn't -.- - MinecraftForge/FML@84a101f344b8fc21de1201fde717fbcbcba2aa79 Update Dev mcp mappings to 11-30 snapshot. - LexManos: Remove debug patch I left in. - -Build 1.8-11.14.0.1249-1.8: - LexManos: Fix stickey pistons not retracting properly. - -Build 1.8-11.14.0.1248-1.8: - LexManos: Fixed vanilla bug where top part of double plants would flicker a tifferent texture before dissapearing. - LexManos: Fix NPE with BlockSnapshots that caused items with TileEntities to be used up in creative mode. - LexManos: Fixed vanilla issue where exceptions in World tasks would not be logged. - LexManos: Fixed blocks not breaking properly when instantly destroied. - -Build 1.8-11.14.0.1247-1.8: - LexManos: Fix BlockPane's connection detection. - -Build 1.8-11.14.0.1246-1.8: - LexManos: Fixed Entity extended properties init order. Closes #1532 - LexManos: Fixed Entities not being able to climb ladders, Closes #1535 - LexManos: Fixed snow layers not being able to stack more then twice. Closes #1534 - -Build 1.8-11.14.0.1245-1.8: - LexManos: Fix interacting with entities. - -Build 1.8-11.14.0.1244-1.8: - LexManos: Fix debug screen not showing grey background. Closes #1529 - LexManos: Fix not being able to place blocks in liquids, and related issues. - LexManos: - Updated FML: - MinecraftForge/FML@36644e97714b46dbbb24416febdde1332a3e753c Finalize modded handshakes in the World tick thread. Prevents potential CMEs when login event takes to long to fire. - -Build 1.8-11.14.0.1243-1.8: - LexManos: Fix potential NPE in Block.isToolEffective - LexManos: Update RecipeSorter for new 1.8 recipies. - LexManos: Fix destroy particles not being added. Closes #1528 - -Build 1.8-11.14.0.1242-1.8: - LexManos: Fixed crash with caomparators due to wrong position. Closes #1512 - LexManos: Fix inverted logic preventing blocks from breaking. - LexManos: Fix Entityies not taking damage correctly. Closes #1511 - LexManos: Fix wrong state being passed to Block.getDrops - -Build 1.8-11.14.0.1241-1.8: - LexManos: Fix fog colors, Closes #1524 - LexManos: Fix acedential inversion causing some tress to not have leaves. Closes #1522 - LexManos: Fix creative picking a CommandBlock minecart returning wrong item. Closes #1523 - -Build 1.7.10-10.13.2.1240: - LexManos: Fix creative picking a CommandBlock minecart returning wrong item. Closes #1523 - -Build 1.8-11.14.0.1239-1.8: - LexManos: Fix local variable conflict in Forge patch and latest MCP mappings. - -Build 1.7.10-10.13.2.1236: - xcompwiz: - Fixes client-side fake rain - - Changes the updateWeather function in WorldServer to only send the - weather info to players in the correct dimension, rather than all - players on the server. This is what causes the client-side rain, as the - client believes that it has started raining locally, rather than in - another dimension. - -Build 1.7.10-10.13.2.1235: - oliver.kahrmann: - Modify WavefrontObject to allow '.' in group object names - - Blender names objects with .001 ir .002 when separating vertices or duplicating objects and the importer would crash on them. This fixes the regex to allow dots in the name. - -Build 1.7.10-10.13.2.1234: - LexManos: Player sensitive version of Block.getPickBlock Closes #1348 - -Build 1.7.10-10.13.2.1233: - LexManos: Fix slots being black due to vanilla blending leakage Forge fixes. Closes #1325 & #1242 - -Build 1.7.10-10.13.2.1232: - luacs1998: - Create CONTRIBUTING.md - - Simple file (which github will show for those making PRs) containing guidelines for making PRs. - Feel free to comment if you want/need anything added. I can pull the same thing to FML too if you'd like, Lex. - luacs1998: - Update CONTRIBUTING.md - - Add link to wiki page on contributing - -Build 1.7.10-10.13.2.1231: - Adubbz: Fixed desert list initialization. Fixes #1447 - -Build 1.7.10-10.13.2.1230: - LexManos: Fix logic error in Blodd's Snapshot capture that caused blocks to not be updated to the client. Closes #1451 - LexManos: Bump version for new RB. - -Build 1.7.10-10.13.1.1229: - Abrar Syed: implemented crowdin support - matthewprenger: Add username cache for determining a player's last known username - azanor1: - Fix for biome weights under 10 - - This solves the problem where custom mod biomes with weights under 10 - not being generated in the world. - - Cleaned up the code and made the patch smaller - -Build 1.7.10-10.13.1.1226: - LexManos: Compleetly disable stencil bits unless told not to by using the -Dforge.forceDisplayStencil=true flag. Should solve the 'menu in bottom corner' issue with Intel Integrated graphics cards. - -Build 1.7.10-10.13.1.1225: - Parker Young: Added PlayerWakeUpEvent - -Build 1.7.10-10.13.1.1224: - Adubbz: Fixed biome weights not working with non multiples of 10 - -Build 1.7.10-10.13.1.1223: - LexManos: Fix vanilla lighting issue and blending issues in achievements gui. Closes #1445 - -Build 1.7.10-10.13.1.1222: - LexManos: MinecraftForge/FML@d00feb58c762b0bbc506d79faf1ce40bc96732e9 Remove debug code that was causing console spam in Forge. - -Build 1.7.10-10.13.1.1221: - LexManos: Disable by default the Display Stencil bits. Keep FBO bits. Acording to Mumfery and ChickenBones, it should not be nessasary and should solve the 1/4 main menu issue. Use -Dforge.forceDisplayStencil=true to enable old behavior. - -Build 1.7.10-10.13.1.1220: - jadran.kotnik: Prevent client only commands from bleeding through to the server. - -Build 1.7.10-10.13.1.1219: - bloodshot: - Added PlaceEvent and MultiPlaceEvent which fires before placing a block. - - Before calling "ItemStack.tryPlaceItemInWorld", a recording flag is turned on for - setBlock to capture a blocksnapshot for each block that attempts to be placed. - - If 1 block is captured, a "BlockEvent.PlaceEvent" is fired to notify mods. - If 2 or more blocks are captured, a "BlockEvent.PlaceEvent" is fired first with the first block - captured followed by a "BlockEvent.MultiPlaceEvent" with all captured blocks. This extra event - is required for items that have the ability to place 2 or more blocks such as a BlockBed. - - If either event is cancelled, the recorded block snapshot(s), item stacksize, and item meta will - revert back to the captured snapshot(s). - If the events are not cancelled, a notification will be sent to clients and block physics will be updated. - - What this means for mods is Forge will be able to capture all player block placement automatically and fire - a PlaceEvent and/or MultiPlaceEvent. - If for whatever reason your mod does not use the standard placement methods then you will need to fire the - appropriate placement events in order to notify mods/servers. - - This commit also includes a new utility class called BlockSnapshot which is serializable. This new class is used in conjunction with - both PlaceEvent and MultiPlaceEvent in order to record a snapshot of block space before it is altered. This - allows us to restore the block(s) if an event is cancelled. The class also provides the ability to restore a snapshot - to any location using the restoreToLocation method. This should be helpful to many mods that are looking to be able - to capture block data then restore it to back to any location required. - -Build 1.7.10-10.13.1.1217: - cpw: - GIANT FML UPDATE! Bump forge revision number, and fix patches for ItemStack changes. More to come on this branch I expect. - - MinecraftForge/FML@7c5cf219042581545b6073de4e947448ffa10879 Implement STDOUT/STDERR redirection. - MinecraftForge/FML@bc78e31cb7ad4eda6e5faa173cd6b21e70a2c444 added support for \n in tooltip strings added \n test tooltip localization fixed int/double conversion error in slider entry added test slider scenario that highlighted conversion error - MinecraftForge/FML@a2908e5c596bb5502bf455d468d2b1ead0520f55 Clean up a bunch of compiler warnings. - MinecraftForge/FML@7f67523d870ae150071c67b002597542eb206725 Update realms to 1.3.2 - MinecraftForge/FML@73f23c24b85240458f352f248e885684aaff4743 Merge branch 'std-redir' of github.com:Emberwalker/FML - MinecraftForge/FML@1c6b25df740a64c94d9ba05dd7e4412515abf5bb If an IO exception comes from the datawatcher, spew it all over the console don't discard it silently. Should stop pixelmon blaming forge for their mistakes. - MinecraftForge/FML@e77da9eb2f5c58a494ed100dd4c1dd1a0c341dbf And fix the read side too, incase someone is trying to bitbang and failing. - MinecraftForge/FML@305d8950c9332c7a7f290db05e6f18ef328016e2 Make LogContext optional. This can be useful for debugging mod issues, but Apache's implementation in log4j2 is responsible for a very significant % of the overall runtime. Quite frankly this is shockingly bad performance from what is supposed to be a high performance logging framework. Anyway, until we can figure out if we can fix it, we're turning it off by default. - MinecraftForge/FML@bdfca1c8ed463a6053526c7a46a990007711e3d0 Make more noise when people screw up mod downloading and put .jar.zip in their mod folders. - MinecraftForge/FML@21084941127fc882d9968316a8f0669531e484df Add a custom version range factory method. Should hush skyboy's complaints. Closes #486 - MinecraftForge/FML@7c1e6aaa40704001231e602ceaedfa21a5df1edf Add a delegate to every item and block. this should help with renaming fun stuffs. Also, fix all the tabs from my previous commits. *sigh* - MinecraftForge/FML@61fcb4df06dc968fcc31d3e4e524e574acfdbb3b Tweak Itemstack patch to always delegate to the method call. Set the field, so it's in sync. - MinecraftForge/FML@eb8c5ab146f2eb3ad3833d40607da97831278ffb Fix nested directory for language resources. Closes MinecraftForge#1264 - MinecraftForge/FML@7c05e5f70d5387512d0bee33ef99510ee5aac739 Default collections, so that we don't crash if useDependencyInfo is true. Closes #485 - MinecraftForge/FML@9729fe23326a3d4f6b03e60b5cdaf78a484b3657 Kill net.minecraft.src warning. It hasn't served a purpose in a long time now. Closes #313 - MinecraftForge/FML@21e875ef22eef6068ccd6df1bd71cf58cba48eed AllowPlayerLogins only after the server has completed the core init tasks. Closes #372 - MinecraftForge/FML@46cfeade80ae60ad2d8cdb40c5fdfdaeeaf16d00 Add a constructor to CustomModLoadingDisplayException. Closes #387 - MinecraftForge/FML@a6eab2683a15a0cceca7a0ded6095b746cdd017b Update README.txt - MinecraftForge/FML@f75838461cf6d9c5010cbfd2d9ef5ceec03268d7 Last part is the itemstack transformer. Itemstacks should now only be loosely coupled with the items within. - MinecraftForge/FML@51f24e9e6d1bee371cf23cdfd0071de7c5175417 First draft of add alias. It is probably not properly persistent atm. - MinecraftForge/FML@2a4c6424709b20ce1e9bda0d85ce7fac47d157c2 Finally fix stupid NPE error caused by FML trying to parse the super of Object in IDEA envs. - MinecraftForge/FML@c1b1417ee168523154a0edae68c3180814eab1c7 FML now supports passing a json formatted modlist as an argument, as well as a comma separated argument list. These facilitate modpacks mostly, by meaning you don't need to duplicate mods. The modlist is arranged in the maven style, with mods referenced maven-like. - MinecraftForge/FML@3d42cda2a2cf5b24e7a25537d883260857b2107a Build.Gradle Patch - MinecraftForge/FML@20c7add8455cd16a4551ed13336a9ad4f9770cd1 Merge pull request #484 from bspkrs/master - MinecraftForge/FML@26ed4b992eb6341d52d12fb6735415ab8e3c501d Clear button list on FML fatal error screens. The hidden cancel button should not be there. Closes #497 - MinecraftForge/FML@ebe4f5c5e297d5d59ce57138810627a9c7a1b412 Merge pull request #494 from AntonBoch1244/patch-1 - MinecraftForge/FML@ad0da05f5c78d7f3c35a331e993dd6e679fc7ac9 Fix the ItemStack transformer to find the method and field so it works with srg and mcp naming. - MinecraftForge/FML@65d380181a84d35a78791e1bc3c7712cd90506f6 Extend timeout for client to 5 seconds. Should fix Forge #1322 - MinecraftForge/FML@45486a0b6dfca65c4d1dd23176d4c9d13d46b6f5 Fix almost invisible NPE in TerminalTransformer when loading a non-existant class - MinecraftForge/FML@13da3efce07653732971837709ccf4de7e4c5c8e Allow a clean way to exit the game without big ugly warnings, but with logging information available if needed. Closes #496 - MinecraftForge/FML@fda305edfea15ba2015cede72327703f273f74e3 Some more tidying up of the exit handling - MinecraftForge/FML@b087f60c3379d0767247e51cbc3f7c631fe97a08 More cleanup of exit handling, also add a couple more noise classes to the list of things ignored. - MinecraftForge/FML@d6358a466b4614cfc35b403d756fe3ef550ebf50 Cleanup override warnings - MinecraftForge/FML@af7a58b9e50dbacf63cf4b5009abc52301609e1f Update to legacylauncher 1.10 and asm 5.0.3 - MinecraftForge/FML@e6d00440a612c235013f3f92f1756811139a6de0 ItemStack swapping - MinecraftForge/FML@8597e45a0e417948db483006aa54e899f28b05ac Fix NPE from a boolean - MinecraftForge/FML@b9b9daa8a9d1cac8550561f31f118589abc0c30a Fix ups from feedback. - MinecraftForge/FML@d89165021f33fbffb4563d86b30bd261506c6ea6 Mark the promise a success in the outbound handler. - MinecraftForge/FML@2e5ccf7988385d38b964c615776f23a1718f5c27 Update for launchwrapper 1.11. Fixes java 6 compatibility. - MinecraftForge/FML@641250d8536bad3af5a036b70dae94097176b420 Fix java 8u20. Closes #501 and a bunch of other bugs too. - MinecraftForge/FML@292be72639feded03ced26d9a06a98159f7a95b7 Allow client handshake to be reset by server to support BungeeCord. - MinecraftForge/FML@092873fbe5baaee53bee67d26d2fc6d3d003f095 Merge branch 'bungeecord' of github.com:bloodmc/FML - MinecraftForge/FML@134f2f8e8865a91292386a3738bb45bad0477a4b Fix bug with entityspawn - if the entity doesn't extend livingbase, it fails to write a headyaw byte, and everything will be derped for that packet. - MinecraftForge/FML@4852de81e02e2b6c6d006abe20d8497499fdf51f Wrap the server description box a little bit shorter. Stops the overlapping. Closes #489 - cpw: - MinecraftForge/FML@4ce3e73bfe36c02b10f504f93eff1bc94d640e32 Add overloaded version of SimpleNetworkWrapper#registerMessage that takes the MessageHandler instance directly, allowing to specify the same handler for multiple messages. - MinecraftForge/FML@cbe2ccbda461ec0ecf4d776fcd19ab31930cc3f1 Add in ModType to the jar manifest. If it's present, and doesn't have value "FML" it will be skipped from the modloading cycle. This should let liteloader mods have a .jar extension. - MinecraftForge/FML@37cf0174fc62a842d132b2c2cc31e477acfba205 OK, lets make that a csv list. It'll let you be liteloader and fml in one jar file! - MinecraftForge/FML@0475b15eb1a7c35bf4959f1af40606e6ee8a9d03 Change the mods and modListFile argument handling a bit. Other tweakers will get a chance at looking at them now - they're only removed right before launch. - MinecraftForge/FML@abeac06a2e9bf8825b058fa35291165b4d1f1fb3 Two new features. ModLists can have a "parent" mod list. Circularity will result in a crash, so be careful. Mods specified in a child will override ones from a parent (using the maven group:name:classifier triple to identify - ignoring the version component) - MinecraftForge/FML@7fcfedcfef9b5fd85cd1c17aa2013fca1bacd871 Canonicalized file paths in modListFile handling with the minecraftDirectory. - MinecraftForge/FML@633fce19d4b367aed56d79e916f17296842f675c Make Keyevent also fire for key releases - MinecraftForge/FML@57ba2339b630afa22c0fdf060bf28edbf7b34d0f Merge branch 'keyup-event' of github.com:diesieben07/FML - MinecraftForge/FML@1ff048062c7f122731619258a9e5a68a6111d5dd Merge branch 'simple-netw-improve' of github.com:diesieben07/FML - cpw: MinecraftForge/FML@dc02d56195606d3ba2f1c5036fc8c0ddb67c843f Fix derp with ModType annotation. mods should load again now.. - diesieben07: Added Item#isBeaconpayment - cpw: - MinecraftForge/FML@7ab69aff2e19b349e457c1b5fcab8b3b01d22af2 Clean up import - MinecraftForge/FML@c5a90bd456230b201522c268dd9bc5e80a0b57be Is vanilla possible with this mod load, side tests. - MinecraftForge/FML@cad11f3165505e6d725411a9fc2c2ee8362f5827 Allow injecting alternative container types. This is the core support code for allowing sponge plugins! - michafla: - check for IFluidBlock (in addition to Material.liquid) when - determining render height so that non-liquids (gases) render correctly - kat.swales: Fixed Clientside GameProfile UUID being null on offline mode - cpw: - MinecraftForge/FML@63b64482e6dd4c3e2226ec002ceee549045c35ed Add jsr305 dev-time dependancy for Nullable/Nonnull annotations. Unneeded at runtime. - MinecraftForge/FML@5365f5ea3e90ec85552bdb7f1f1237c51b4ea493 Add IEventExceptionHandler for EventBus to allow special handeling exceptions that are fired while running an event. Events now track what 'phase' they are in during the execution process. Each EventPriority is a 'phase'. An exception is thrown if the event attempts to set its phase to a previous one. - -Build 1.7.10-10.13.1.1216-new: - kat.swales: Fixed Clientside GameProfile UUID being null on offline mode - -Build 1.7.10-10.13.1.1215-new: - michafla: - check for IFluidBlock (in addition to Material.liquid) when - determining render height so that non-liquids (gases) render correctly - -Build 1.7.10-10.13.1.1214-new: - cpw: - MinecraftForge/FML@7ab69aff2e19b349e457c1b5fcab8b3b01d22af2 Clean up import - MinecraftForge/FML@c5a90bd456230b201522c268dd9bc5e80a0b57be Is vanilla possible with this mod load, side tests. - MinecraftForge/FML@cad11f3165505e6d725411a9fc2c2ee8362f5827 Allow injecting alternative container types. This is the core support code for allowing sponge plugins! - -Build 1.7.10-10.13.1.1213-new: - diesieben07: Added Item#isBeaconpayment - -Build 1.7.10-10.13.1.1212-new: - cpw: MinecraftForge/FML@dc02d56195606d3ba2f1c5036fc8c0ddb67c843f Fix derp with ModType annotation. mods should load again now.. - -Build 1.7.10-10.13.1.1211-new: - cpw: - MinecraftForge/FML@4ce3e73bfe36c02b10f504f93eff1bc94d640e32 Add overloaded version of SimpleNetworkWrapper#registerMessage that takes the MessageHandler instance directly, allowing to specify the same handler for multiple messages. - MinecraftForge/FML@cbe2ccbda461ec0ecf4d776fcd19ab31930cc3f1 Add in ModType to the jar manifest. If it's present, and doesn't have value "FML" it will be skipped from the modloading cycle. This should let liteloader mods have a .jar extension. - MinecraftForge/FML@37cf0174fc62a842d132b2c2cc31e477acfba205 OK, lets make that a csv list. It'll let you be liteloader and fml in one jar file! - MinecraftForge/FML@0475b15eb1a7c35bf4959f1af40606e6ee8a9d03 Change the mods and modListFile argument handling a bit. Other tweakers will get a chance at looking at them now - they're only removed right before launch. - MinecraftForge/FML@abeac06a2e9bf8825b058fa35291165b4d1f1fb3 Two new features. ModLists can have a "parent" mod list. Circularity will result in a crash, so be careful. Mods specified in a child will override ones from a parent (using the maven group:name:classifier triple to identify - ignoring the version component) - MinecraftForge/FML@7fcfedcfef9b5fd85cd1c17aa2013fca1bacd871 Canonicalized file paths in modListFile handling with the minecraftDirectory. - MinecraftForge/FML@633fce19d4b367aed56d79e916f17296842f675c Make Keyevent also fire for key releases - MinecraftForge/FML@57ba2339b630afa22c0fdf060bf28edbf7b34d0f Merge branch 'keyup-event' of github.com:diesieben07/FML - MinecraftForge/FML@1ff048062c7f122731619258a9e5a68a6111d5dd Merge branch 'simple-netw-improve' of github.com:diesieben07/FML - -Build 1.7.10-10.13.0.1208: - zlyfire.martin: - Update README.txt - - Add in reference to running setupDecompWorkspace to get decompiled classes - -Build 1.7.10-10.13.0.1207: - bernhard.bonigl: Write the correct default value for StringList comments in the config - -Build 1.7.10-10.13.0.1206: - LexManos: Fix AIOOB in BiomeDictionary. Closes #1326 - -Build 1.7.10-10.13.0.1205: - cpw: - Attempt to properly resolve this daft metadata and TE nonsense. This might be mod impacting, if you maintain a reference to a TE via neighbour update calls - you - might see two TEs for a single setblock where previously you saw one. This is a phantom TE being created by badly written neighbour triggers - I'm looking at you - redstone. - - Anyway, with luck, this'll close a slew of bugs across Forge, IC2, MFR, TE, RC. Yeah, fun times. Thanks to LexManos, skyboy and KingLemming for helping figure this - issue out. Quite frankly, from now on, issues with phantom TEs will be mods behaving badly. Modders will need to adapt. - -Build 1.7.10-10.13.0.1204: - LexManos: Fix invalid math in GuiContainerCreative. - -Build 1.7.10-10.13.0.1203: - porcariadagata: Add ItemStack sensitive version of getItemEnchantability - -Build 1.7.10-10.13.0.1202: - LexManos: Add ability for creative tabs that have search bars to customize the text box's width, and prevent the default set of enchanted books from being displayed in those tabs. Closes #1303 Closes #1301 - -Build 1.7.10-10.13.0.1201: - abab9579: - Skylight Hooks for Minecraft Forge - - Mainly for solar/lunar eclipse. - -Build 1.7.10-10.13.0.1200: - JeanGlassmaker: Adds getLocalizedName and getUnlocalizedName to FluidStack - -Build 1.7.10-10.13.0.1199: - vazkii: Fixed items with more than 2 render passes rendering weird in first person - LexManos: Fix patch screwup in Skyboy's Fishing PR -.- - LexManos: Fix metadata for every permutation -.- Closes #1294 - t.tomkins: - Legacy Liquid Load Fix - - nbt.getString("FluidName") no longer returns null, it returns an empty string. - - This patch allows legacy liquids to be resolved once again. - -Build 1.7.10-10.13.0.1198: - DemoXin: - * Added AT for ContainerRepair.stackSizeToBeUsedInRepair (Now public) - * Added ability to AnvilUpdateEvent to alter stackSizeToBeUsedInRepair (vanilla behavior is now reproducable) - * Added AnvilRepairEvent, fired when the player removes an ItemStack from the output slot of ContainerRepair, and allows the chance to damage the anvil to be altered. - -Build 1.7.10-10.13.0.1197: - skyboy026: Add FishingHooks - skyboy026: Update FishingHooks - skyboy026: Add EntityFishHook AT - -Build 1.7.10-10.13.0.1195: - rwtema: Fixed ItemFluidContainer always draining the maximum amount, regardless of the amount remaining. - -Build 1.7.10-10.13.0.1194: - LexManos: Closes #1280 - -Build 1.7.10-10.13.0.1191: - LexManos: Fixed bug that allowed duplication of Fluids with redstone dust. Closes #1279 - -Build 1.7.10-10.13.0.1190: - idont: - Added drainFluidContainer() and getContainerCapacity() helper methods. - -Build 1.7.10-10.13.0.1189: - Adubbz: Added an event for fog rendering - -Build 1.7.10-10.13.0.1188: - cpw: - Revert old light amortization patch. It seems to be breaking chunk sending pretty badly when more - than a couple of people are online. Tests indicate it is not useful anymore. - cpw: MinecraftForge/FML@3231db9376766d619f942b6a526718daa3c68038 Sorta revert 908491d5e7ac26becdac938f38cc90d6b9d73ce1 but merge assets into the map, rather than force overwriting. Fixes skyboy's comment. - -Build 1.7.10-10.13.0.1187: - LexManos: - Updated FML: - MinecraftForge/FML@53887ac59cec8f747e21fd251f94d5a438a69114 Hacky interm solution to #1207 to buy me time to re-write FML's network protocol. - -Build 1.7.10-10.13.0.1186: - LexManos: Fixed NPE that happens sometimes when exiting the game witout fully loading a world {main a dev-time thing} - LexManos: Made skulls respect Block.isReplaceable when placing, also prevented them from deleting blocks when placed at certain angels. Closes #1233 - -Build 1.7.10-10.13.0.1185: - LexManos: - Updated FML: - MinecraftForge/FML@9d40b761974f10ec2b5868a992260792f8a98e5d Don't scan ObjectHolders if there was an error already, derpitude will ensure. - MinecraftForge/FML@76538c1781d6d6a1e4134fb317af99e6f13b46cc Add a terminal transformer and tweaker. - MinecraftForge/FML@aec9228845e50107112bd1f8693f9b4729694c8b Add ExitVisitor to the TerminalTransformer that finds and intercepts any calls to Runtime.exit or System.exit. - MinecraftForge/FML@908491d5e7ac26becdac938f38cc90d6b9d73ce1 Move LaunguageRegistry call above normal asset loading to allow resource packs to override mod's language systems. - MinecraftForge/FML@d13295e28113a1c310d5bbb90ebfe241fefabe02 Fix FMLAT manifest AccessTransformers, class loader fun! - -Build 1.7.10-10.13.0.1184: - Tyler Hancock: - Changed exception message for duplicate enchantment ids to contain the - class path for both enchantments along with the enchantmnet id that has - been duplicated. - -Build 1.7.10-10.13.0.1183: - bspkrs: - Fixed missing assignment of constructor arg (thanks @Lunatrius) - - I must have edited this out when I was cleaning up my formatting commit spam. - -Build 1.7.10-10.13.0.1182: - vincent_a_lee: - Fix comment derp (+1 squashed commits) - - Squashed commits: - - [52c40bc] Fix experience orbs spawning at 32x coordinates clientside - - Add // FORGE comment - - Add // FORGE comment to clarify the purpose of the change - -Build 1.7.10-10.13.0.1181: - vincent_a_lee: - Fix chat opacity - - Add // FORGE comment - - As per convention, add // FORGE comment to clarify the purpose of the change - -Build 1.7.10-10.13.0.1180: - LexManos: - Updated FML: - MinecraftForge/FML@ab52901b8b47a525e2719cf280327e97bad7f91e Force preferIPv4Stack to true early in the load chain to combat netty loopback issues. - MinecraftForge/FML@11893fbbb76569417a415ae794494b8c1150a716 Add system property to skip doing world backups when game registry changes. This is SEVERLY ill-advised, if you do this DO NOT ask for any support. - MinecraftForge/FML@fdb6b34b8fc3f1e0c6beb7bfb940a01a309f1603 Update authlib and realms to latest json data. - MinecraftForge/FML@b3a74882b4d0d704d7061b9d896febb59ab0c269 added slider controls for numerics. default control is textbox, but slider can be used as a custom list entry class. fixed constructor javadocs in GuiConfig - MinecraftForge/FML@7c6d1f7568885ff677e34692ff87b1f0826dfd48 Merge pull request #468 from bspkrs/master - MinecraftForge/FML@692d955c1a5b6d0b8601ae88632ef42136d37393 Update tweaker login to use authlib. - MinecraftForge/FML@c2119eb1c1246ba37304d9e565b4430ed7056db1 Update realms library to 1.3.1, and implement network latch when connecting to Realms. Tested and working. - -Build 1.7.10-10.13.0.1179: - cpw: Add a system property for the stencil, in case config is not available.. - -Build 1.7.10-10.13.0.1178: - the.country.gamer: - RenderBlockOverlayEvent patch - - Fixes skewed XYZ parameters - -Build 1.7.10-10.13.0.1177: - LexManos: Fixed Enchantment.addToBookList Closes #1160 - -Build 1.7.10-10.13.0.1176: - LexManos: Add ability for modders to designate custom biome types. And remove note about automatically registering. Closes #1167 - -Build 1.7.10-10.13.0.1175: - diesieben07: Added hook for custom PotionEffect rendering in the inventory - -Build 1.7.10-10.13.0.1174: - the.country.gamer: - Added RenderBlockOverlayEvent.java - - Adds a Forge event which controls whether an overlay is rendered. - Overlays include: First-person fire, Block (when inside a block) - and water when a player is inside a water block. - - Patched for easier manipulation of event - - Fixed for Lex - - To be squashed - - Removed Contructor - - Added block XYZ parameters - - TODO, the second block overlay event’s XYZ might not be correct - Adubbz: Enhanced the Biome Dictionary with tags based on temperature, vegetation, moisture, trees and others - -Build 1.7.10-10.13.0.1172: - LexManos: Made EmeraldOre respect isReplaceableOreGen. Closes #1157 - LexManos: Added World to ChunkProviderEvent.ReplaceBiomeBlocks, and exposed metadata to End and Nether generation events. Close #1201 - -Build 1.7.10-10.13.0.1171: - tterrag1098: - Add AchievementEvent - - Allows modders to react to players receiving achievements, and cancel - them. - - Fix indentation - - More shortening - - Down to one line... - - Remove newline - -Build 1.7.10-10.13.0.1170: - LexManos: STENCIL buffer and DEPTH buffer, attempt a fix for GL errors. - -Build 1.7.10-10.13.0.1169: - alexrusso225: Added Javadoc comments for Forge Event documentation. - -Build 1.7.10-10.13.0.1168: - LexManos: MinecraftForge/FML@ac994e178a3533aa3c2ad8359aef9e5852c27a72 Scala people test your shit. - -Build 1.7.10-10.13.0.1167: - LexManos: Remove the BLEND enable in rendering damage bars. And exclicitly fix blend states in some GUI elements. - -Build 1.7.10-10.13.0.1166: - cpw: - MinecraftForge/FML@3ee86d0f3e47249030ba2309386f9120025e95c1 updated gradle wrapper to gradle 2.0 - MinecraftForge/FML@627ae73ea655277617912df48b03288ecc79ffea Merge pull request #464 from AbrarSyed/upgradle - MinecraftForge/FML@ee38c1b3f4642c567612f88070d7f9d651994aab Fix unneeded cast causing crash in new Config GUI system. - MinecraftForge/FML@eb92c35a2fa49a0fbe35a33e31cfb58e0674f78e updated run configs for GradleStart/Server classes - MinecraftForge/FML@70dcf80410a6d12c00300c00522582ee49ac4cc8 Merge pull request #465 from AbrarSyed/upgradle - MinecraftForge/FML@0ebdbe77a2b3503db43d36aec50c98ffb8366e20 Updated Scala to latest stable - MinecraftForge/FML@ddba18e6e33a9d9c5b113b1bfc0bfc82803b2607 Merge branch 'patch-1' of github.com:Soaryn/FML into scalaupdate - MinecraftForge/FML@220a37660b2656136c634b435afee6a915fc88fe Update realms to 1.2.9 - MinecraftForge/FML@abd7d0969bed5ce3d766f52b921c2b44e8ba87d2 Merge branch 'scalaupdate' - -Build 1.7.10-10.13.0.1162: - foka_12: - Added FluidStack sensitive version for Fluid's localised name - - Would be helpful for determining names for more complex FluidStacks (with tag compounds for example) - -Build 1.7.2-10.12.2.1161-mc172: - bspkrs: dupe quotes fix for category names - -Build 1.7.10-10.13.0.1160: - Gerard Bruwn: Add RenderItemInFrameEvent - -Build 1.7.10-10.13.0.1159: - LexManos: Fixed issue where Fire's 'fizz' would not play for the person who extinguished the fire. - -Build 1.7.10-10.13.0.1158: - ohai.iChun: Fixed inverted params in FogDensity use - -Build 1.7.10-10.13.0.1157: - LexManos: Add config option to disable attempting to creat screen with Stencil Bits. - LexManos: Add config option to specify the default spawn fuzz factor for the overworld. Closes #1190 - -Build 1.7.10-10.13.0.1156: - LexManos: Fix creative inventory tabs not blending base don items rendered. Closes #1179 - -Build 1.7.10-10.13.0.1153: - bloodshot: - Fixed wrong method call in ChunkIOProvider. - - When a chunk fails to load async, we fallback to the original sync method. - In this case, it was calling the async method twice which ended up causing - a stackoverflow. - -Build 1.7.10-10.13.0.1152: - cpw: MinecraftForge/FML@db219fb287b14fea5148ecdbf07d8ff08704c66a API is now able to "provide" and "own" itself. Useful for libraries without a Mod in them. To go along with this, you can now require an API, with a version, in your mod dependency string - -Build 1.7.10-10.13.0.1151: - bspkrs: fixed compounding quotes issue with category names that require quotes when save is called more than once - -Build 1.7.10-10.13.0.1150: - LexManos: Update to 1.7.10-pre4. - LexManos: Fix flower pots not droping the items that are inside them. - cpw: MinecraftForge/FML@06ab104c9ab798af6d2726e02a238211ff8124e1 Force the descriptors to the right type for the field they're referencing. Fixes the sand issue - cpw: MinecraftForge/FML@e1529845384f4935b7c11d4d36d25db51c0b9a31 Add support for mod access transformers without a coremod requirement. Use the "FMLAT" manifest attribute, with a space separate list of files that live in the 'META-INF' directory. They should conform to standard AT formatting. - cpw: - MinecraftForge/FML@5d6dc5dce37e488188d6fc468c16e8a6183a3610 Fix up other exit points. Should stop process hangs for clean exits. - MinecraftForge/FML@8a240ec3c7e4cf4c57beabdfe9bd408e57de1bdc Merge branch 'master' into mc179 - MinecraftForge/FML@0cd5ef6bb71cda1ef6add892d1247148bf1ecc15 Fix NPE when no FMLAT is defined - cpw: - MinecraftForge/FML@701d98eafa4d55144b166d26030818baa9b2f680 Added config GUI system - MinecraftForge/FML@50164db5c13c85636c7fda0e13bae1fc0aedc745 Merge branch 'master' of github.com:bspkrs/FML into bspkrsgui - MinecraftForge/FML@7eb36a1481aea9f68fa46bc199195769b27d904b Merge branch 'bspkrsgui' - MinecraftForge/FML@96a7e14a45404449fb72af6d2d5e1efd30003318 Merge branch 'master' into mc179 - MinecraftForge/FML@f45f18b1d71e1c1d12582faa337a19e73ed5fb18 Fix accessing guava from transformers - MinecraftForge/FML@8f7adced471951c798cfa6844b0abc176c93d19b Fix library issue. mojang auth requests newer libs, so we get them at dev time. But the mojang json doesn't refer them at runtime. So there's a lib mismatch. Fortunately all are available at mojang, so we can update the json. - cpw: Fix new method with Side.CLIENT when it shouldn't have it. Closes a bunch of reports of problems. - cpw: Clean patch cruft. - cpw: Fix mcp release number - luacs1998: - Update mc version string - - Or was I not supposed to? - cpw: Fix API incompatibilities. Should mean mods will work with new config changes. - cpw: - Update to MC 1.7.10, bump to 10.13.0 - - MinecraftForge/FML@bc420dcb0b086899e2aaa218a6f5bd7e91091a90 Fix Eclipse launching attribute - MinecraftForge/FML@1e0134a1ca97a1107ebbe604e5318e6f350fe9c4 Merge pull request #455 from rumickon/feature - MinecraftForge/FML@1c5db211afc9962fedb7fd8450abc45d07807634 Update for release 1.7.10 - MinecraftForge/FML@79a0c5e55905f0f08471d026b744a563ea421236 Merge branch 'mc179' - -Build 1.7.10_pre4-10.12.2.1149-prerelease: - cpw: Fix API incompatibilities. Should mean mods will work with new config changes. - -Build 1.7.10_pre4-10.12.2.1148-prerelease: - luacs1998: - Update mc version string - - Or was I not supposed to? - -Build 1.7.2-10.12.2.1147: - cpw: Fix API incompatibilities. Should mean mods will work with new config changes. - -Build 1.7.10_pre4-10.12.2.1146-prerelease: - bspkrs: - Added support for new FML config GUI classes - refactored lots of stuff based on comments - - added Configuration.load() exception handling and logging - cpw: MinecraftForge/FML@5d6dc5dce37e488188d6fc468c16e8a6183a3610 Fix up other exit points. Should stop process hangs for clean exits. - cpw: - MinecraftForge/FML@701d98eafa4d55144b166d26030818baa9b2f680 Added config GUI system - MinecraftForge/FML@50164db5c13c85636c7fda0e13bae1fc0aedc745 Merge branch 'master' of github.com:bspkrs/FML into bspkrsgui - MinecraftForge/FML@7eb36a1481aea9f68fa46bc199195769b27d904b Merge branch 'bspkrsgui' - cpw: Fix mcp release number - -Build 1.7.2-10.12.2.1145: - bspkrs: - Added support for new FML config GUI classes - refactored lots of stuff based on comments - - added Configuration.load() exception handling and logging - cpw: - MinecraftForge/FML@701d98eafa4d55144b166d26030818baa9b2f680 Added config GUI system - MinecraftForge/FML@50164db5c13c85636c7fda0e13bae1fc0aedc745 Merge branch 'master' of github.com:bspkrs/FML into bspkrsgui - MinecraftForge/FML@7eb36a1481aea9f68fa46bc199195769b27d904b Merge branch 'bspkrsgui' - -Build 1.7.10_pre4-10.12.2.1144-prerelease: - cpw: Clean patch cruft. - -Build 1.7.10_pre4-10.12.2.1143-prerelease: - cpw: Fix new method with Side.CLIENT when it shouldn't have it. Closes a bunch of reports of problems. - -Build 1.7.10_pre4-10.12.2.1142-prerelease: - cpw: - MinecraftForge/FML@701d98eafa4d55144b166d26030818baa9b2f680 Added config GUI system - MinecraftForge/FML@50164db5c13c85636c7fda0e13bae1fc0aedc745 Merge branch 'master' of github.com:bspkrs/FML into bspkrsgui - MinecraftForge/FML@7eb36a1481aea9f68fa46bc199195769b27d904b Merge branch 'bspkrsgui' - MinecraftForge/FML@96a7e14a45404449fb72af6d2d5e1efd30003318 Merge branch 'master' into mc179 - MinecraftForge/FML@f45f18b1d71e1c1d12582faa337a19e73ed5fb18 Fix accessing guava from transformers - MinecraftForge/FML@8f7adced471951c798cfa6844b0abc176c93d19b Fix library issue. mojang auth requests newer libs, so we get them at dev time. But the mojang json doesn't refer them at runtime. So there's a lib mismatch. Fortunately all are available at mojang, so we can update the json. - -Build 1.7.10_pre4-10.12.2.1141-prerelease: - cpw: - MinecraftForge/FML@5d6dc5dce37e488188d6fc468c16e8a6183a3610 Fix up other exit points. Should stop process hangs for clean exits. - MinecraftForge/FML@8a240ec3c7e4cf4c57beabdfe9bd408e57de1bdc Merge branch 'master' into mc179 - MinecraftForge/FML@0cd5ef6bb71cda1ef6add892d1247148bf1ecc15 Fix NPE when no FMLAT is defined - -Build 1.7.10_pre4-10.12.2.1139-prerelease: - cpw: MinecraftForge/FML@e1529845384f4935b7c11d4d36d25db51c0b9a31 Add support for mod access transformers without a coremod requirement. Use the "FMLAT" manifest attribute, with a space separate list of files that live in the 'META-INF' directory. They should conform to standard AT formatting. - -Build 1.7.10_pre4-10.12.2.1138-prerelease: - cpw: MinecraftForge/FML@06ab104c9ab798af6d2726e02a238211ff8124e1 Force the descriptors to the right type for the field they're referencing. Fixes the sand issue - -Build 1.7.10-pre4-10.12.2.1135-prerelease: - LexManos: Fix flower pots not droping the items that are inside them. - -Build 1.7.2-10.12.2.1133: - Christian: Null check the Item in the supplied stack as well as the stack itself. - -Build 1.7.2-10.12.2.1132: - Christian: And fix firing for single player loading. - -Build 1.7.2-10.12.2.1131: - Christian: Fix derpity derp. - -Build 1.7.2-10.12.2.1130: - Christian: - Fire an event when a player loads or saves from disk. Mods that want to load an additional - player related file from the players dir can now do so in that event. - -Build 1.7.2-10.12.2.1129: - Christian: - Some patch offsets - MinecraftForge/FML@7219061b05db73d245405ef777b412d0787398b6 Also patch in warnings for Vec3Pool - similarly removed. - MinecraftForge/FML@dff22045587b37282adeb2167486a572f51f1f16 FML now sets a security manager (FINALLY!). It's primary purpose at this point is to catch rogue calls to System.exit so that they can cause a proper crash report, rather than silently abandoning the game. - -Build 1.7.2-10.12.2.1128: - lumien231: Fixes a server crash caused by a player joining that is in a non existent dimension - -Build 1.7.2-10.12.2.1127: - thog92: Add missing 1.7 biomes to BiomeDictionary - -Build 1.7.2-10.12.2.1126: - nemesis: - Fixed ArrayIndexOutOfBoundsException in getOreName - - Added sanity check to prevent ArrayIndexOutOfBoundsException in getOreName for negative ids. - -Build 1.7.2-10.12.2.1125: - LexManos: Fixed vines generation for hanging off of trees. - -Build 1.7.2-10.12.2.1124: - bloodshot: - Don't call ChunkDataEvent.Load async - - ChunkDataEvent.Load must be called after TE's are loaded since this is - what mods expect. The event is handled by ChunkIOProvider during - callStage2. - -Build 1.7.2-10.12.2.1123: - bloodshot: - Load chunks asynchronously for players. - - When a player triggers a chunk load via walking around or teleporting - there is no need to stop everything and get this chunk on the main thread. - The client is used to having to wait some time for this chunk and the - server doesn't immediately do anything with it except send it to the - player. At the same time chunk loading is the last major source of file IO - that still runs on the main thread. - - These two facts make it possible to offload chunks loaded for this reason - to another thread. However, not all parts of chunk loading can happen off - the main thread. For this we use the new AsynchronousExecutor system to - split chunk loading in to three pieces. The first is loading data from - disk, decompressing it, and parsing it in to an NBT structure. The second - piece is creating entities and tile entities in the chunk and adding them - to the world, this is still done on the main thread. The third piece is - informing everyone who requested a chunk load that the load is finished. - For this we register callbacks and then run them on the main thread once - the previous two stages are finished. - - There are still cases where a chunk is needed immediately and these will - still trigger chunk loading entirely on the main thread. The most obvious - case is plugins using the API to request a chunk load. We also must load - the chunk immediately when something in the world tries to access it. In - these cases we ignore any possibly pending or in progress chunk loading - that is happening asynchronously as we will have the chunk loaded by the - time they are finished. - - The hope is that overall this system will result in less CPU time and - pauses due to blocking file IO on the main thread thus giving more - consistent performance. Testing so far has shown that this also speeds up - chunk loading client side although some of this is likely to be because - we are sending less chunks at once for the client to process. - - Thanks for ammaraskar for help with the implementation of this feature. - - This commit is based off the following : - - Bukkit/CraftBukkit@b8fc6ab2c12e9b4c8d7b5370e44f23cc838014b2 - Bukkit/CraftBukkit@85f5776df2a9c827565e799f150ae8a197086a98 - Bukkit/CraftBukkit@0714971ca2a31bc729bdd78ded8c69ffb2284813 - Bukkit/CraftBukkit@7f49722f457dcc31f8cac8e011871ff1b7fd3306 - Bukkit/CraftBukkit@53ad0cf1abe9c060ef411a86e9a16352f3e5197e - -Build 1.7.2-10.12.2.1122: - antoine.lucas.33: Add missing onLivingJump calls - -Build 1.7.2-10.12.2.1121: - LexManos: Pop version for new Recomended build. - -Build 1.7.2-10.12.1.1120: - Christian: Warn when chunks are being self-recursively loaded. This can cause serious issues. Modders should watch out. - Christian: MinecraftForge/FML@1a99ec7db612f258983c6ac685da906bf7cde0a6 Deprecate getAABBPool so people can stop using it in mods. Failure to do so will result in 1.7.10 upgrade incompatibility. Use getBoundingBox instead. - -Build 1.7.2-10.12.1.1119: - LexManos: Changed dustLapis to gemLapis to make OM SHUT THE HELL UP. - -Build 1.7.2-10.12.1.1118: - LexManos: Fixed missed metadata offset, and now cache return values of getOres for speed. - -Build 1.7.2-10.12.1.1117: - cojomax99: World fog color and density can now be controlled through an event - -Build 1.7.2-10.12.1.1116: - diesieben07: Fix not being able to change target & attackDamage for EnderTeleportEvent. - -Build 1.7.2-10.12.1.1115: - LexManos: Fixed inverted player parameters in PlayerEvent.Clone, Closes #1142 Closes #1140 - -Build 1.7.2-10.12.1.1114: - LexManos: Changed EntityWolf to EntityTameable in EntityLivingBase.attackEntityFrom, to allow for more custom pets. Closes #1141 - -Build 1.7.2-10.12.1.1113: - LexManos: Rework OreDictionary's internals to be a bit more speedy to help combat modders using it inapropriatly. Closes #1022 Closes #1131 - -Build 1.7.2-10.12.1.1112: - Christian: - MinecraftForge/FML@e3ce211cc798f4d86ca6f974d9ba8b4e389b4dc9 Nullcheck the dispatchers on players. Should stop some crashes when spamming connectivity. - MinecraftForge/FML@480bf2c1d078038bb59c4254a01a5af685c7cb22 Fix REPLY handling in SimpleNetworkWrapper. Closes #440 - -Build 1.7.2-10.12.1.1111: - LexManos: - Fix inverted parameters in OreDictionary.getOreID Closes #1123 - -.- Closes #1120 - -Build 1.7.2-10.12.1.1110: - Adubbz: Greatly simplified the addition of new biomes to the default world - -Build 1.7.2-10.12.1.1109: - LexManos: Added Noteblock change and play events. Closes #1027 #1025 - -Build 1.7.2-10.12.1.1108: - LexManos: Add target world to PlayerInteractEvent for potential 'cross dimension' interaction such as LittleBlocks. Closes #1071 - -Build 1.7.2-10.12.1.1107: - LexManos: Add a couple of localizations to Forge added strings. Closes #1068 - -Build 1.7.2-10.12.1.1106: - rwtema: Fixed setBlock not using the location-specific version of getLightOpacity() - -Build 1.7.2-10.12.1.1105: - LexManos: Filter all vanilla blocks that we missed through Forge's getDrops and BlockDrops events. As well as implemented IShearable for DoublePlants and DeadBushes. Mojang really should generic out some of this stuff instead of repeating logic all over the place! - -Build 1.7.2-10.12.1.1104: - LexManos: Fix patch fuzz - LexManos: Fixed GuiContainer calling button.mouseReleased. Closes #1116 - LexManos: Add comment to RotationHelper telling modders where to actually look, closes #1115 - -Build 1.7.2-10.12.1.1101: - diesieben07: - Add PlayerEvent.StartTracking and .StopTracking & make trackedEntityIDs visible - & Update, as discussed on IRC (squash) - -Build 1.7.2-10.12.1.1100: - vilim.lendvaj: Make finite fluid blocks drainable - -Build 1.7.2-10.12.1.1099: - LexManos: Fix enum helpers for EnumRarity {moved to Commn and changed paramter} and EnumCreatureType {new parameter} and added junit test for them. Closes #1009 - -Build 1.7.2-10.12.1.1098: - Christian: MinecraftForge/FML@1d41aa978d41267e4040ec449e10f49a20edd4fa Fix the side for the compatibility check. Should result in green ticks finally! - -Build 1.7.2-10.12.1.1097: - LexManos: Change IShearable JavaDoc by one line so Anti would shut up. Closes #1054 - -Build 1.7.2-10.12.1.1096: - Christian: MinecraftForge/FML@4512f8e5e316ddaf6a4fe35470f1f88dcdddae1a Warn when the objectholder finds nothing in the registry. Helps debug mismatched names. Also, actually make the scoping thing work with objectholder - -Build 1.7.2-10.12.1.1095: - fry: Added world display list render events - -Build 1.7.2-10.12.1.1094: - foka_12: - Fix getOreIDs not using the wildcard value correctly - - You can see it's not working by requesting the ore IDs from lapis, and you'll see the name "dye" is missing (and that's the one registered using the wildcard). - - Fixed it by inverting the order of the item stack parameters. - -Build 1.7.2-10.12.1.1093: - LexManos: Prevent duplciates in registered Ores in the OreDictionary and clean up some of the code, add new function to return all ores the specified ItemStack satisfies. Closes #1102 - -Build 1.7.2-10.12.1.1092: - vilim.lendvaj: - Fix fluid blocks - For https://github.com/BuildCraft/BuildCraft/issues/1843 . - -Build 1.7.2-10.12.1.1091: - LexManos: - Updated FML: - MinecraftForge/FML@3aba56440aa7a95f6431efcdcb5c127ebafc8891 lastIndexOf, Note Don't code while sick. - -Build 1.7.2-10.12.1.1090: - LexManos: - Updated FML: - MinecraftForge/FML@c828bb63c57cb10c23d9b1c3a6934e9f9ddba37b Make AccessTransformer change INVOKESPECIAL to INVOKEVIRTUAL when making methods visible - MinecraftForge/FML@a9aa468457a1eeed3366505b93e36da654610f05 Merge pull request #431 from diesieben07/at-invokevirtual - MinecraftForge/FML@31d726abad0dec6d1b853e9adf6a01580aee2af4 Fix the null networkHandler in the MessageContext - MinecraftForge/FML@725d988e36a7b104b9f5d8ae2daf993ac12af5bd Add in the objectholder, autopopulated by FML based on simple rules. Allows for reference driven substitution of mod blocks and items based on their server running state. - MinecraftForge/FML@f07bf5cb30a20ca9f62337512e936cfefcfbf0c4 Fixed deobfusication of nested inner classes. And removed legacy ModLoader remaps. - LexManos: - Updated FML: - MinecraftForge/FML@3a687f48b9606b4f9179d63ef0b831a25821ff8f -.- Save File First. My Bad. - -Build 1.7.2-10.12.1.1088: - LexManos: Add Glass, Colored glass, ore storage blocks, alines, and a few others to ore dicitonary. Closes #1011 - -Build 1.7.2-10.12.1.1087: - clashsoft: Update GuiScreen.java.patch - LexManos: Add new PlayerEvent.Clone called when an EntityPlayer is cloned via dimension travil or respawn. - LexManos: Made WorldGenShrub respect Block.canSustainPlant, Closes #1096 - -Build 1.7.2-10.12.1.1085: - delma: - Fluid events now know how much fluid is moved - - Added amount that is being filled/drained to the FluidEvent - - Added constructors without amount to ensure backwards compability - - Added deprecation to amountless constructors - -Build 1.7.2-10.12.1.1084: - LexManos: Fixed Stems not droping a random number of seeds based on metadata, Closes #1087 - -Build 1.7.2-10.12.1.1083: - xcompwiz: - Bug Fixes to Biome Decoration and Chunk - Fixes issue with biome decoration crashing on worlds with exposed void - Fixes same issue in JungleBiome decoration - Fixes forge bug in getting lighting from a block in chunk - -Build 1.7.2-10.12.1.1082: - LexManos: In Flower Forest biome a Poppy should spawn instead of Blue Orchid Closes #1078 - LexManos: Added Farmland to PLAINS type plants as that has changed in 1.7. Also made BlockTallGrass call it's super.canBlockStay to better support custom soils. Closes #1077 - LexManos: Added accessible instance to RenderBlocks and RenderItem for modders to use who don't wish to create there own instance. Warning: Other modders may influance the transient state of the instance, BE WEARY MODDERS. - -Build 1.7.2-10.12.1.1081: - Christian: MinecraftForge/FML@43e3ee1af1cab54db238dab4994076fdbe68bc6a Swap Listenerlist constructor around. Should fix parent resizing issue? - -Build 1.7.2-10.12.1.1080: - Christian: MinecraftForge/FML@70570a863ffa6a3ba7e2dd30b471bb47615b8bf8 Fix up possible CME - -Build 1.7.2-10.12.1.1079: - Christian: MinecraftForge/FML@503da3a2577a069b7847c158a27e8316c85ed852 Don't consider null NetworkDispatchers. This should fix a bunch of fakeplayer issues. - -Build 1.7.2-10.12.1.1078: - LexManos: Fully clear DimensionManager's DimensionID bitset when world is loaded. Closes #1074 - LexManos: Fixed No Blue Orchids spawn in swamp when using bone meal Closes #1072 - -Build 1.7.2-10.12.1.1077: - Christian: Fix forge validating strict versions on remote connections. - -Build 1.7.2-10.12.1.1076: - Christian: - MinecraftForge/FML@a8cbef2321a8e1bdfac56476bdfb5b306f71d38b Finally hopefully fully kills the race condition causing a classcast on slow machines. - MinecraftForge/FML@8dbd1ae0a177a556d03630a059242a2ee7f45e55 Fix ObjectIntIdentityMap sporadically matching non-identical objects. - MinecraftForge/FML@42713c66e565a26e963099baa838800f250089c3 Merge pull request #426 from sfPlayer1/master - -Build 1.7.2-10.12.1.1075: - Christian: - MinecraftForge/FML@d8b6adb2598ce144568a0aaf26fa8b988c028b7c Add a helper for casting some common collection types into generic form - MinecraftForge/FML@5275cea844a6afacc0deb41d153f01c1c25bb924 Try and see if there is anything to the identityHashCode collision hypothesis. If you see this in your error messages, kindly let us know! - -Build 1.7.2-10.12.1.1074: - LexManos: - Updated FML: - MinecraftForge/FML@a70308ef41f1e24074ea718f64caf75b8d6acba7 Update mcmod.info - MinecraftForge/FML@8555344eb33e4f0cc676defdb7391a24ebd5677d updated wrapper to gradle 1.12 - MinecraftForge/FML@1d5fc60f82e911c1abfbebbe781316126c02c987 Merge pull request #411 from matthewprenger/master - MinecraftForge/FML@3612ad0c25d103ba9bc81b32e8ecfef2dfc1cadc Attempt to fix another race condition related to reading NetClientHandler. - MinecraftForge/FML@c73a2076e3dd5d1f60c2fe2f589109cefa2dc6ce Fix potential rance condition in connecting to vanilla servers as well. And move latch into client side only. - MinecraftForge/FML@1436ac2f14fbdb48777c90b1b93378108c9cbf36 Fine use FMLCommonHandler. - MinecraftForge/FML@542e9acec1016c950c6f80af0c9da3190691359b documented dependencies - MinecraftForge/FML@ddc2cfbe864bd377232dbd1aa65df6e710d4639d Merge pull request #402 from AbrarSyed/patch-1 - MinecraftForge/FML@362ec8dee7ed2c291a8ed287c52eacdd80582eff Merge pull request #419 from Thog92/master - MinecraftForge/FML@b9de9ebc960bbf26e7aee570701aa4c226252fee Revert "Fix refreshResources not happening if an error occurs." - MinecraftForge/FML@738ce1d7cd5575269375066586d0a37881c536e2 Re-add removed genericiterable to clean a warning - MinecraftForge/FML@b0eb1ef7c6f4a63689898bf28f28e84d2dbae6e7 Split loadmods into loadmods and preinitmods, to allow resource loading to occur *always* between the two phases. This should fix mods not being able to access resources during preinit. - MinecraftForge/FML@de546bdf6cbeadb612cd6385bac8d54480073496 Clean up some missing generic info - MinecraftForge/FML@cd43eacbb25bc9cc0e81138844fa3aa7fd133037 Ensure that the loadcontroller is ready to preinit. - MinecraftForge/FML@f2fe80dc36972fe9db57e700380b6869abbc1832 Fixed default network mod checking to allow client side mods without the server side. Mods wishing to REQUIRE server side components must specify a custom check handler using @NetworkCheckHandler - MinecraftForge/FML@0c36868f92a3516c83ae363e13e5cb1db81236d1 Fix network disconnect with message on the client side in NetworkDispatcher. - -Build 1.7.2-10.12.1.1073: - bspkrs: Fixed unforeseen NPE - -Build 1.7.2-10.12.1.1072: - LexManos: - Revert "Implemented hashCode and equals in ItemStack, Closes #986" - - This reverts commit 0b01545a03942abca7b7ea28030be81e2ebeaa59. - -Build 1.7.2-10.12.1.1071: - LexManos: Implemented hashCode and equals in ItemStack, Closes #986 - -Build 1.7.2-10.12.1.1070: - LexManos: Fix extended entity properties being lost when leaving the end, This introduces the concept of calling IExtendedEntityProperties.init when entites/worlds change. Lets see if mods explode. - -Build 1.7.2-10.12.1.1069: - bspkrs: New GuiScreen events and a new ElementType DEBUG for RenderGameOverlayEvent - -Build 1.7.2-10.12.1.1068: - LexManos: Added new hook to WeightedRandom.getItem that allows for use of custom rnadom generators, prevents redundant code in mods. - -Build 1.7.2-10.12.1.1067: - LexManos: - Updated FML: - MinecraftForge/FML@2c56c32c5aa8842cfadaf8c237396cdb75673909 Fix saving backups with the raw name. Fix air block not being assigned as the default. - MinecraftForge/FML@d0f8073fa51db7426d5ded373f3404fa60d722f0 Merge pull request #413 from sfPlayer1/master - MinecraftForge/FML@810b1f3075e6061ab189e1f6975bd77b20040d71 Clean some generic warnings up. Make a generic list handler. Helpful for others I think too. - MinecraftForge/FML@fff86ee9d35874bdf77a1eaabe77615441644064 Fix refreshResources not happening if an error occurs. - MinecraftForge/FML@76d8d0e870a4e389167634283984dc10abb08e84 Fix mod version checking - MinecraftForge/FML@b84d0760ae47832e5b1e4d50237b582b2d50d520 Fix display of mod status at the server - MinecraftForge/FML@251af1d09dfbf636e2fb3f323a5345c81cc07aea Fixed memory leak on the client caused by Netty holding references to the World. - LexManos: Fixed hard references in WorldGenBigTree and ForgeCommand that caused worlds to leak in the client. - -Build 1.7.2-10.12.1.1066: - lhb: - Fix for Block.getExplosionResistance getting passed the wrong parameters - - It is being sent the x, x, y coordinates instead of x, y, z - -Build 1.7.2-10.12.1.1065: - CovertJaguar: - Fix issue with flexible rail return value - - Between 1.6 and 1.7 the return value to BlockRailBase.isFlexibleRail() - was inverted. While this is not a huge deal and could be worked around - by simply inverting your return value, it does mean its no longer - consistent with the function name and javadocs. - bioxx2007: Adds a new ReplaceBiomeBlocks Event constructor that supplies the metadata array if applicable and updates the ChunkProviderGenerate class to pass in the metadata array. - -Build 1.7.2-10.12.1.1061: - bspkrs: get a spelling checker :P - -Build 1.7.2-10.12.1.1060: - LexManos: Bump Forge version in prep for release. - -Build 1.7.2-10.12.0.1059: - LexManos: Try and fix invalid framebuffer depth/stencil setup, Thanks Ivoforce. Closes #1032 - -Build 1.7.2-10.12.0.1058: - apricefrench2d: - Fix infinite loop in RecipeSorter - - If recipe is multiple levels of inheritance from Object and not categorized, cls=cls.getSuperclass(); needs to be repeated more than once. It must therefore be moved to inside the while loop. - -Build 1.7.2-10.12.0.1057: - ohai.iChun: Fixes stencil buffers on platforms not supporting OpenGL 3.0 or higher. - -Build 1.7.2-10.12.0.1056: - LexManos: - Small wording change in license to allow for specifc differnet licnense contributions. - - Updated FML: - MinecraftForge/FML@e58562d3edfd1cd37fdc0a9e54181aed7433fdff Fix remaining issue with autoassigned Block and Item IDs overlapping. - MinecraftForge/FML@a82195772e539437911c25508168cb607659bc71 Registry: Block IDs after failing to find a mapping for them - MinecraftForge/FML@fd9389015fd5c6150155531bf1fffb38cfe9d551 Fix FMLMissingMappingsEvent.get - MinecraftForge/FML@5eebd4df718d65ac8426deba61e1ebb6ae2fde18 Registry: Implement support for remapping blocks/items to a new name. - MinecraftForge/FML@7325aa5033e7a5b5db79340777dd7a1c763315a0 Registry: cleanup, fix missing id error GUI formatting - MinecraftForge/FML@eb29d651ebda7086fe6d1f716295b087e2c17e6f Fix old 1.7 worlds with broken ID mappings - MinecraftForge/FML@6fd3c12a4a15a5cf38c421a94576a5cacd3fb7c1 Registry: allow handling missing blocks/items regardless of the mod id - MinecraftForge/FML@038fa17ad33aeba276db84ab170504fce884c1e7 Merge branch 'master' of https://github.com/MinecraftForge/FML - MinecraftForge/FML@49c623f59c440ba177adf2d76332ecee25e12236 initial attempt at a better way to ask the user in case of startup issues - MinecraftForge/FML@9be92dcfcb1c737025397c92b18ed027a6c7f4fa Registry: Complain about bogus registrations - MinecraftForge/FML@fd6d55afcc4f4c650c143ad43e09fbdc2cb9d850 Registry: Allow ignoring missing mods from the GUI, with confirm+backup - Registry: Add confirm+backup for automated corrupted id table fixup Require the user to confirm loading from a backup level.dat - MinecraftForge/FML@c47fc3b382434d435050b4ee02a02550b81f5717 Enable custom gui rendering only as required - MinecraftForge/FML@f77632df35dbf53fb31420fa86e6792f13257020 Remove unneeded entity spawn debug logging. - MinecraftForge/FML@c7adb42199a0684d8748451d39deb8326c0a2194 Registry: Repair mismatched ItemBlocks as well Fix a few misc issues - MinecraftForge/FML@c8a245a985779fd2545ee4b58a93270973aeb435 Registry: Fix debug info - MinecraftForge/FML@c8a0b72eba9265be608670424e1bd835a9d2f1e2 Registry: Complain about missing mods when repairing broken worlds Registry: Reduce console spam - MinecraftForge/FML@8e44006f432f1b36b826ff0469d99986a6051e4b Registry: Protect against putObject misuse, handle duplicate registrations better - MinecraftForge/FML@294c93212cd9f30c50b9d1a3b048a6141c45cdea Registry: Add support for registering ItemBlocks before their Blocks - MinecraftForge/FML@3b42b33b6ec4020b5032cae06760053ed135fae8 Merge pull request #400 from sfPlayer1/master - -Build 1.7.2-10.12.0.1055: - traincrazyb: - Small Fix: Held Items & Multiple Render Passes - - Passes beyond 1 now have the correct icon. - -Build 1.7.2-10.12.0.1054: - LexManos: Fix line offset in Minecraft patch, and mix RenderPlayer looping once to many on multi-pass items. - -Build 1.7.2-10.12.0.1053: - t.tomkins: Update PlaySoundEvent17.java - -Build 1.7.2-10.12.0.1052: - LexManos: Update access transformer, Closes #951 and #1021 - LexManos: Add NPE protection to GuiingameMenu.actionPerformed, Closes #961 - LexManos: Finally do SoundSystem workup for 1.7, Closes #982 - -Build 1.7.2-10.12.0.1051: - LexManos: Use BiomeGenBase's array size instead of hardcoding it in BiomeDictionary. Closes #871 - LexManos: Fix potential threading issue if FluidRegistry.loopupFluidForBlock is called from two threads at the same time before being setup. Closes #936 - -Build 1.7.2-10.12.0.1050: - LexManos: New hook to truely seperate the display of the 'durability' bar from the current / max durability. Allowing modders to control that display easier. - LexManos: ItemStack sensitive version of Item.getAttributeModifiers, Closes #816 - LexManos: Add ANIMALS tpe to PopulateChunkEvent.Populate Custom providers should call this function if they spawn animals curing population. Closes #790 - LexManos: Add AnvilUpdateEvent which is fired when a user places a item in both input slots of a Anvil and allows modders to control the output. Closes #838 - -Build 1.7.2-10.12.0.1049: - LexManos: Add position to BreakSpeed event. Closes #621 - LexManos: Advanced Model Loader available server-side for data driven models. To be cleanuped and re-evaluated in 1.8. Closes #773 - -Build 1.7.2-10.12.0.1048: - Abrar Syed: COnverted patches to SRG names - Abrar Syed: updated for ForgeGradle 1.2 - Abrar Syed: added .exe file.. fixed a bunch of patches - Abrar Syed: updated FML to latest master - Abrar Syed: fixed remaining noop patches and exc derp - LexManos: Update patches for new Fixed FernFlower used in FG 1.2. - -Build 1.7.2-10.12.0.1047: - reflex_ion: - This correctly uses the world height less one block for placement of a - Door. - - Required for placing doors inside a littleblocks area. - -Build 1.7.2-10.12.0.1046: - LexManos: MinecraftForge/FML@ef07de4f65ea16e1db1467845e316cb4c7d01a1f Fix hard link to DedicatedSerever when opening a LAN connection causing stalls on connecting. - -Build 1.7.2-10.12.0.1045: - LexManos: -.- Both null combinations. - -Build 1.7.2-10.12.0.1044: - LexManos: properly implement equals, sod off Player. - -Build 1.7.2-10.12.0.1043: - LexManos: Implement simple hash based equals in Fluid ContainerKey. - -Build 1.7.2-10.12.0.1042: - LexManos: Make StructureVillagePieces.Village public. - -Build 1.7.2-10.12.0.1041: - ohai.iChun: Fixes stencil bits not existing in Minecraft's framebuffer causing stencil test to not work. - -Build 1.7.2-10.12.0.1040: - LexManos: - Updated FML: - MinecraftForge/FML@e8b60441ccca8cccdc130560b4c8bf400aebc605 Reload game settings after mod loading is finished to capture mod keybindings. Closes #378 - MinecraftForge/FML@399770e572c9177babfb65a27280253023db2d9e Kill the modEventTypes list, register anything that extends FMLEvent, Fixes MissingMappingEvent handler, and any futureevents added. - MinecraftForge/FML@b7ad532ab5eb3e00d77ffde946d25675c9f69cf7 Re-enable post initalize texture pack reloading to allow Icons to be registerd through any init phase. - -Build 1.7.2-10.12.0.1039: - t.tomkins: - Small Fix: Held Items & Multiple Render Passes - - Passes beyond 1 now have the correct icon. - DemoXin: * Added Ore Dictionary entries and recipe replacements for Diamond, Emerald, Crops, Redstone, and Glowstone - DemoXin: * Fixed Items.glowstone to Items.glowstone_dust - -Build 1.7.2-10.12.0.1034: - LexManos: Fixed hashcode in FluidContainerRegistry, still needs a redesign. Closes #967 - -Build 1.7.2-10.12.0.1033: - ohai.iChun: Add cancelable RenderHandEvent. - -Build 1.7.2-10.12.0.1032: - LexManos: Fix a typo in our tile entity fix causing it to be ineffective. - -Build 1.7.2-10.12.0.1031: - LexManos: Fix items with color rendering incorrectly. - -Build 1.7.2-10.12.0.1030: - Christian: - Update Forge for patch changes - - MinecraftForge/FML@064b66af3d6c92b19821b88ec26cbb59577d68b4 Prevent players from logging in until server has finished starting. - MinecraftForge/FML@2aa73afa15908dadb0a033c49deb0ffefad2f265 Fix ExampleMod.java for build #1024+ - MinecraftForge/FML@c890206268da3c594d97198f5426b52ff6b8460c Try and handle removal of mods a bit better. Currently no way to allow a world which has missing blocks to load - but i have the code in place to allow it i think. - MinecraftForge/FML@995c204338cd601e118396d4b4ef8feb6e759037 Fix failing to load a world with missing mod blocks and items. There will be a way to force worlds to load when stuff is missing, but for right now, it will fail as this is "world safe". - MinecraftForge/FML@fa5f4c884272f415933329a9e914e0b7d052e31a Some argumentation - MinecraftForge/FML@45409bfa0c136078823a1aef1358396d92a269ee Prevent player dat files getting reset during disconnects. - MinecraftForge/FML@33100d6bab654a4bd59701b1ec2bf91caa3399da Merge pull request #371 from bl4ckscor3/patch-1 - MinecraftForge/FML@572d32358ab11e5916d91c4c7b9c04a70cfed2f6 Merge pull request #373 from bloodmc/master - MinecraftForge/FML@d0dd05a15c2eca9eabd308319c2ed85cb632922b FML expands S3F to support payloads up to 2 megs in size. Should be transparent - -Build 1.7.2-10.12.0.1029: - LexManos: Fixeed a missed -1 in SpawnerAnimals patch. Thanks Blood. - -Build 1.7.2-10.12.0.1028: - LexManos: Cull FakePlayers when worlds are unloaded. - -Build 1.7.2-10.12.0.1027: - LexManos: Use correct tag types when reading Forced Chunk data. Fixes ticket loading. Closes #964 - -Build 1.7.2-10.12.0.1026: - LexManos: Fixed FluidContainerRegisry.contansFluid closes #845 - -Build 1.7.2-10.12.0.1025: - LexManos: Fix AIOOB error with Endermen and blocks >256. Also better support for ID remapping. More to come later. - -Build 1.7.2-10.12.0.1024: - LexManos: - Updated FML: - MinecraftForge/FML@03fb1879d72fbd347badc140fed6c2c3191d2990 Fix obf error when right clicking a Empty Map. - MinecraftForge/FML@6bb9b8b9532b276450d03a3419e0da016aecead8 Clean up FMLEventChannel. Closes #367. - MinecraftForge/FML@b7b3450dcd123ab5df6b3693c9c2123bc3846b88 Update MCP mapping snapshot to latest crowdsourced names. - MinecraftForge/FML@8c9e8b52708bd0630303f8b5dc184ab60e2553a1 Fix isRemote, this is integral to so many parts of the code, everyone knows it by this name, People should not change it. - LexManos: Add the beginnings of a Constants class, to document/clean some of the magic numbers that are in the MC code base. - -Build 1.7.2-10.12.0.1023: - Christian: - MinecraftForge/FML@d87822ad8519da1c808e48bcc0a1bf8eb15c0095 Bump gradle wrapper to 1.10 - MinecraftForge/FML@359ac3ca2a941d70709168fbbbc0725c861668dd Ensure we check both item and block registries when finding valid IDs. Should fix #365 - MinecraftForge/FML@cee0f0b81179d307059843f08401f8700fb3ddb2 Tweak so that writing to the context will automatically send a message back to the originator in handshakeestablished. - Christian: Add a discriminator for fluididspacket. remove extraneous channel handler. - Christian: Fix up the event handler so it knows it's owned by forge - -Build 1.7.2-10.12.0.1022: - LexManos: Uncomment aa few FluidRegistry entries. - LexManos: Fixed issue where enchantment effects caused slight rendeirng issue. - LexManos: Fixed missed parens causing trapdoors to fall off incorrectly. - -Build 1.7.2-10.12.0.1021: - LexManos: Inital Fluid system update, untested. Still in progress. - -Build 1.7.2-10.12.0.1020: - LexManos: Fix NPE when breaking ice. - LexManos: Attempt a AIOOB error fix in tesselator when there are alot of transparent blocks in the rendering range. - -Build 1.7.2-10.12.0.1019: - Christian: - MinecraftForge/FML@544320b8d239df4a5ee2b3a7ec331ce2ec0a2c09 Beginning of a saveinspectionhandler. - MinecraftForge/FML@ab199c5811fe2d831592601d4f77691fbf82d1b8 Try harder to find a mod container. - MinecraftForge/FML@8633d780c925ebb719c37ac52e2f3db5f9957895 And make a loud message if there isn't a modcontainer found, substitute Minecraft. In general, this can only happen for coremods not properly registering their code. Closes #363 - -Build 1.7.2-10.12.0.1018: - LexManos: Fix imporerly efficient tools breaking blocks to fast. - -Build 1.7.2-10.12.0.1017: - LexManos: Fixed potential NPE in SlotCrafting, and added ItemStack sensitive version fo hasContainerItem. Closes #854 - LexManos: Adds a WeatherRender in the style of SkyRender, Closes #844 - -Build 1.7.2-10.12.0.1016: - LexManos: Move change of metadata to immediatly after change of Block, should prevent any 'invalid' tile entities from breaking created. Reference: #897 - -Build 1.7.2-10.12.0.1015: - LexManos: New PlayerUseItemEvents, Start, Stop, Tick and Finish. See PlayerUseItemEvent.java for more details. Closes #924 - -Build 1.7.2-10.12.0.1014: - LexManos: Make ItemBlock.field_150939_a public, closes #945 - LexManos: Missing EntityAITasks.tasks and MapgGenStructreIO register ATs, Closes #949 - LexManos: Implement PlayerPickupXpEvent, fired when a player aquires XP from a EntityXPOrb. Closes #942 - LexManos: Exclude cobblestone slab recipe from ore dictification, closes #940 - LexManos: Add the ability for custom records to have finer control over there sound resource location. Closes #933 - LexManos: Don't short circuit item icons for multiple render passes while being used. Closes #929 - -Build 1.7.2-10.12.0.1013: - LexManos: Fix Furnace stopping on 63rd Item, Closes #947 - -Build 1.7.2-10.12.0.1012: - Christian: - MinecraftForge/FML@b6d95d704b65dd8232ec8ddd333de378db8fe161 Name the log files properly. fml-junk is an early startup annoyance I can't kill because log4j2. - MinecraftForge/FML@8692ca17d13eda036b5ef996ec8e8706e7707d80 Log4j2 logging context for things. This should help add context when things go wrong in mods. - MinecraftForge/FML@a7ca131a337b5f0d4fc6f438626ac2d5b7771b3c And don't spam NONE everywhere - MinecraftForge/FML@741e172ffe163f0dd3018e1474af46ef0696396a Log4j2 doesn't need debug level logging for itself anymore - -Build 1.7.2-10.12.0.1011: - Christian: MinecraftForge/FML@458b0620b43116c943549a0f060c7e8830c2d77a Log the bad packet in a prettier way. Also, don't show the authlib debug data in the log file. - -Build 1.7.2-10.12.0.1010: - LexManos: Add BookCloning to the recipe sorter. - -Build 1.7.2-10.12.0.1009: - Christian: - MinecraftForge/FML@9a8d16b66e67691a4c83a9e1e236304e9f6d5139 Fix log4j2 config. Fix server gui to *show* logging. Fix log spamminess in the console. Fix bug in servergui that can cause deadlock. - MinecraftForge/FML@a355eecb2c14123964c6ae2402a0933d57ae9736 Add in error logging for outbound messages. Fix bug with indexedcodec NPE - MinecraftForge/FML@1c793abe0eef6846f681c9673019b0ebc49caaaf Fix derp with networkcheck - MinecraftForge/FML@675b5a07788ada17bc26a9c4f26598e77d2098cf And turn down some more logging, now we have useful logging back again.. - -Build 1.7.2-10.12.0.1008: - Christian: - MinecraftForge/FML@4aa2416ce5dcd8e77761703c018d1e7d08464025 Propagate Optional method removal to trait implementation classes - MinecraftForge/FML@fc025a7b73d9b3f46ecf2257227657592f5506b5 Logging Changes - MinecraftForge/FML@f0132a6f3b47e746a1a7df3ef84f4be989f140dd changed fml log level to all - MinecraftForge/FML@f23eba4352c38fd21e04e81f3db72c6cafe65a36 put max number of FML log files to 3 - MinecraftForge/FML@449ac98b77025eba38a75d0242113fffe26a8cf9 SSP Worlds updating from 1.6 will now pop a warning message before loading, and will capture a timestamped zip file in the minecraft dir before starting to load. Allows for people to test updates. - MinecraftForge/FML@3557fe31c92ea8d76c90052f9b8b6da963300c4f Throw an exception when discriminator is not found - MinecraftForge/FML@25240457283ba40c32022c97fc982c2ff4408e46 Make NetworkEventFiringHandler sharable - MinecraftForge/FML@dfc0899ec66f87502b5727939ac2f0ad0fabf89f Merge pull request #357 from jk-5/sharable - MinecraftForge/FML@79d42fca8d6b9d73204890ef0edb9d73cf075d87 Merge pull request #355 from jk-5/errorhandling - MinecraftForge/FML@7907e16e96de21e8ba536906ae71adcf02bfa535 Add a type adapter for artifact version. Should fix #354 - MinecraftForge/FML@7ac5bddbc3c227e0ed9385904a2bd9621078e2de Allow indexed messages to validate themselves. Also, catch exceptions from an embedded channel, and cause them to close the connection. It's ugly, but it means that the client doesn't crash if it connects to a screwy bungycord that's trying a 1.6 handshake for some reason. - MinecraftForge/FML@5adacc3b336bacbe30aa06175ef80c3aac08a62a Check the mod, not it's container, in the check handler. Closes #358 - MinecraftForge/FML@3d26f28bcf3e79e1f5fe20fcf056c604487dc35b Allow connection when server is apparently offline. Might allow :NOFML circumvention though. Hmmm. Closes #359 - MinecraftForge/FML@a62374d4aceac1c4ab39b3c0bae624ccbca65b6b findBlock should now return null, not the default block, if the thing being looked for is not found. Closes #352 - MinecraftForge/FML@6a695c4348d062af50b8cf5208530fc5036eba17 Try and stop the epic channel closed spam at close time. Closes #353 - MinecraftForge/FML@35a38d7840a5d0cd842005822c4ec6a9d3b65b6a Make sidedproxy support non-public fields. Closes #344 - MinecraftForge/FML@9d2e089df692655df04315a3822f43140015f3af Merge branch 'logging' of github.com:AbrarSyed/FML into abrar-borked - MinecraftForge/FML@79b04898d43d354714e09ce7e66efb5357ebcf61 And restore suppressions. ABRAR, DON'T TIDY CODE!!!! - MinecraftForge/FML@3dfb54e066ab91e44405706233f2dfffee9add72 Merge branch 'trait-optional' of github.com:RainWarrior/FML - MinecraftForge/FML@32bb7315cc6beff84f186a33e73219cc5280821a Add in example assets dir. Closes #308 - MinecraftForge/FML@16d33d298953b41dbbe3e3b504e800f4f46a3e1b Clean up and document outbound handler a bit better. Add in dispatcher target. Closes #361 - MinecraftForge/FML@5719b9ec533b3e43213dbafcb448221884efd9e8 Fix reply handling. Make the proxy message available for subclasses of indexedcodec. Fire user events into the network event firing. - -Build 1.7.2-10.12.0.1007: - LexManos: Add support in Techne models for the TextureSize tag. Closes #856 - -Build 1.7.2-10.12.0.1006: - LexManos: Updated FML: MinecraftForge/FML@444a7d7fa1cf7fad7dda67f581fa0e3be36069b7 Move placement of single player world load hook to fix NPEs. - LexManos: Fixed RenderWorldLastEvent never being called, was missed in 1.7 update. Closes #932 - -Build 1.7.2-10.12.0.1005: - LexManos: Fix flexible rails, Closes #944 - -Build 1.7.2-10.12.0.1004: - LexManos: Fix warnings in Forge codebase. - LexManos: - Updated FML: - MinecraftForge/FML@7c5d62704ac1d3e586f3bfe26265a534e5362c73 Make UniqueIdentifier final and add a hashCode. Closes #348 - MinecraftForge/FML@ff7b5845e7f6b300d413b917f57adc472a4ebcff Clean up some warnings about @Override - MinecraftForge/FML@275ccac6f14bc66b88c76b1040aa7167f995967c Fix NPE at startup - MinecraftForge/FML@2a5a8d0cd062d3feac9c4de234e3dab1ff4462e5 Fix memory leak?! - -Build 1.7.2-10.12.0.1003: - Christian: - Add exception logging to forge channel handlers as well - - MinecraftForge/FML@53557dcd0582e09f7f35eb3bc2fd130fba3be4a0 Put logging exception handlers on all channel inbounds. Fix problem with failure to login. Closes #350 - -Build 1.7.2-10.12.0.1002: - Christian: MinecraftForge/FML@9c96ca4402e4c231285f170281dd543bfffa191a Fire a custom packet channel registration/deregistration event, for any mods that care about that kind of thing - -Build 1.7.2-10.12.0.1001: - Christian: - MinecraftForge/FML@e14efe786f6255a18e148c4137f560f5e2d2a38f Some fixes and tweaks - MinecraftForge/FML@c013870b1df5e63bd84d92545ebdd434db74b5d1 Merge branch 'simplenet' - MinecraftForge/FML@30882b0c1d2743afebbebc288d73f25696e0815c Clean up some warnings. Add in simple network impl - MinecraftForge/FML@9cab2ab36e7981c847e3e9ae8c3fbbb36531ba6d Add in some tests and examples for the "simple" network stuff - MinecraftForge/FML@a429e106dd00b34302ec5893e0a8fc97c8fc8019 Fix bug with SSP, and hook so we can do confirmation of world loading, as well as other things - -Build 1.7.2-10.12.0.1000: - Christian: - MinecraftForge/FML@b362e8a2733eb3082975edfdf83c996f048b65d3 At the request of AbrarSyed. - MinecraftForge/FML@e344303ec7a5ed27c4378ff072a036df7a350902 Merge pull request #346 from Jezzadabomb338/master - MinecraftForge/FML@a4686b1261a9bad523b4efa8a36a4433a58897cc Added basic Mojang account authentication support for development time login. - MinecraftForge/FML@dd17979a2f6f02ac4a9dda09b52c96365cc5fec9 Fix bukkit connectivity issue. - -Build 1.7.2-10.12.0.999: - Christian: - Updated FML: - MinecraftForge/FML@1db3daa0e82e67fc27ca3d535a09c806c1a54d67 added override toString method for getting full name. - MinecraftForge/FML@acf74a34032224a73c4c03280cafa0042c35cf5a changed the readme to reflect new setup task. - MinecraftForge/FML@96c19b35807fa078cb18b4ae50567d0360bcdb03 undid readme change - MinecraftForge/FML@a89939e57e9ff061df3d53cf1cb075b31de5de1b Merge pull request #336 from jadar/master - MinecraftForge/FML@717a8d694532bd9438eed8d9cf4b57318b2b4cfd Fix csv string vs list of strings. Thanks immibis. Closes #334 - MinecraftForge/FML@584c0f368bca1d5b0223b5b3611b366b9a00f7d7 Fix potential ordering issue, clean up some imports - MinecraftForge/FML@28293b29ea65c30fe80c49e85e2ae15a4db68933 Add in a simple(ish) event driven network handling system. Register using newEventDrivenChannel and you'll get a simple network handler that will fire events at the subscriber(s) of your choice, whenever a packet is received. You'll also get some convenience methods for sending to things. - MinecraftForge/FML@80b00dc7966d96111e2ce8643db8e0f544c2bc89 Fix openGui. Closes #342 - MinecraftForge/FML@fc69bcf2807dc2b85eb52681ba9531cb3e2f1945 Fix up privacy derp in TickEvent. Closes #343 - MinecraftForge/FML@10d056a494aac22137b644cff341a5958e8168fc Fix possible NPE derp - MinecraftForge/FML@5da6dcc7e3607e5f107f6a7d39a4b4e1eb7fb306 Divert connection through FML, so we can deny connections to servers that don't want us - -Build 1.7.2-10.12.0.998: - ohai.iChun: Squash commits so Lex would stop whining. Fix erroneous position when getting player position with changed eye height. - -Build 1.7.2-10.12.0.997: - Christian: - Updated FML: - MinecraftForge/FML@d5bfd69e35b21f701390a8c4c4c58d7ec1fff1fc Fix problem with connecting to vanilla. SHOW what's modded and what's vanilla in the list. Hooks that make the blocking work to come - MinecraftForge/FML@dd098854b0b65b8509b8788422e02d989a991b87 Fix the keybinding array to the right one - MinecraftForge/FML@43068eb9862f280611f26f4107ff5ac2b42b08e4 Fix TargetPoint to be static - -Build 1.7.2-10.12.0.996: - LexManos: Attempt to prevent a NPE when MC renders a lot of things at once. - -Build 1.7.2-10.12.0.995: - minalien: Fixed MinecraftForgeClient for custom Item Renderer implementations. Removed check for forward-slashes (/) in texture asset locations (but left check for backslash in place). - -Build 1.7.2-10.12.0.994: - LexManos: MinecraftForge/FML@0d810c01fab99ac491c2277097a4198518fe6c75 Mark jopt needed on the server, herp derp, blame Abrar! - -Build 1.7.2-10.12.0.993: - LexManos: Deprecate BlockFire.func_149842_a, and throw exception if someone tries to set the burn properties for air. Should prevent 'The Air is on fire!' reports. - LexManos: Fix DoublePlant placement, closes #921 - -Build 1.7.2-10.12.0.991: - verybigbro: Create ru_RU.lang - -Build 1.7.2-10.12.0.990: - Christian: - Updated FML: - MinecraftForge/FML@5317672631f30e1c9655f0bb28dd8b158deea2fb Add a utility method for finding the channel handler name based on type. Should fix naming weirdnesses. - MinecraftForge/FML@9de9a1553086ebeeb5d5fc0f6d96da8680e52df0 Fix stupid hardcoding derp - -Build 1.7.2-10.12.0.989: - Vexatos: Create de_DE.lang - Vexatos: Update de_DE.lang - LexManos: Fixed pipeline naming issue in the ForgeNetworkHandler. - -Build 1.7.2-10.12.0.987: - LexManos: Fixing an infinite recursion case, Closes #916 - LexManos: - Models now load from resource packs - Models must now be loaded from resource packs using the standard resource pack reference. For example, to load a model named "assets/mymod/models/mymodel.obj", you would call AdvancedModelLoader.loadModel("mymod:models/mymodel.obj"); - Closes #670 - LexManos: Fix panes/iron bars not connecting correctly. Closes #904 - LexManos: Fixed the run config for dev time server, Cloases #913 - -Build 1.7.2-10.12.0.986: - Adubbz: Made canBeReplacedByLeaves default to whether a block isn't opaque rather than if it is, also uninverted the checks for canBeReplacedByLeaves in WorldGenBigMushroom, WorldGenSwamp, WorldGenTaiga1 and WorldGenTaiga2 - -Build 1.7.2-10.12.0.985: - Christian: Fix inversion - -Build 1.7.2-10.12.0.984: - Christian: - Updated FML: - MinecraftForge/FML@21b13d63512ce399c82cbb6b9042eefa6dcdaacd Lots of network cleanup. Gui packets now work too! - MinecraftForge/FML@b3f98d1ee0416aa452f8611d458968afdf50775a Fix derpiness with Mods button when Realms is available - MinecraftForge/FML@cdd9d92a4f8cd199e2d8a34bb398ef32e5f1e275 Starting work on the actual GUI. Still work to do. Needs an API. - MinecraftForge/FML@ab5eb3ccfff7f9ccfd8720b23fcef3131e54d57d Fix button size for GuiModList - MinecraftForge/FML@3113138bd1377d71afe3b8290e18511bfb6e5e97 Tweak button positions. - MinecraftForge/FML@c5e29b574a315d48668ebc9189bcc497a0eae13e Avoiding redundant calls to LogManager - MinecraftForge/FML@fbc1f8f6f9effa4a538880f9fec0ce5010226d09 Config GUIs in the modlist now work. - MinecraftForge/FML@fa4f3015a0d7147cbde3edec7664e78e5bcacbb9 Added transparent background for GuiIngameModOptions as per cpw's request. May not compile due to manual de-mcp-fication. - MinecraftForge/FML@7bf119e1e54cadff690ec31a4bab93c0d1d0aad1 Fix up readmes and credits. We no longer support modloader. - MinecraftForge/FML@779cd05aa1ced720a63cc508b82e68cc6fc8daa9 Tweaks - MinecraftForge/FML@b51fb913551a5116cc3b9bb7583b1666f280c650 Merge branch 'patch-1' of github.com:airbreather/FML - Christian: - Updated FML: - MinecraftForge/FML@6f1da6550e10164bd6c678829f111bb5de9383b6 Fix up mcpname derp in GuiScrollingList. - -Build 1.7.2-10.12.0.982: - Adubbz: Fixed sky colour transitions on a render distance of 16, fixed the WorldGen of various things - -Build 1.7.2-10.12.0.981: - jk-5: Update ForgeMessage.java - jk-5: Added a constructor and made the fields package-private - jk-5: Added default constructor for reflection - -Build 1.7.2-10.12.0.980: - LexManos: Update patches for AT changes. - LexManos: Fix inverted login in BlockPistonBase causing blocks to break incorrectly. Closes #910 #909 - -Build 1.7.2-10.12.0.979: - Christian: - Updated FML: - MinecraftForge/FML@22ba6fda5ee2dbf29dc03ba93ff9c7707edeaeee Expose the nethandler in a few places, and pull out FMLEmbeddedChannel, exposing a utility method on it. More to come. - LexManos: Update for the FMLEmbeddedChannel change. - -Build 1.7.2-10.12.0.977: - Christian: - Fix build.gradle for tweakClass property - - Updated FML: - MinecraftForge/FML@f36152398d1d287e7a55a31c77a2614cfb63e1b6 Add in the tweakclass, fix the json for lzma @ the server. - -Build 1.7.2-10.12.0.976: - Christian: - Updated FML: - MinecraftForge/FML@5d069629cf47cd04f2002b3b9a2c32b0ea73c26e Allow itemstacks for furnace recipe inputs. Allow passing extra arguments through registerblock into the itemblock constructor. - -Build 1.7.2-10.12.0.975: - Christian: - Updated FML: - MinecraftForge/FML@061288909de0f0452adf51a5a9935fd09992c801 Fire simple network connect/disconnect gameevents. - -Build 1.7.2-10.12.0.974: - Adubbz: Made BlockCrops.getDrops call its super method - -Build 1.7.2-10.12.0.973: - Christian: Fix the network handler for forge - -Build 1.7.2-10.12.0.972: - Christian: - Updated FML: - MinecraftForge/FML@34819c9303870f560232464a2d16eb46d152515c Make gradlew executable on linux - MinecraftForge/FML@53a1f9841421b41d543d7d1d51319b44c86a527e Attempt to load old pre-1.7 worlds. ENSURE YOU HAVE A BACKUP! - MinecraftForge/FML@6a5f9e135f88b662e4e01e8882f861448910ca90 Fix example mod code for 1.7 - -Build 1.7.2-10.12.0.971: - Christian: Allow tools to override their material harvest levels. - -Build 1.7.2-10.12.0.970: - Christian: Tidier implementation of previous commit. Should fix for subclasses of individual tools too - -Build 1.7.2-10.12.0.969: - Christian: Add in harvesting abilities of the items, should fix effectiveness - -Build 1.7.2-10.12.0.968: - Christian: - Updated FML: - MinecraftForge/FML@f8d6213829d570501166d64d7c8bb4977567131f Update render registry - MinecraftForge/FML@ec316f113fefef12f6defed9eb68de368d7f4420 AT for renderblocks - -Build 1.7.2-10.12.0.967: - LexManos: - MinecraftForge/FML@3714426e19f8f0edaaeda8c787993f8f3615a44d fix derp in example builscript - MinecraftForge/FML@01fb451b6918599de5e732d7ff30c761438ab930 Merge pull request #311 from AbrarSyed/patch-3 - MinecraftForge/FML@30d532f4fc6fc65ea7e79707a75ff4d6ea0ea031 Pass 1: Most patches are restored. - MinecraftForge/FML@53127eec308d3929d68d3d9fafabcfef37e95c37 Merge branch 'master' of github.com:MinecraftForge/FML - MinecraftForge/FML@7ab3c3a37ceb8ab945208206aec86739a2138329 Update gitignore - MinecraftForge/FML@38cec7a11fae7cf12bda3a8d16a50bb6136d8886 The basic network handshaking for FML is done. All scenarios seem to work. - MinecraftForge/FML@9f928963f20bc9bbfbe1391fb16c6f5ca5fd4344 A network design I like. It uses the netty embedded channel to allow mods to build channel pipelines on top of custom payload packets. - MinecraftForge/FML@58f7487cfaf4a25a8349021b9cca5ef4ba0b541c Check in patches. Add in some network timeout tweaking values so you can debug the network. - MinecraftForge/FML@e544adba5c7e9286f917342af2669e5888fa0a17 More cleanup. Bidirectional server <-> client network works for mods as well as FML|HS now. - MinecraftForge/FML@f5c38e2359c2e6eca13cd6606465ee36086a7113 OK, network channels appear to be working well for both dedi and integrated servers. The beginnings of the new mod structure too. - MinecraftForge/FML@9c96a0a10a5cbe34786be8fd41f9818b5ac929bc More network stuff, partially done id syncing. - MinecraftForge/FML@2aaaeba15eabdec189daa8662e9ffdf0b5a09dbe ID loading from the server save now works. - LexManos: Kill liquids finally. - LexManos: Bump data for 1.7 start. - LexManos: Some work on 1.7, waiting for Abrar to fix a few things. - LexManos: - Updated FML: - MinecraftForge/FML@a30f17362764f3e4e594386e193f9e4368e6836e Add sonatype snapshots repo for SpecialSource snapshots. - MinecraftForge/FML@b2550b8a693315ccc205f5315eac67c5283d7af9 Add mappings for Items/Blocks fields. - MinecraftForge/FML@57f7f1d7abd304d3e9f42567f1d66c10122e4ec6 Update for fixed Enum cleaning and names. - MinecraftForge/FML@99c681ad8736e4976053718c3d453b2fb30eefe0 Did it manually, forgot it needed the end comma - LexManos: - Updated FML: - MinecraftForge/FML@1d71c017f45aa7ed9d7d7c5ed5250a8d22477980 ID syncing. - MinecraftForge/FML@fd36f50d8210342f65cb0272bac56a3bcc42dd18 Cleanups - MinecraftForge/FML@89e4e483c204c11b6fdfed34893fc223a7d6a899 Add in a remapping event for mods to consume. - MinecraftForge/FML@cd417c6786256fa23f181ff0b76696bc6dfb0291 Fixed remote and local connections work with mods now. - MinecraftForge/FML@ef492407ef812bb6bbc7f0bd8efbd16d07efcafb Entity spawning works. - MinecraftForge/FML@d0d31d9575403eb2ec058898b86ffd99a9220f75 SpawnAdjustment packet. Clean up stuffs. No more compile errors. - MinecraftForge/FML@3e278acb71e4e3d0406e80f0fad5071c9215ed33 Fix stupid possible compiler error. - MinecraftForge/FML@009d4dee2328cc8d97b74177a2c5a3c359e6564a Fix the exc file. Fix the deobfremapper for handling inner classes. - MinecraftForge/FML@49cb893d12bd4f82b5d1b50d1e6517a256525d32 Fix exc this time *sigh* - MinecraftForge/FML@31efcfc3b2085f5d4e070ddab34a0be1481b4c6f Clean up patches for latest exc. - MinecraftForge/FML@7a4ceebf5efe5b3650080cf912e371d92fc70a55 Kill old patches and add rejects to ignore file. - MinecraftForge/FML@7ea571f593464ad4226ba845da27ff66161621b1 Fix AT, Fix exc. Almost works now! - MinecraftForge/FML@b852e302851cfaf77e1db6f86408e8d049703656 First functional release under reobfuscation. - MinecraftForge/FML@df870c1a3341d8e2e88d7fc3e2f3d9ed2507989f Update shiped ForgeGradle for 1.7 - MinecraftForge/FML@55aa337f952bc72c5a001a6ed661978b11822c63 Rename synthetic bridge methods, these methods are not decompiled, but need to reobf correctly cross the recompile boundary. - MinecraftForge/FML@0098c57f94808751062ee45f2ee267324bb42089 Merge pull request #316 from AbrarSyed/patch-4 - LexManos: Comment out fluids until King gets his hands on it - LexManos: Killed a few hundred compile errors. - Christian: - Moved the core event handler parts to FML. Implemented the Forge network handler based on the new - netty strategy. - - Updated FML: - MinecraftForge/FML@3b2994a3def35a2d3058960b71dc59dc48b802f9 Some patching touchups - MinecraftForge/FML@557357fe179529e0b44aab2f3fcef0c5adf981d5 Update for log4j2 - MinecraftForge/FML@a2b324beb2ef6ec73000678c9305fd70d4ec1643 Copy eventhandler from Forge into FML. It is going to replace a lot of the runtime event systems. - MinecraftForge/FML@4071ff38afe15fddf5db0be882f5627f503a37c6 Patch some GUIs. We're gonna add some basic mod gui config support. - MinecraftForge/FML@0b419ac79c307579f162d47e0388a9d75bcd0a6e Fire a user event down the channels when a handshake has occured. - Christian: - Updated FML: - MinecraftForge/FML@32561265fc935cd6639d5b2e086e879f375676fa Ticks, Player events, keybindings, all migrated to the new event driven system. - LexManos: Inital patch update for 1.7.2, Doesn't compile, not done yet. - LexManos: - Updated FML: - MinecraftForge/FML@a17489172cd54ca955548b15fa0669c9f95d7f45 Code to disable mods at runtime, or other times. - MinecraftForge/FML@85516d9588ebfadbba25f21b2f973e4e81abbaa6 ICraftingHandler, IPickupHandler are now both events. - MinecraftForge/FML@e4b63a1801b453797f5e820eb3f5bd42e6d43948 IWorldGenerator now has an ordering at registration time. This means the order of worldgen should be much more stable. - MinecraftForge/FML@ef3856f9a34e82a05cb2b7715e3611f8fb1a9a6b Update patches for Gradle's rename rewrite: MinecraftForge/ForgeGradle@19e7acf2a27a6c6ae60f6e8ab38337defddc16d3 - MinecraftForge/FML@31ea100b29dfdb4fc907e212c3d49a5240ca72a9 Working on id missing handling - MinecraftForge/FML@3e76dfba34aaba4397fc3fb2bd28e0d1f0abe3e4 More tweaking on id stuffs at worldload - MinecraftForge/FML@f860c8ad3bc7537f885b27c7f045b5b1140c05f4 bump to legacy launcher 1.9 with logging unification stuffs. - bloodshot: - Refactored BiomeManager stronghold add/remove methods to support new - - MapGenStronghold dynamic biome changes. - Changed InitNoiseGensEvent to pass a NoiseGenerator array instead of - NoiseGeneratorOctaves due to new NoiseGeneratorPerlin in - ChunkProviderGenerate. - Fixed worldgen crash caused by wrong metadata in Chunk patch. - LexManos: Get object based on identity not name. - LexManos: Forge uses the FORGE channel for packets. - LexManos: Fix MethodNotFound crash when shutting down internal server. - LexManos: - Fix: - Block placement/interaction - Tesselator crash due to wrong mapping - Missing isreplaceable check in world.canPlaceAt - Small foratting/logging cleanup - Temporarly commented out efficancy changes till I implement it. - LexManos: - Updated FML: - MinecraftForge/FML@58132ccda3a575f10fc209c421fd5d80e01164cc Add new required --accessToken to launch specs. - LexManos: Bump version to 10.12.0 to mark 1.7. - LexManos: Fix debug HUD rendering semi-transparently. - LexManos: Temporary fix for items rendering with effects on one layer. Restores default vanilla rendering, which is considered a bug in modded community. - LexManos: Move Grass {Flower} registry to BiomeGenBase as 1.7 made flowers Biome specifc, this means modders who wish to add global base flowers need to add them to all the biomes indavidually. - LexManos: Fixed accedential inverted logic that caused Potions to render incorrectly. Thanks iChun. - LexManos: Fix items rendering on the GUI with invalid state due to glint rendering changing it. Thanks iChun. - Christian: - Updated FML: - MinecraftForge/FML@156a9ae03a3c80bd1499a8e692c44a322ad9df62 Fix build script - MinecraftForge/FML@7d3b1250e8368886bed0e0da350a94abaa4b6247 Fix handshaking properly. Also, fix ID syncup. It now will completely freeze the idmap after preinit. This frozen map is used to inject "new" stuff into existing serverside worlds. Interesting sideeffect: remote servers lacking things will change the client, to also LACK ids for those things. watch for -1 ids in your remap events. Note: idmaps should be considered temporary per server instance. SERVERSTOPPED will restore "startup" state, as will client logout. - LexManos: - MinecraftForge/FML@c180d9b15735ce89a38c497acd65fa3fab595f77 Add 1.7.2 base json, Gradle will automatically download updated versions of this. Keeping it in the repo allows us to se - e what base json we have built our jsons off of. And if it changes update accordingly. - LexManos: Added constructor to WorldType, and delegated the BiomeLayer management to it. Also updated the access transformer for Item/Block classes. - LexManos: Forgot to regen patches... - LexManos: Resize pending tile updates when it goes over the curent length. Fixed AIOOB error. - LexManos: Add a version check mechanic to startup, it is done in a seperate thread and has a config option to compleetly disable it. This allows us to notify users of new recomended builds. Hopefully stemming the flow of outdated help request. Also adds a warning to the main screen if you are running a 'Beta' Forge. Which means a Forge for a new version of Minecraft that we have not promoted a recomended build for yet. - LexManos: Fix dig speed on redstone ore and obsidian. - ohai.iChun: Add render offset to event. - Christian: - Updated FML: - MinecraftForge/FML@268bbabee6ae3fa1d596bd18e172298e26dc9ce4 Fix handling world reloads when new stuffs are added - -Build 1.6.4-9.11.1.964: - LexManos: - Bump build for gradle fixes: - Now Builds for java 1.6 - Include version,json in universal - Fixed classpath issues in eclipse task. - -Build 1.6.4-9.11.1.963: - luacs1998: - Update readme for ForgeGradle - - Let me know if there's anything else to add or change. - luacs1998: Updated - luacs1998: Another update for eclipse users - luacs1998: Update README.txt - -Build 1.6.4-9.11.1.961: - LexManos: Updated FML: MinecraftForge/FML@c2b919d339e5f63271cfb67a77235c21c5c3b80e Don't validate signatures in dev env. - -Build 960: - Abrar Syed: Step 1: The Purge - Abrar Syed: update FML for gradle changes - Abrar Syed: Step 2: The Reformation - Abrar Syed: Step 3: The Rebirth - Abrar Syed: fixed versioning and stuff - Abrar Syed: added buildSrc to the gitIgnore - LexManos: Fix for new FML, and publish to maven local - LexManos: Update run configs. - LexManos: - Updated FML: - MinecraftForge/FML@e9a7660cb8961660186c7c23e61ab35f9c2dfb81 updated samples - MinecraftForge/FML@30894f7afadf5d3f3c3d5a54c3f904413d5f2309 Merge pull request #307 from AbrarSyed/master - MinecraftForge/FML@c4b8a393f90b00ad7ee4992ea4341ffb6d676abb Make the working directory the root of the eclipse workspace. - LexManos: Regenerate all patches, No functional change as added this is a formatting change only. - Abrar Syed: update build.gradle - porcariadagata: Make the gradle wrapper executable. - LexManos: Proper configuratuion name for jenkins. - LexManos: Fix build file pom closures. - -Build 1.6.4-9.11.1.953: - LexManos: Fix NPE on specific tile entities when the block break event is canceled. Closes #863 - LexManos: Fix NPE in FakePlayers when they are created in a purely client side environment. To remove in 1.7 as FakePlayers should be used for server side interaction with the world on a player's behalf, not for client rendering. - -Build 1.6.4-9.11.1.952: - Christian: - Updated FML: - MinecraftForge/FML@23baf3a8ce58cb8306189401a60647957ccbb4c2 Actually fix the nethandler code - - Update patches - -Build 1.6.4-9.11.1.951: - Christian: - Updated FML: - MinecraftForge/FML@b7f34629c3c47b92ee89d72b0dc935b4997cb009 Don't try and open GUIs on the server. - Christian: - Updated FML: - MinecraftForge/FML@da72640c7ef1f44c49f7f592fbdd193622a30b40 Way to go, missing import. *sigh* - -Build 1.6.4-9.11.1.949: - Christian: - Updated FML: - MinecraftForge/FML@6af42bc656dfb98972d034363352affc9e777805 Add in null protection for client/server sides of handleChat - Christian: Don't send openGui commands from the fakeplayer. Fixes thaumcraft and probably others. - -Build 1.6.4-9.11.1.948: - CovertJaguar: Fix Water/Lava Fluid Localization - -Build 1.6.4-9.11.1.947: - LexManos: Noop out FakePlayer.addStat. - -Build 1.6.4-9.11.1.946: - Christian: - Updated FML: - MinecraftForge/FML@3d25b4e793c59a9131a441d6c7a2d80cac9cd701 Add in the ability to strip interface references for specific interfaces - this is probably mostly useful for scala scenarios where sythetic methods are generated and is not a substitute for using Optional.Method where appropriate. Closes #300 - -Build 1.6.4-9.11.1.945: - onibait: Add block break events based on @bloodmc's initial 1.5.2 Pull Request - onibait: Add block break events based on @bloodmc's initial 1.5.2 Pull Request - onibait: Fixed formatting - onibait: - Cleaned up patches to BlockOre and BlockRedstoneOre - Fixed trailing whitespace (it bugs me too) - -Build 1.6.4-9.11.1.944: - Christian: - Updated FML: - MinecraftForge/FML@f4532410ec1dbf43ce15dfa78d07e5f7be408b08 Change a couple of warnings, as a prelude to 1.7- preinit is now required for all GameRegistry activity, and every item and block REQUIRES registration. - -Build 1.6.4-9.11.1.943: - Christian: - Updated FML: - MinecraftForge/FML@8f87021b0f1ae5b277ad4d1891761b7a7ae1ab71 Fix derp with custom properties. They work now! - -Build 1.6.4-9.11.1.942: - Christian: - Updated FML: - MinecraftForge/FML@bc57ff9e83803d804e9d5374d76273fcd68611f4 Fix recursive API dependency resolution. Allows nested APIs, such as BuildCraft's - -Build 1.6.4-9.11.1.941: - Christian: - Updated FML: - MinecraftForge/FML@de8ab934d8ae960ebc0dede16218ca1e9e488ebc Fix up duplicate entries - -Build 1.6.4-9.11.1.940: - Christian: - Updated FML: - MinecraftForge/FML@81fe1c9682234297443402a54e4b852ef49d0ba8 Add in an API marker for API type packages. This does several things: 1. Packages marked as API will generate a new "modid" (the provides) that can be depended on. 2. Packages marked as API will be searched systemwide, and anything declaring that package (even without the API marker) will get an implicit dependency on the API package. 3. The API package itself will get a soft dependency on the "owner" package. - -Build 1.6.4-9.11.1.939: - LexManos: Add new recipe sorter that is called after all mods are initalized. This is disabled by default in 1.6 to not break current worlds as it may change machine's recipy outputs. Will enable by default in 1.7. Players may enable it in the forge config. - -Build 1.6.4-9.11.1.938: - xcompwiz: - Adds a Check to prevent Biome Replacement - - Splits the BiomeGenBase constructor to create one which takes a flag - that indicates whether to insert the biome object into the biomeList - array. The standard constructor calls the new one with the default of - true. This allows biome wrapper-objects to exist. - -Build 1.6.4-9.11.1.937: - Christian: - Updated FML: - MinecraftForge/FML@dac7f590eabb326c4467dbc829b4aae1e4be2779 Modify ordering of networkmod registration and mod instantiation. This fixes VersionCheckHandler logging an incorrect failure message due to NPE. - MinecraftForge/FML@f0dc530b2833a1c89673208fe296dba5520671c1 Fix up documentation of VersionCheckHandler - it only ever accepted a String and only works on the NetworkMod annotated class - MinecraftForge/FML@243a21a353e6b7717f64008776928c7132110ddf Wrapping coremods as tweakers. Part 1. - MinecraftForge/FML@58a299aabcfadb4139f126a2d46b5247bede4185 Attempt to inject coremods as tweakers, so both can share a dependency ordering - LexManos: Format strings properly in MC's internal logger. Fixes resource pack case warnings. - -Build 1.6.4-9.11.1.935: - LexManos: Updated FML: MinecraftForge/FML@bf54d4d66799f2e58944095826d0722ed0120b1f Make each mod's EventBus log a child of it's main logger. - LexManos: Fix null pointer exception in BiomeDictionary causing the ChunkManager's config to not load/save. - -Build 1.6.4-9.11.1.934: - LexManos: Add wildcard versions of OreDict replacements, Closes #827 - -Build 1.6.4-9.11.1.933: - Christian: - Updated FML: - MinecraftForge/FML@da4337efbfa07b35f5883107768f9ba2f1b24b9b Fix up handling the new method signature data for NetworkCheckHandlers - -Build 1.6.4-9.11.1.931: - Christian: - Updated FML: - MinecraftForge/FML@f92962bbbbb90c19788a5dc2eafdc2eeefdd77ce Use null to empty, so missing values work. *sigh* - -Build 1.6.4-9.11.1.930: - Christian: Add in an event for zombie summoning. Allows for mods to control summoning behaviour, as well as custom summoned mob. - Christian: And remember to make the event class static *sigh* - -Build 1.6.4-9.11.1.928: - Christian: And allow for tweaking baby chance as well. - Christian: And set the RIGHT variable *sigh* - -Build 1.6.4-9.11.1.926: - Christian: Allow configuration of the zombie additional summoning mechanic. The vanilla mechanic is a little borked at times. - -Build 1.6.4-9.11.1.925: - Christian: - Updated FML: - MinecraftForge/FML@58577775d277a4408bda510534eb36841b08ced4 Very minor style fixes - MinecraftForge/FML@96be82343c25b83dd842ada8d6e8b66eb4e4ee00 Merge pull request #280 from mc10/patch-1 - MinecraftForge/FML@2714da10228020a6f2321f6c9a703f0d24fe1370 Primitive capability for tweakers to order. Add a "TweakOrder" integer property to your manifest, or accept the default of zero. - -Build 1.6.4-9.11.1.924: - LexManos: Prevent session from being printed to the console, also make sure the username is not empty. Causes a lot of bugs further down the line. - -Build 1.6.4-9.11.1.923: - Christian: - Updated FML: - MinecraftForge/FML@fc3e7647d2aff01146b1f5bd2ab6b57ef8e833e5 Support, and fix up, interface lists for Optional - -Build 1.6.4-9.11.1.922: - LexManos: Added some missing air checks to world gen features. - -Build 1.6.4-9.11.1.921: - LexManos: Fix repeated argument in CleintCommands. - -Build 1.6.4-9.11.1.920: - LexManos: MinecraftForge/FML@a381874bb9c3bdeeb508bb81719b4d210eb29696 Delay sound system backend initalization to speed up startup and prevent race condition on some computers. - -Build 1.6.4-9.11.1.919: - reflex_ion: - Added PlayerOpenContainerEvent and added ForgeHooks.canInteractWith - - - Used to override the canInteractWith during player tick - - setResult to ALLOW/DENY as required - - Defaults to Vanilla behaviour in any other instance. - - Required for LittleBlocks Mod and to Assist Gullivers Mod - -Build 1.6.4-9.11.1.918: - Christian: - Updated FML: - MinecraftForge/FML@bc64ceabef76b1f4667b22ca8241b72351b44338 Optional shouldn't be constructable itself. It's purely a wrapper thing. - MinecraftForge/FML@55525f6d2eb24f42c26a291b8ce98feb4d4498c9 ModLoader is officially deprecated. It will all cease to be with 1.7. - -Build 1.6.4-9.11.1.917: - Christian: - Updated FML: - MinecraftForge/FML@63ba3aa0099f43183315fb4e16f9e8e8007362f8 Add in support for Optional interfaces and methods. Be gone coremods! - -Build 1.6.4-9.11.1.916: - LexManos: Fix missing patch which caused per-world storage to not be saved. - -Build 1.6.4-9.11.1.915: - rhilenova: Added pre/post to player list rendering in GuiIngameForge. - rhilenova: Moved PLAYER_LIST event inside display check. - -Build 1.6.4-9.11.1.914: - LexManos: - Make isItemStackDamageable() pass the stack to getMaxDamage() to use the Forge version of getMaxDamage(). - Fixes display issues with mods using getMaxDamage(ItemStack) instead of the vanilla one. Closes #805 - LexManos: Bump version number for todays changes. - -Build 1.6.4-9.11.0.913: - ben.blank: allow blocks to choose how they handle indirect power - ben.blank: move `shouldCheckWeakPower` to Forge section - -Build 1.6.4-9.11.0.912: - jrtc27: Pass arguments to install.sh and install.cmd to install.py - -Build 1.6.4-9.11.0.911: - LexManos: Add cancelable EntityStructByLightningEvent, Closes #789 - -Build 1.6.4-9.11.0.910: - LexManos: Stack sensitive version of Item.getItemStackLimit. Closes #771 - -Build 1.6.4-9.11.0.909: - Anthony Lomeli: Villager Trading GUI will not open if Player is sneaking. - -Build 1.6.4-9.11.0.908: - LexManos: Added all the vanilla records to the ore dictionary. Closes #731 - -Build 1.6.4-9.11.0.907: - LexManos: Direct canApplyAtEnchantingTable through canApply Closes #740 - -Build 1.6.4-9.11.0.906: - LexManos: Add pre and post event to rendering Chat, allowing for placement of the chat box. Closes #733 - -Build 1.6.4-9.11.0.905: - LexManos: Set densityDir in BlockFluidBase's constructor, closes #737 - -Build 1.6.4-9.11.0.904: - LexManos: Fix placement of snow cover over metadata 6. Closes #724 - -Build 1.6.4-9.11.0.903: - LexManos: - Add the ability to register chat commands that only execute on the client. Works with autocomplete. - Client commands are gray when shown in the autocomplete list (when you press tab) - Closes #640 - -Build 1.6.4-9.11.0.902: - LexManos: Update workspace to point at launchwrapper 1.8 - LexManos: Vanilla hopper should obey the IInventory contract, TileEntityHopper now takes into account IInventory.getInventoryStackLimit() when inserting items Closes #597. - -Build 1.6.4-9.11.0.901: - hobos_taco: - Added ItemTooltipEvent - - This event is fired at the end of ItemStack.getTooltip(EntityPlayer, boolean), which in turn is called from it's respective GUIContainer. It allows an itemstack's tooltip to be changed depending on the player, itemstack or whether the advanced information on item tooltips is being shown, toggled by F3+H. - -Build 1.6.4-9.11.0.900: - Christian: - Updated FML: - MinecraftForge/FML@5265e34a350adbb762264379f0134bfa40d33eaa Fix null killing the server - -Build 1.6.4-9.11.0.899: - LexManos: MinecraftForge/FML@35ab9f52b02d84592e4c7607feb6009710b2f7d9 Fix md5s for new checksums.sha1 in scala libraries. - -Build 1.6.4-9.11.0.898: - Christian: - Updated FML: - MinecraftForge/FML@e356f4d713b1269825839954fe86f5312ede0fc6 Cross-modsystem compatibility fix with thanks to Mumfrey @ liteloader - MinecraftForge/FML@9b55f1f48f89a5348ac1d58622b71946f310316a Attempt at a shared modlist implementation - should allow visibility between liteloader and fml for "mod list display" - -Build 1.6.4-9.11.0.897: - Christian: - Updated FML: - MinecraftForge/FML@bfc25bc5da1ff0f6fd0faf817b32a8f6d35dedc2 Add to both the classloader and the parent - -Build 1.6.4-9.11.0.896: - Christian: - Updated FML: - MinecraftForge/FML@9f0f9e7288afc6cce9a425ad770a208af9e28648 Fix deobf tweaker - -Build 1.6.4-9.11.0.895: - Christian: - Updated FML: - MinecraftForge/FML@ce6404fd5bb5e8e425af3bcafeaa285575bf39a3 TYPOS!!! - -Build 1.6.4-9.11.0.894: - Christian: - Updated FML: - MinecraftForge/FML@8f18a3de9a02b003762dace891829ef64dfedf49 Separate deobf tweaker so it runs last. Should fix problems with cascaded tweakers expecting an obf environment. - -Build 1.6.4-9.11.0.893: - Christian: - Updated FML: - MinecraftForge/FML@8e26c99de3b44d272d2fdc398e0687db17bce3b7 Add debugging for deobfuscation - MinecraftForge/FML@1d902df5814b815959165e4aa69272003f002d25 Use the negative cache in latest legacylauncher. - MinecraftForge/FML@9815d8c3793182a08fcdbd29376a3f70bff464d0 Update for launchwrapper 1.8 - -Build 1.6.4-9.11.0.892: - LexManos: Add wrapper exception to the new Structure ID system to point to the correct Structure. - -Build 1.6.4-9.11.0.891: - LexManos: Update dev workspace for 1.6.4 .. - LexManos: Remove some side onlys on BiomeEvents that don't need them. - LexManos: Fixed typo in bounding box based ladder checks that caused potential infinite loops with entities in certian positions. Thanks Overmind for reporting it. - LexManos: - Updated FML: - MinecraftForge/FML@fc8c3bef0380d59c0842a252e4f0bd29127ee78b Update to new installer that uses xz compression and better support for non-standard jvms - -Build 1.6.4-9.11.0.886: - Christian: - Updated FML: - MinecraftForge/FML@a4de22c1addf0a6b95d38e467a96f2af417c86d5 And use the parent that's actually going to be valid. *sigh* - -Build 1.6.4-9.11.0.885: - CovertJaguar: - Fluid Rarity should have a default - - Oops. - Christian: - Updated FML: - MinecraftForge/FML@70cffe6982b27df0ea7d8d4d8851a0c0043bb2cb Herpaderp. Make addURL accessible. *sigh* - -Build 1.6.4-9.11.0.884: - Christian: - Updated FML: - MinecraftForge/FML@4a94c2c71bb4cc9644caeb06011a189989b22f87 Fix NPE when loading second single-player world - MinecraftForge/FML@0e80fcb8f716cfef5b016a73ca32ff0e2f3c3c05 Merge pull request #284 from smcv/uninit - MinecraftForge/FML@39620f1e41464f53482277dc3bcb0b9eed8ca25c Fix injection of tweaker into system - -Build 1.6.4-9.11.0.883: - Christian: - Updated FML: - MinecraftForge/FML@79c39f8b7c711377f7919abd1ee6a56a339d1062 Fix classpath for launchwrapper 1.7 - -Build 1.6.4-9.11.0.882: - traincrazyb: Correcting SoundManager Transformer - -Build 1.6.4-9.11.0.881: - Christian: Clean patch fuzz - -Build 1.6.4-9.11.0.880: - Christian: - Updated FML: - MinecraftForge/FML@f6190e8752013c0d6857090ffd42559cf83809ae Update workspaces for 1.6.4 - -Build 1.6.4-9.11.0.879: - Christian: - Updated FML: - MinecraftForge/FML@25981706ef12654b6c2baccc80fa2298bb5afb4a Update for MC 1.6.4 - MinecraftForge/FML@0950b9fc8441a2d3b022ed876f17ee5ac0c47b9c Fix up a deep crash in the early server init hanging the client - -Build 1.6.3-9.11.0.878: - LexManos: Remove duplicate access transformer - LexManos: Move have handler creation up, to prevent NPE. - -Build 1.6.3-9.11.0.877: - LexManos: - Updated FML: - MinecraftForge/FML@e7dd728f955aa4713fef45fea770b1f91246d712 Format the log messages through MessageFormat. Thanks CovertJaguar for the pointer. - MinecraftForge/FML@82d896a35e08be5712bdc15bdb93e5d4fc0ddd46 Make final transformers actually work on methods as well. - -Build 1.6.3-9.11.0.876: - LexManos: Move the Structure data save files to per-world data folders. Vanilla saves them to the global folder which will potentially cause conflicts if two worlds generate 'Villages'. Which in the modded world is highly likely. Refer back to the long standing vanilla issue where nether 'villages' would override the overworlds villages, it's the same situation. - -Build 1.6.3-9.11.0.875: - LexManos: Make MapGenStructureIO name registration functions public, Any mod that has anything extending StructureStart or StructureComponent must register there classes and create a default (no parameter) constructor. - -Build 1.6.3-9.11.0.874: - LexManos: Unfinalized Item.getIconIndex(ItemStack) - -Build 1.6.3-9.11.0.873: - LexManos: - Updated FML: - MinecraftForge/FML@da70cdd35a378d02db47d2aa31fb9aac87beaedc Update tweaker for new Launcher API - MinecraftForge/FML@352117fd78eec745da6c80b8d354947c4dbbbb48 Update for new installer and thank you. - MinecraftForge/FML@40a34af43105ebcb5a63ce2351ca119da5a8158e Merge branch 'master' into newtweak - MinecraftForge/FML@e77d2547ad447025729ae7f3cccaaf343c4c86f9 Update for pre-ninja 1.6.3 update - MinecraftForge/FML@34493b0d99e2cf2bdca080ff226f2dfeedb1cf51 Update for real 1.6.3 update - MinecraftForge/FML@95afc95b248ecc69bc6ffcc5a95912820d8f4066 Update mcp mod info - MinecraftForge/FML@ff75416a325717770a5cf457c859bfb0abcbe281 Update mc_versions data and commands patch and eclipse workspace - MinecraftForge/FML@8f2e67558127f16d92399ea97cbcb0df46d52e19 Update the src distro's eclipse workspace. - LexManos: Bump version for new MC version. - LexManos: Actually push the submodule update -.- - -Build 1.6.2-9.10.1.871: - Christian: - Updated FML: - MinecraftForge/FML@81328b6684c5127427153807b5e498c2efefb96b Add in support for using a mirror list and provide checksums for packed download of libs - -Build 1.6.2-9.10.1.870: - Christian: - Revert "Added a RenderType that allows Map-style rendering w/o inheriting from" - - This reverts commit eb4688bf5ea132cd8ddc802a7dad6d423ad50543. - - Conflicts: - patches/minecraft/net/minecraft/client/renderer/ItemRenderer.java.patch - -Build 1.6.2-9.10.1.869: - vilim.lendvaj: Prevent NPE in fluid lookup for block - Christian: Fix broken PR from vilml. TEST! - -Build 1.6.2-9.10.1.867: - CovertJaguar: - Allow Fluids to have Rarities - - Used for tool tips. - -Build 1.6.2-9.10.1.866: - Christian: Fix the divider - -Build 1.6.2-9.10.1.865: - Adubbz: - Sky colours now smoothly transition - - Made transitions even smoother - - Sky colours now smoothly transition - Christian: Move stuff around a bit- also tie range and enabled to options. - -Build 1.6.2-9.10.1.864: - ml: - Added a RenderType that allows Map-style rendering w/o inheriting from - ItemMap. - Christian: Tweak patch comment - -Build 1.6.2-9.10.1.863: - mitchpetrie29: Check if block is air instead of just ID zero when growing from stem block. - -Build 1.6.2-9.10.1.862: - Christian: Allows proper raytracing from actual player eye position rather than hardcoded eye heights. - -Build 1.6.2-9.10.1.861: - claire.alexandria: Added fov hook - claire.alexandria: fixed merge - claire.alexandria: Small formatting changes (opening braces on new line) - -Build 1.6.2-9.10.1.860: - Christian: - Updated FML: - MinecraftForge/FML@b5af446d7111730c7973c9f0d6b76e62b78b9131 Fix sidedness derp in LanguageRegistry. - -Build 1.6.2-9.10.1.859: - Christian: The partial tick should be available for all render player events. Weird it wasn't. - -Build 1.6.2-9.10.1.858: - Christian: Reverting HarvestEvent, for new implementation - Christian: Redo harvest event. This time with simpler logic, that should be less liable to weird "missing" stuff. - -Build 1.6.2-9.10.1.857: - LexManos: Fix bug where guis were not closed properly, resulting in signs not having there text set. - -Build 1.6.2-9.10.1.856: - Christian: Change trigger calculation so entities get some time to age before refiring the event. - -Build 1.6.2-9.10.1.855: - LexManos: Create helper apply_patches script and add paramter to change patch output folder. - -Build 1.6.2-9.10.1.854: - Christian: - Change from Cancelable to using a Result. This means you can force despawn mobs you - don't want around anymore. Also, deferred check to once every 20 ticks. May tune it - down further or make it a config if this event is a lag issue. - -Build 1.6.2-9.10.1.853: - Christian: - Add a cancellable despawn event- allows mods to decide to prevent the despawning - of certain otherwise normally despawnable mobs. - Christian: - Added fov hook - - Small formatting changes (opening braces on new line) - Christian: Create es_ES.lang - -Build 1.6.2-9.10.1.852: - Christian: Add some javadoc to the HarvestBlock event. - -Build 1.6.2-9.10.1.851: - Christian: Use the dropchance from the event. - Christian: Clean up some formatting. - -Build 1.6.2-9.10.1.850: - claire.alexandria: Added tessellation methods to obj model, for ISBRH-friendliness - claire.alexandria: Fixed both RenderAllExcept behaviours - claire.alexandria: Added more render methods to IModelCustom interface. - jk-5: - Added GuiOpenEvent - - You can use this for a clean way to override guis, without needing an - TickHandler to check if the gui you want to override is open and show - your own gui - - Proper close check - mhahn: - capacity was not respected - - Updated to properly calculate the amount of free space in the tank - before checking that against the amount of the resource. - robin: create french localization - claire.alexandria: Added display name hook - claire.alexandria: Memoization of display name result - claire.alexandria: Added mouse event - claire.alexandria: inserted hook into Minecraft.java - claire.alexandria: fixed logic error - ohai.iChun: - Fix player push out of blocks clientside being hardcoded and not based on entity size. - Added player eyeHeight field to allow changeable eye heights of players rather than being hardcoded per player class as well as add a getDefaultEyeHeight function. - Christian: Reduce patch size significantly - Christian: Fix patch for new MCP naming. - Christian: Add a bit of javadoc - Christian: MachineMuse, remember, there's TWO model formats supported! - Christian: Defer firing CreateDecorator until it's likely mods have had a chance to register their listener. Should close #759 - Christian: - Add a harvestblock event, to allow mods to intercept and change the drops for blocks. Don't abuse this, or we'll have to take safety measures. - Fires for both silktouch and non-silktouch harvesting, and provides the player. Note, you may need to - change your break overrides to pass on the player for best results. - Christian: Add in a block reverse lookup for fluids. Closes #749 - -Build 1.6.2-9.10.1.849: - Christian: - Update forge for MCP naming updates - - Updated FML: - MinecraftForge/FML@d0c6e92900590f578b80d9a6c00fa28fd333d3bf Update MCP data - Christian: Update version to 9.10.1 for mcp naming changes. - -Build 1.6.2-9.10.0.848: - Christian: Fix possible NPE in searching code. - -Build 1.6.2-9.10.0.847: - Christian: - Updated FML: - MinecraftForge/FML@2a9c485edc4cf3382154d5b3b9b600386f2ab8ae Remove @SideOnly from 70318 (getDistance) it makes no sense that it's not on the server. - -Build 1.6.2-9.10.0.846: - Christian: - Updated FML: - MinecraftForge/FML@a13598b17ea9637c054d867a76298d6c080c5e32 Use java 1.6 compatible method of closing the zip file. Stops stupid compile error. - -Build 1.6.2-9.10.0.845: - Christian: Small fix to container registry. emptyContainer is not null, it's "NULL_EMPTYCONTAINER" now and won't match any valid container. - -Build 1.6.2-9.10.0.844: - Christian: Tweak the release to add in assets to the distributable. *sigh* - -Build 1.6.2-9.10.0.843: - Christian: - Updated FML: - MinecraftForge/FML@1c9a853868f7df0daa5f67b99401dfab44ae18e6 Allow coremods to properly inject asset readers. - MinecraftForge/FML@40b54013b4c9b01686411cd47a7866eeb650ea2b Allow server side lang file injection, hopefully - Christian: Add some starting work for a forge tps command. Also update coremod for new FML behaviour - -Build 1.6.2-9.10.0.842: - Christian: - Updated FML: - MinecraftForge/FML@b993cf4a9825865b3a8a0c7b083c23d56dbd1d6f More exception handling for less derpiness. - -Build 1.6.2-9.10.0.841: - Christian: - In the time honoured tradition of trying to fix vanilla, we today attempt to patch the pathfinding AI so that it doesn't lag when - there's a lot of entities. Basically, if the zombie can't reach the villager, backoff subsequent pathfinding attempts. Hopefully - should really help with lag caused by zombie swarms. - -Build 1.6.2-9.10.0.840: - Christian: Allow multipass RenderItem rendering for terrain icons too. Should fix sengir's saplings. - -Build 1.6.2-9.10.0.839: - Christian: - Updated FML: - MinecraftForge/FML@913f6f6d36bd179db7c147db0485e99dee693933 Try and use the relaunch log, which should be classloaded.. - MinecraftForge/FML@ac065ff5f76b6c512b346366107efde66e9e1c88 Reset the IWorldGenerator seed for each mod, before calling. That should mean worldgen is consistent and not dependent on mod ordering, or mod sideeffects. - -Build 1.6.2-9.10.0.838: - LexManos: Cache world on all render passes in case some mod disables the first pass. - LexManos: Skipp toss event for null entity items. Closes #732 - -Build 1.6.2-9.10.0.837: - LexManos: Fix bug with custom Fluids. You can now drown in them! - -Build 1.6.2-9.10.0.836: - Christian: - Updated FML: - MinecraftForge/FML@9468e41bbf3ea425c50daa710cf3ada11c82b238 Fix up scala refs, for better results - -Build 1.6.2-9.10.0.835: - Nick: - Adds Temperature to Lava - - Missing lava temperature. Feel free to change it to any value. - 1300K is the typical max for Magma so wasn't sure what was desired. Regardless, better than the same temp as water at 295K :smile: - -Build 1.6.2-9.10.0.834: - Christian: - Updated FML: - MinecraftForge/FML@4a9d0f9bd522e543b76daaf9c49b6214443c595f Add in some log information - Christian: - Updated FML: - MinecraftForge/FML@f157e7a6ecdeac2758fc0eaf547d3e8a763fb15b And more coremod logging - Christian: - Updated FML: - MinecraftForge/FML@ffdd056a18eddb8f28b74435d40e69c956b9dd48 Check keys, not values *sigh* - -Build 1.6.2-9.10.0.833: - Christian: - Updated FML: - MinecraftForge/FML@03989166665956df03aa85472eb13dca2d74a38d And actually instantiate the collection *sigh* - -Build 1.6.2-9.10.0.832: - Christian: - Updated FML: - MinecraftForge/FML@dec9a3924d361bc016cb7f6b3e95764158cf5ae1 Add in "FMLCorePluginContainsMod" in the manifest. If this value is present, FML will attempt to parse your mod jar file as a normal mod file as well, instantiating mod containers there. - -Build 1.6.2-9.10.0.831: - Christian: - Updated FML: - MinecraftForge/FML@24701206808a43b9c7b10d7130c47b5d1e841bb6 Clean up a couple of resources. Also, don't parse jars just because they're in the mods dir - -Build 1.6.2-9.10.0.830: - Christian: - Updated FML: - MinecraftForge/FML@9a5e24e338c6172531efb086a4b584c26d4f1435 Fix stupid derp is stupid. Closes #275 and means sp614x can do his thing - MinecraftForge/FML@ba90b616070ce15793eb05e5afaed62a6f07c6e7 Make sure we only add args to the argument list if a tweaker hasn't already. Should fix LiteLoader compatibility issue. - -Build 1.6.2-9.10.0.829: - LexManos: Fix NPE in enchangint books. - -Build 1.6.2-9.10.0.828: - LexManos: Fix inverted case, search works now. - -Build 1.6.2-9.10.0.826: - ross.swartz: Add stone and cobblestone to Ore Dictionary - ross.swartz: Update OreDictionary.java - LexManos: Addition: Added isAllowedOnBooks hook to Enchantments Closes #589 - -Build 1.6.2-9.10.0.825: - LexManos: Deprecate Block.addCreativeItems, Kill in 1.6.3+ Closes #655 - -Build 1.6.2-9.10.0.824: - mehvids: Add onNeighborTileChange callback to block by generalizing func_96440_m to all blocks rather than just comparators. - -Build 1.6.2-9.10.0.822: - malc.geddes: Added a new function to allow control over whether an entity is dismounted when the entity it is riding goes under water - LexManos: Allow creative tabs to have a search box if they want to Closes #592 - -Build 1.6.2-9.10.0.821: - tommy.stanley96: Fixed Fluid Non-Solid Block Duplication - tommy.stanley96: Fixed Double Item Drop - tommy.stanley96: Fixed Classic Checking - -Build 1.6.2-9.10.0.820: - LexManos: Add optional feature to check entire bounding box for ladders. Closes #709 - -Build 1.6.2-9.10.0.819: - LexManos: Only refresh vanilla tile entities when IDs change. - -Build 1.6.2-9.10.0.818: - LexManos: - Updated FML: - MinecraftForge/FML@f275a24b43559cfdced243ff77e9848c9d458362 Add in some reverse lookup methods for game registry data - MinecraftForge/FML@cb05c8c4aa60a131de92f0a21c06697c8f8896a8 Add missing SideOnly in BaseMod - MinecraftForge/FML@1857064afa9ace796440c19f3275637a6e659375 Merge pull request #266 from grompe/patch-1 - MinecraftForge/FML@182aa9c0cbe61ac69b0d428ead1dc817dd2a2e71 Fixed install.sh not passing arguments to install.py - MinecraftForge/FML@f46a538b41157081c840f647f123513ac4c5a071 Merge pull request #268 from Bo98/sh-args-fix - MinecraftForge/FML@29ef3d5ab412dcabbd67695558880c45011ace82 Update installer. - -Build 1.6.2-9.10.0.817: - tommy.stanley96: - Fluid Render Fix - - Formatting - ohai.iChun: Add Pre and Post events for RenderLivingEvent - ohai.iChun: Add Pre and Post events firing for RendererLivingEntity - ohai.iChun: if statement added - ohai.iChun: Update RendererLivingEntity.java.patch - tommy.stanley96: - Fixed fluids eating each other - - Fluids check for other fluids density before flowing, if their density - is higher they can flow into the other fluid, if not they can't. - CovertJaguar: Add SneakClick bypass to client - cpw: Fix names for water/lava fluids. Closes #689 - cpw: - Add support for loading legacy liquid stacks as new fluid stacks. - Requires having been written with the "liquidname" code from forge 1.5.x - cpw: - Add a translation map for looking up legacy liquid names to convert - to new fluid names. - tommy.stanley96: Fluid Rendering Fixes - cpw: Fix formatting error in PR - cpw: - Tweak setBlock in update tick - it should only send serverside updates for - source blocks. Experimental attempt to fix worldgen issues for fluid blocks - cpw: - Updated FML: - MinecraftForge/FML@57befa89bbbf2bc2fcc4a97b78e07b3f9e23ef9d Fix keybindings being derped - MinecraftForge/FML@1d84e8063e9d0dc73928dba006e6001201285cad Temporarily add a version of 'reobfuscate.py' that will resolve complex reobfuscation graph issues with specialsource. Copy it over 'reobfuscate.py' in the mcp runtime dir. Hopefully will have an MCP/specialsource fix in the coming days. - ohai.iChun: Fix RenderLivingEvent.Pre/Post not being fired by most Renders. - tonkamatt98: - added temperature to fluids - - it could be useful for blocks that are affected by temperature - mitchel.pyl: Fix render colour on bottom of fluids - mitchel.pyl: Fix small derp - -Build 1.6.2-9.10.0.816: - purpleposeidon: - Add an InputStream constructor to WavefrontObject - - It is said that Resource Packs will return InputStreams. And I like putting my models into texture packs which, obviously, give InputStreams rather than URLs. - 7of9: Add cloud height to WorldType - -Build 1.6.2-9.10.0.815-miscchanges: - mitchel.pyl: Fix render colour on bottom of fluids - mitchel.pyl: Fix small derp - -Build 1.6.2-9.10.0.812-miscchanges: - tonkamatt98: - added temperature to fluids - - it could be useful for blocks that are affected by temperature - -Build 1.6.2-9.10.0.811-miscchanges: - ohai.iChun: Fix RenderLivingEvent.Pre/Post not being fired by most Renders. - -Build 1.6.2-9.10.0.810-miscchanges: - cpw: - Updated FML: - MinecraftForge/FML@57befa89bbbf2bc2fcc4a97b78e07b3f9e23ef9d Fix keybindings being derped - MinecraftForge/FML@1d84e8063e9d0dc73928dba006e6001201285cad Temporarily add a version of 'reobfuscate.py' that will resolve complex reobfuscation graph issues with specialsource. Copy it over 'reobfuscate.py' in the mcp runtime dir. Hopefully will have an MCP/specialsource fix in the coming days. - -Build 1.6.2-9.10.0.809-miscchanges: - cpw: Fix formatting error in PR - cpw: - Tweak setBlock in update tick - it should only send serverside updates for - source blocks. Experimental attempt to fix worldgen issues for fluid blocks - -Build 1.6.2-9.10.0.808-miscchanges: - tommy.stanley96: Fluid Rendering Fixes - -Build 1.6.2-9.10.0.807-miscchanges: - cpw: - Add a translation map for looking up legacy liquid names to convert - to new fluid names. - -Build 1.6.2-9.10.0.806-miscchanges: - cpw: - Add support for loading legacy liquid stacks as new fluid stacks. - Requires having been written with the "liquidname" code from forge 1.5.x - -Build 1.6.2-9.10.0.804: - copyboy: Fix getArmorTexture by passing it the subtype - -Build 1.6.2-9.10.0.802: - LexManos: - Re-added deprecated liquids system. To be removed next major MC versions after issues with Fluids are fixed. (reverse-merged from commit 9b5208fa308f22c24e295ce3be38dcafea2857ea) - This WILL be removed and should not be developed against aside for a temporary 1.6 release. - -Build 1.6.2-9.10.0.801: - LexManos: Remove SideOnly(Client) in IBlockAccess.isAirBlock - -Build 1.6.2-9.10.0.800: - LexManos: MinecraftForge/FML@10b16d32da4b7c32b15e69cf1c636505ebbe2540 Use json 2.9.1 nightly for OSX in release json like vanilla does. - -Build 1.6.2-9.10.0.799: - LexManos: General code cleanup of Fluid system. Made Fluid icons and associated functions non-sided. - -Build 1.6.2-9.10.0.798: - LexManos: MinecraftForge/FML@3f21a2c1b413e591f61f2906c3adbadd9c5b09e3 Stupid spaces and windows escaping -.- - -Build 1.6.2-9.10.0.797: - LexManos: MinecraftForge/FML@b2958c9066db8c95bb4260893fbfe00103fc4ba1 Add quotes for paths with spaces -.- - LexManos: Package 'version.json' with universal jar for maunchers to use. It's the json used by the vanilla Minecraft launcher for Forge. - -Build 1.6.2-9.10.0.796: - LexManos: MinecraftForge/FML@9520978b81d4cba5d8b0af0d5f155bd115023795 Use a temporary file for recompile's command line to combat command length to long issues. - -Build 1.6.2-9.10.0.795: - LexManos: Updated FML: MinecraftForge/FML@4981aa3421262c3c1c4705468fe202df8198b9f0 Fix potential NPE in villager skin registry. Closes #678 - -Build 1.6.2-9.10.0.794: - Nick: - Fixes Vanilla Fluid Still Icon Setters - - Fixes null icons from being set for both the still water/lava icons, and sets the correct Icon. - -Build 1.6.2-9.10.0.793: - LexManos: Updated FML: MinecraftForge/FML@c48b48ee15f38d3e794b6eb3499c536226ca5a79 Fix server launching. - -Build 1.6.2-9.10.0.792: - Christian: Fix for new location of mcp logo. - -Build 1.6.2-9.10.0.791: - Christian: - Updated FML: - MinecraftForge/FML@0378355c3720d587652b7792665a8b70bf104eb3 The server.classpath generates the runtime manifest, so it needs the non-debug asm jars. - MinecraftForge/FML@a3f48734ffbbb2eccffdafcd3cbe73824bd1afd6 Fix up jar sanity check code. FML validation of the jar works now and doesn't derp classloading. - MinecraftForge/FML@9947ba85036542a3231e25328d3300f2a5337370 Fix logo handling. no more NPE if the logo can't be found. Also, fix location of mcp logo now. - -Build 1.6.2-9.10.0.790: - Adubbz: - Made eating particles compatible with metadata - - Removed extra spaces - - Made eating particles compatible with metadata - Christian: - Updated FML: - MinecraftForge/FML@e44e8b3112bd56c716a00c19d0be2f15d9128b70 Force a global asset scan prior to mod construction : you should be able to reference assets anywhere in your mod now. - MinecraftForge/FML@20e93a412ee13498babef02d404f57bf5e0fd919 Fix up logos in the mod screen. Clean up some unnecessary casts and suppressions, use the -debug asm library at dev time, since it contains full symbols and code in compiled form. - LexManos: MinecraftForge/FML@b9f4b02cb0b041594656f05de70225df702a8ddd Kill mcp's truncate method, for more useful logs. - LexManos: - Updated FML: - MinecraftForge/FML@7348929819b0ae8ad35419ef5dbf66e66b442858 Kill release time scala libraries, to be re-evaluated after all movement is done and shit is fixed. May require manual instalation for mods that use scala. - MinecraftForge/FML@6de36d78f57f6f08ec586b67b684d0e5406cd436 Coremods now have a primitive dependency capability. Also, we search mods dir for special "TweakClass" manifests. These are using the vanilla tweak mechanism to inject into Minecraft. Helpful for other "platform" systems, when you don't want to have to deal with json changes! - MinecraftForge/FML@d4b30422b64a62a2f8a8c2cccd94cb0fd06154e0 Update build and eclipse workspaces for debug asm. - LexManos: MinecraftForge/FML@c625ef30093abb0755985c74d1f31e2c4cf6cfdd Update Forge signature for new private key - LexManos: Update changelog generator to point to new jenkins. - LexManos: Monkey patch to try and make print flush properly. - -Build 1.6.2-9.10.0.789: - LexManos: Re-add reverted patch AGAIN cpw check your commits -.- - -Build 1.6.2-9.10.0.787: - Christian: - Updated FML: - MinecraftForge/FML@bab4d87ce76baa40200939cc46780b1d3b2ff466 Update FML for new stealth update for 1.6.2 - -Build 1.6.2-9.10.0.786: - Christian: Remove forge ISidedInventory, deprecated since 1.5. - -Build 1.6.2-9.10.0.785: - Christian: - Allow optional rider interaction for entities, thanks for the suggestion Vswe. - - Updated FML: - MinecraftForge/FML@7af5c21d74679d1a53550f9719bba22b2f28dd13 @InstanceFactory was set to look for Fields instead of methods - MinecraftForge/FML@bc9d1fe657c7a0953adc7d4c5ed81c575bdfb0f1 Merge pull request #254 from CaptainShadows/patch-1 - -Build 1.6.2-9.10.0.784: - LexManos: MinecraftForge/FML@c913258ca38e662264bdf4aafbfbef86881c9290 Disable signature check of client for now, it's broken. - Christian: - Updated FML: - MinecraftForge/FML@97269a5e3dc0a0e2e1a79183f9f5f2ee120e90bd Decode the file URL. Hopefully will make things work more.. - MinecraftForge/FML@d4d522c5978ecd7a9195977b3327b441901bb5b4 And don't forget to remove the test code - -Build 1.6.2-9.10.0.781: - LexManos: - Updated FML: - MinecraftForge/FML@dfa3a2665d6782b87713cea26dda558ac990a72a Add MC Version to installed version name. - MinecraftForge/FML@e91431fb707ce3e7e4296ccb8f3b2e5208b4dfac Don't validate signatures on servers, they are not signed. - MinecraftForge/FML@c7ab872c85dd057a4e44e12e34089dfd1a1184b6 Temporarily disable GuiModList's Mod logos. - -Build 1.6.2-9.10.0.780: - LexManos: - Updated FML: - MinecraftForge/FML@c997f2adbc4c11cd8c2abe5f82ccd00b0e954b68 FML now verifies that the minecraft jar is correct and intact. This is intended to discourage those who think that modifying the minecraft jar is still acceptable. - MinecraftForge/FML@0db4624b27a5ecf59ed506ccfc26459ca26ee408 Don't initialize the server. - MinecraftForge/FML@4fa375683fdb7edff67c951fb371ab4a23435308 Fix NPE in new debug line when patch targets don't exist. - -Build 1.6.2-9.10.0.779: - LexManos: Fix accedential reverted patch. - LexManos: Proper return for getRegisteredFluidContainerData thanks Soaryn. Ref issue #634 - -Build 1.6.2-9.10.0.778: - Christian: Make resourcelocation the class available on the server. - -Build 1.6.2-9.10.0.777: - Christian: - Drop two domain related fixes that have been applied in vanilla. - - Updated FML: - MinecraftForge/FML@c47d08c89dfcacb96e36c427593174e08dcb4224 Tweak debug data on patched classes - MinecraftForge/FML@dbf5fe38cee04288e92d57f8782114b452245bce We now generate an adler32 checksum for each patched file and verify at load time that they match. Mismatch won't crash, but will emit a big warning.. - MinecraftForge/FML@e88a0cd13f63904f7317e1a73880611f58820389 Update for stealth update. Thanks mojang! - MinecraftForge/FML@2336002f20e9412a7663781b23c51de0eff6a692 The game is going to exit in face of patch mismatch, unless you force it to run with fml.ignorePatchDiscrepancies in the system properties. - -Build 1.6.2-9.10.0.776: - LexManos: - Updated FML: - MinecraftForge/FML@1d0384f8f664d7002019b865675a5fddf2963b3d Update for 1.6.2 and MCP 8.04 - MinecraftForge/FML@111b0216fdc55f56a8361a584141bca7c9c3f070 Add the jsons for 1.6.2 - MinecraftForge/FML@6f96d89e2bf9313b26eeb4c334a208bf3e1c9ad4 Update eclipse workspaces for 1.6.2 - LexManos: Remove deprecated Liquids API, Use new Fluids system as replacement. - LexManos: Bump version to 9.10 for new MC version and removal of Fluids. - -Build 1.6.1-8.9.0.775: - Christian: - Updated FML: - MinecraftForge/FML@c97ac284a5e7dbdbccbad2f7ccc95252c4aef239 Update ModLoaderFuelHelper.java - MinecraftForge/FML@3a200e901e34ade679e4485307f57bee725bbe94 Fix coremod injection into main system. Should stop double-dipping coremods. - MinecraftForge/FML@2676c8999cbede05b5475ba68bfc25467a67d4fc Update mcp data. fixes #248 - MinecraftForge/FML@5990e29af7b70e343dfd9cf38bb3e033e71a4489 Merge pull request #247 from jk-5/patch-1 - MinecraftForge/FML@adc89722770b7319884619cadc6f10cc9050df24 Add cascadedTweaks. This will allow simple coexistence for any other mod framework using the tweaker system as well. Hi Voxel and LiteLoader! - -Build 1.6.1-8.9.0.774: - xcompwiz: - Makes player-specific spawnpoints dimension aware - - Makes ServerConfigurationManager correctly get player-specific spawn - point for the target dimension - Changes EntityPlayer to store and save a (bed) spawn point for every - dimension, as well as transfer them to respawn "clones" - -Build 1.6.1-8.9.0.773: - LexManos: Re-gather list of Icons when atlas textures are stitched, allows for addition/removal of blocks/items after the atlas's inital constrction. - -Build 1.6.1-8.9.0.772: - LexManos: Fix enchantment effect on single pass items. Closes #644 - -Build 1.6.1-8.9.0.771: - kinglemming: - Forge Fluid System! - - Signed-off-by: King Lemming - LexManos: Mark old liquid system as deperated to be removed next Minecraft release. - -Build 1.6.1-8.9.0.770-newliquid: - LexManos: Mark old liquid system as deperated to be removed next Minecraft release. - -Build 1.6.1-8.9.0.769-newliquid: - richard: Techne model loader (incomplete for debugging) - richard: Complete it, got the bug figured out - Christian: - Updated FML: - MinecraftForge/FML@24c405665105a789a0708a7e30c8bcb96899da6b Add in an optional modid identifier for @SidedProxy. It's main use is when both scala and java @Mods reside in the same package, and you want the @SidedProxy behaviour for a specific @Mod language type. In general it should not be needed otherwise. - MinecraftForge/FML@cd0466395a8f1af3ec44f124bf4088df2d318603 Fix sysout with trailing messages after a newline - LexManos: Disable ImageIO's File based cache, should speed up texturepack loading/stitching. - jadran.kotnik: Added rotation support for all vanilla blocks that can be rotated. - LexManos: - Add NPE protection to ItemStack delegates. Closes #601 - Also cleaned up the names of said delegates, we do not have to follow MCP's crowdsourced names as they are very bad. - Redirected damage through setItemDamage to allow items to have finder control of breaking. - LexManos: Fix Air block check in BlockPortal. - LexManos: Fix hoes being able to till dirt under other blocks, and made it look for air type blocks. - LexManos: Add NPE protection to refernce to MinecraftServer.worldServer - LexManos: Fix AIOOB exception in crash reporting if exception does not have a stack. Possible, but odd. - LexManos: Fixed changelog generation. - LexManos: Forgot most important side, release script. - Christian: Make glass panes and iron fences connect to block sides based on solidity. This does change IBlockAccess, so anything with a custom IBlockAccess may need to implement the new method. - Christian: - Fix server patch FML update - - Updated FML: - MinecraftForge/FML@22738de028a9ba51d43d73857dfb8969985566f0 Attempt to properly fix deadlock if the internal server derps. It should never hang now. Damn you fast computer.. - MinecraftForge/FML@05a854cd2af53ca822ee8b249b0b3bbe44f94675 Small tweaks to the mcp data. Nothing major.. - mitchel.pyl: Fix tripwire patches for solid sides - LexManos: Added EntityLiving to Block.isLadder arguments, deperacating older version. New parameter has the possibility of being null, so modders must take care. Closes #608 - LexManos: Add air checks to BlockSand falling and Piston pushing. Please report any other issues with custom 'Air' blocks in issue #602 - LexManos: Bump Forge revision and mark recomended. - LexManos: Fic Chest content gneeration delegate call. Cloases #609 - LexManos: Add air check to Flint and Steel Ref: #602 - LexManos: Update workspace for new library structure. - LexManos: Update FML to 16launch branch - LexManos: Initial patch update to 1.6, Does not compile, need to update references to the old TexturePack system. - LexManos: Small fixup, need to Update GuiIngameForge for new HUD changes. - LexManos: - Updated FML: - MinecraftForge/FML@6a318ddb784ca8b2bef0f6718089f7beb4d404e0 Fix typo in new packages. - MinecraftForge/FML@3711da9c456d20865a965734cc5aeaf7f5cb5e5d Another typo - MinecraftForge/FML@e35e4b16ff3d6dea547c41f02f2ca31ebe1f74aa More fixups - MinecraftForge/FML@18371bd8c9bd107f774289da35519f593ccc8ee7 Some fixes for updated mcp code - MinecraftForge/FML@ef646d3146e1f285d2cb8e79a74373beffa84774 Merge branch '16launch' - MinecraftForge/FML@7406b38d8ad1bc5c2c641c74f1614b946f246588 1.6.1 - MinecraftForge/FML@12c928c538c1c04d3a21255c747d15468328ace9 Tweak commands patch - MinecraftForge/FML@3f15cd54c2d776ea161aaedbecad9e188d66578f Functional client @ 1.6.1 - MinecraftForge/FML@71a92de5d95fccc4fe17cc39d0836891c6622f4d Client launch for eclipse - LexManos: - Updated FML: - MinecraftForge/FML@8960f6869fbe30d358a40997c47999025c3eae68 Add windows lzma executable http://tukaani.org/xz/ He states that most things are under public domai - n, But I couldn't find an exact reference to this executable. I'm going to assume it under public domain and distribuiting it here is fine. If not someone pleas - e direct me to the apropriate license and I will act accordingly. - MinecraftForge/FML@70cfe24e67adf6872ef1501599e2115e420c2539 Fix wrong project name in distro eclipse launch. - MinecraftForge/FML@7a004087f79b94bc92f29d50eb71288b6c1c968c Add deobf data to src dist. Dont create deobf jar as we ship the lzma Added *.lzma to .gitignore - LexManos: - Updated FML: - MinecraftForge/FML@110cf372eb5aa85df20b248976f1acdefa85e102 Add deobf data to merge-common, workspace is now actually runnable! - LexManos: Support dirty submodules in changelog script. - LexManos: 1.6.1 Update - LexManos: Add new launch configs to dev workspace. - LexManos: Update GuiIngameForge to reflect Mojang changes in 1.6.1 - LexManos: - Updated FML: - MinecraftForge/FML@c418da353f6a8420b095fa737e8b0eae270d31ae Cleanup coremod code, server side working now. - LexManos: Update release script to generate binary patches and include deobf data. - LexManos: Deprecation sweep and update version to 8.9 to reflect 1.6.1 update. - LexManos: MinecraftForge/FML@7fecf2ad6bdd918149a3c43453f6a78bd11e5404 Update mcp URL. - LexManos: Try absolute path, to not confuse jenkins. - LexManos: - Updated FML: - MinecraftForge/FML@1229c4c4ea888f4f69272eed94ef5a53ce79ccda Fix src distrabution, and got rid of pesky common folder in eclipse workspace. src is now installable. - MinecraftForge/FML@902772ed0cb6c22c4cd7ad9b0ec7a02961b5e016 Revert common folder fix, Common folder does nothing, feel free to delete it after first load. - LexManos: Update src distro installer script. Source distro works now! - LexManos: Update ToolMaterial enum helper. - LexManos: Release will now build a installer jar and use the standard 'target' output folder. - LexManos: - Updated FML: - MinecraftForge/FML@29d6c875d0675ffa14428c511bd6ebe9232a486c Add FML Installer logo crated by @ZaverSLO https://twitter.com/ZaverSLO/status/349947190300508162 - MinecraftForge/FML@3d17434510e890574b68c8a181b80c830b5d043a Build installer package for the new client launcher. - MinecraftForge/FML@bf38d947569911dab03319a8b0f1964f36b195b2 Update json samples - MinecraftForge/FML@7037184a4e724300001dfc1f8df2e76a0ec30368 Fix up release JSON - MinecraftForge/FML@dc7d02ebf6c9fc5965344a9aeca79f230a40afb4 Fix json syntax error. - LexManos: - Fix installer unintended replace. - - Updated FML: - MinecraftForge/FML@9b6525e80504ff72a1798cf5797bf148295db776 Point scala downloads to our servers, Launcher doesn't like standard maven repos. - LexManos: - Updated FML: - MinecraftForge/FML@91ecf711092e1610dd10e77cdd517c3324e62d8d Fix -rel json - MinecraftForge/FML@efc369ee83a7b62f605c13e16efad66b63b4bd8c Fix EventHandler annotation. - MinecraftForge/FML@fbd57b32641b540d609314d91fd64350d50b9013 Mods are now loaded as resource packs. Vanilla will scan for valid prefixes based on subdirs of 'ass - ets' which can then be referenced as ResourceLocations with the ":path" notation. - LexManos: - Updated FML: - MinecraftForge/FML@5a97d183dfb13b0f831172a1afef7407347ea7bc Remember to update your patches!!!! - MinecraftForge/FML@f1b533ad87ea08d6e62259c59779bcec1636e2fe Keep these on our servers until the launcher is actually fixed -.- - LexManos: Fix bound texture in Controls screen, Closes #631 and #629 - LexManos: Make Block.setIconName public - LexManos: Update filler block to prevent useless console warning. - LexManos: Fix resource domain when loading icon. Textures should be located in /assets/{domain}/textures/{block|item}/{name}.png Same strcutre as before except 'assets' instead of 'mods'. - LexManos: Update ChestGenHooks for new Dungeon chest strcture. - Christian: - Start: f1b533ad87ea08d6e62259c59779bcec1636e2fe - End: f21cd286ca8e974b75536224a38cc0dacaca8454 - Updated FML: - MinecraftForge/FML@f21cd286ca8e974b75536224a38cc0dacaca8454 Resource packs, part two. FML mods are now resource packs. Vanilla will scan anything under 'assets' and turn it into a resource prefix. Use resourcelocations to look stuff up. - LexManos: Move resource location resolution down to TextureAtlasSprite and allow for sprites that are not stitched. - LexManos: Attempt to gather lastBuild information to fix ChangeLog's off-by-one issue. - LexManos: - Updated FML: - MinecraftForge/FML@6f0eedc9a64e4e246c40335e91b4868ad7f5a9e2 Fixed ClassCastException when loading ModLoader mods - MinecraftForge/FML@8844554da6d5d15756d7b0a9da2f5924006b3190 Merge pull request #243 from jrtc27/modclassloader - MinecraftForge/FML@7aa7221756d62ea1fbc750d7cf7acfdb28d75f2e Fix transformer search - MinecraftForge/FML@5f7df5e742cbc21565cee0d25709b5cb5462127c Revert "Keep these on our servers until the launcher is actually fixed -.-" - MinecraftForge/FML@ad79b9ed86eaf8c2702d79505d78a931c1774560 Fix up some deprecation warnings, and clean up coremod code that's going away. - MinecraftForge/FML@ba3707af22376f8f18103f63db56e4614a9c37db More javadoc cleanup - LexManos: Update dev worksapce: Proper natives location and new server launch profile. - LexManos: TEMPORARY fix for MCP mapping issue. - LexManos: Include MANIFEST file from FML's universal.jar, makes the jar runnable now! - LexManos: - Updated FML: - MinecraftForge/FML@155e8468180c93f1886a64028628764b1b22dd58 Add in support for mods/ as a mod location. Also drop coremods as a location. They go in mods too now. - MinecraftForge/FML@3f4bf61ae6757605b27078c7321de9f640876836 Update key - MinecraftForge/FML@4545beb49d5348d8632e42965627b9837115525b Add deobf-data to setup env. - MinecraftForge/FML@e24f94951741709329208f738000b72933302a24 Fix eclipse workspaces and launch configurations. - MinecraftForge/FML@532bee7ce1c4392ee11f0389d98f0c2be6240aa0 Update to new MCP bugfix version, Fixes: Missing Armor/Item rendering, and Boss health mapping issues. - LexManos: - Updated FML: - MinecraftForge/FML@7ce84491d1d4eada442944e02fc0e50c51f8045c Fix missing argument and startclient/startserver support. - LexManos: Fix domain issue with SoundPool entries. - LexManos: Add hook for EntityWither trying to destroy a block. - LexManos: Fix lether item rendering colors. - LexManos: Render pass sensitive version of Item.hasEffect, Closes #517 - LexManos: Fix compile errors temporarily, dont use till updated to new system. - LexManos: Add missing air checks to WorldGenTrees and ChunkCache Closes #593 - LexManos: Updated FML: MinecraftForge/FML@54e06e841d1c8df24fc30e1ec3a51def67f58858 Move Resource refreshing until affter postInit. - -Build 1.6.1-8.9.0.768: - LexManos: Add missing air checks to WorldGenTrees and ChunkCache Closes #593 - LexManos: Updated FML: MinecraftForge/FML@54e06e841d1c8df24fc30e1ec3a51def67f58858 Move Resource refreshing until affter postInit. - -Build 1.6.1-8.9.0.767: - richard: Techne model loader (incomplete for debugging) - richard: Complete it, got the bug figured out - LexManos: Fix compile errors temporarily, dont use till updated to new system. - -Build 1.6.1-8.9.0.766: - LexManos: Add hook for EntityWither trying to destroy a block. - LexManos: Fix lether item rendering colors. - LexManos: Render pass sensitive version of Item.hasEffect, Closes #517 - -Build 1.6.1-8.9.0.765: - jadran.kotnik: Added rotation support for all vanilla blocks that can be rotated. - -Build 1.6.1-8.9.0.764: - LexManos: - Updated FML: - MinecraftForge/FML@7ce84491d1d4eada442944e02fc0e50c51f8045c Fix missing argument and startclient/startserver support. - LexManos: Fix domain issue with SoundPool entries. - -Build 1.6.1-8.9.0.763: - LexManos: - Updated FML: - MinecraftForge/FML@155e8468180c93f1886a64028628764b1b22dd58 Add in support for mods/ as a mod location. Also drop coremods as a location. They go in mods too now. - MinecraftForge/FML@3f4bf61ae6757605b27078c7321de9f640876836 Update key - MinecraftForge/FML@4545beb49d5348d8632e42965627b9837115525b Add deobf-data to setup env. - MinecraftForge/FML@e24f94951741709329208f738000b72933302a24 Fix eclipse workspaces and launch configurations. - MinecraftForge/FML@532bee7ce1c4392ee11f0389d98f0c2be6240aa0 Update to new MCP bugfix version, Fixes: Missing Armor/Item rendering, and Boss health mapping issues. - -Build 1.6.1-8.9.0.762: - LexManos: Update dev worksapce: Proper natives location and new server launch profile. - LexManos: TEMPORARY fix for MCP mapping issue. - LexManos: Include MANIFEST file from FML's universal.jar, makes the jar runnable now! - -Build 1.6.1-8.9.0.761: - LexManos: - Updated FML: - MinecraftForge/FML@6f0eedc9a64e4e246c40335e91b4868ad7f5a9e2 Fixed ClassCastException when loading ModLoader mods - MinecraftForge/FML@8844554da6d5d15756d7b0a9da2f5924006b3190 Merge pull request #243 from jrtc27/modclassloader - MinecraftForge/FML@7aa7221756d62ea1fbc750d7cf7acfdb28d75f2e Fix transformer search - MinecraftForge/FML@5f7df5e742cbc21565cee0d25709b5cb5462127c Revert "Keep these on our servers until the launcher is actually fixed -.-" - MinecraftForge/FML@ad79b9ed86eaf8c2702d79505d78a931c1774560 Fix up some deprecation warnings, and clean up coremod code that's going away. - MinecraftForge/FML@ba3707af22376f8f18103f63db56e4614a9c37db More javadoc cleanup - -Build 1.6.1-8.9.0.760: - LexManos: Attempt to gather lastBuild information to fix ChangeLog's off-by-one issue. - -Build 1.6.1-8.9.0.759: - LexManos: Move resource location resolution down to TextureAtlasSprite and allow for sprites that are not stitched. - -Build 1.6.1-8.9.0.758: - Christian: - Start: f1b533ad87ea08d6e62259c59779bcec1636e2fe - End: f21cd286ca8e974b75536224a38cc0dacaca8454 - Updated FML: - MinecraftForge/FML@f21cd286ca8e974b75536224a38cc0dacaca8454 Resource packs, part two. FML mods are now resource packs. Vanilla will scan anything under 'assets' and turn it into a resource prefix. Use resourcelocations to look stuff up. - -Build 1.6.1-8.9.0.757: - LexManos: Update ChestGenHooks for new Dungeon chest strcture. - -Build 1.6.1-8.9.0.756: - LexManos: Make Block.setIconName public - LexManos: Update filler block to prevent useless console warning. - LexManos: Fix resource domain when loading icon. Textures should be located in /assets/{domain}/textures/{block|item}/{name}.png Same strcutre as before except 'assets' instead of 'mods'. - -Build 1.6.1-8.9.0.755: - LexManos: Update ToolMaterial enum helper. - LexManos: Release will now build a installer jar and use the standard 'target' output folder. - LexManos: - Updated FML: - MinecraftForge/FML@29d6c875d0675ffa14428c511bd6ebe9232a486c Add FML Installer logo crated by @ZaverSLO https://twitter.com/ZaverSLO/status/349947190300508162 - MinecraftForge/FML@3d17434510e890574b68c8a181b80c830b5d043a Build installer package for the new client launcher. - MinecraftForge/FML@bf38d947569911dab03319a8b0f1964f36b195b2 Update json samples - MinecraftForge/FML@7037184a4e724300001dfc1f8df2e76a0ec30368 Fix up release JSON - MinecraftForge/FML@dc7d02ebf6c9fc5965344a9aeca79f230a40afb4 Fix json syntax error. - LexManos: - Fix installer unintended replace. - - Updated FML: - MinecraftForge/FML@9b6525e80504ff72a1798cf5797bf148295db776 Point scala downloads to our servers, Launcher doesn't like standard maven repos. - LexManos: - Updated FML: - MinecraftForge/FML@91ecf711092e1610dd10e77cdd517c3324e62d8d Fix -rel json - MinecraftForge/FML@efc369ee83a7b62f605c13e16efad66b63b4bd8c Fix EventHandler annotation. - MinecraftForge/FML@fbd57b32641b540d609314d91fd64350d50b9013 Mods are now loaded as resource packs. Vanilla will scan for valid prefixes based on subdirs of 'ass - ets' which can then be referenced as ResourceLocations with the ":path" notation. - LexManos: - Updated FML: - MinecraftForge/FML@5a97d183dfb13b0f831172a1afef7407347ea7bc Remember to update your patches!!!! - MinecraftForge/FML@f1b533ad87ea08d6e62259c59779bcec1636e2fe Keep these on our servers until the launcher is actually fixed -.- - LexManos: Fix bound texture in Controls screen, Closes #631 and #629 - -Build 1.6.1-8.9.0.751: - LexManos: - Updated FML: - MinecraftForge/FML@1229c4c4ea888f4f69272eed94ef5a53ce79ccda Fix src distrabution, and got rid of pesky common folder in eclipse workspace. src is now installable. - MinecraftForge/FML@902772ed0cb6c22c4cd7ad9b0ec7a02961b5e016 Revert common folder fix, Common folder does nothing, feel free to delete it after first load. - LexManos: Update src distro installer script. Source distro works now! - -Build 1.6.1-8.9.0.750-1.6: - LexManos: - Updated FML: - MinecraftForge/FML@1229c4c4ea888f4f69272eed94ef5a53ce79ccda Fix src distrabution, and got rid of pesky common folder in eclipse workspace. src is now installable. - MinecraftForge/FML@902772ed0cb6c22c4cd7ad9b0ec7a02961b5e016 Revert common folder fix, Common folder does nothing, feel free to delete it after first load. - LexManos: Update src distro installer script. Source distro works now! - -Build 1.6.1-8.9.0.749: - LexManos: Update workspace for new library structure. - LexManos: Update FML to 16launch branch - LexManos: Initial patch update to 1.6, Does not compile, need to update references to the old TexturePack system. - LexManos: Small fixup, need to Update GuiIngameForge for new HUD changes. - LexManos: - Updated FML: - MinecraftForge/FML@6a318ddb784ca8b2bef0f6718089f7beb4d404e0 Fix typo in new packages. - MinecraftForge/FML@3711da9c456d20865a965734cc5aeaf7f5cb5e5d Another typo - MinecraftForge/FML@e35e4b16ff3d6dea547c41f02f2ca31ebe1f74aa More fixups - MinecraftForge/FML@18371bd8c9bd107f774289da35519f593ccc8ee7 Some fixes for updated mcp code - MinecraftForge/FML@ef646d3146e1f285d2cb8e79a74373beffa84774 Merge branch '16launch' - MinecraftForge/FML@7406b38d8ad1bc5c2c641c74f1614b946f246588 1.6.1 - MinecraftForge/FML@12c928c538c1c04d3a21255c747d15468328ace9 Tweak commands patch - MinecraftForge/FML@3f15cd54c2d776ea161aaedbecad9e188d66578f Functional client @ 1.6.1 - MinecraftForge/FML@71a92de5d95fccc4fe17cc39d0836891c6622f4d Client launch for eclipse - LexManos: - Updated FML: - MinecraftForge/FML@8960f6869fbe30d358a40997c47999025c3eae68 Add windows lzma executable http://tukaani.org/xz/ He states that most things are under public domai - n, But I couldn't find an exact reference to this executable. I'm going to assume it under public domain and distribuiting it here is fine. If not someone pleas - e direct me to the apropriate license and I will act accordingly. - MinecraftForge/FML@70cfe24e67adf6872ef1501599e2115e420c2539 Fix wrong project name in distro eclipse launch. - MinecraftForge/FML@7a004087f79b94bc92f29d50eb71288b6c1c968c Add deobf data to src dist. Dont create deobf jar as we ship the lzma Added *.lzma to .gitignore - LexManos: - Updated FML: - MinecraftForge/FML@110cf372eb5aa85df20b248976f1acdefa85e102 Add deobf data to merge-common, workspace is now actually runnable! - LexManos: Support dirty submodules in changelog script. - LexManos: 1.6.1 Update - LexManos: Add new launch configs to dev workspace. - LexManos: Update GuiIngameForge to reflect Mojang changes in 1.6.1 - LexManos: - Updated FML: - MinecraftForge/FML@c418da353f6a8420b095fa737e8b0eae270d31ae Cleanup coremod code, server side working now. - LexManos: Update release script to generate binary patches and include deobf data. - LexManos: Deprecation sweep and update version to 8.9 to reflect 1.6.1 update. - LexManos: MinecraftForge/FML@7fecf2ad6bdd918149a3c43453f6a78bd11e5404 Update mcp URL. - LexManos: Try absolute path, to not confuse jenkins. - -Build 1.6.1-8.9.0.748-1.6: - LexManos: Try absolute path, to not confuse jenkins. - -Build 1.5.2-7.8.1.738: - LexManos: Fic Chest content gneeration delegate call. Cloases #609 - LexManos: Add air check to Flint and Steel Ref: #602 - -Build 1.5.2-7.8.1.737: - LexManos: Bump Forge revision and mark recomended. - -Build 1.5.2-7.8.0.736: - LexManos: Added EntityLiving to Block.isLadder arguments, deperacating older version. New parameter has the possibility of being null, so modders must take care. Closes #608 - LexManos: Add air checks to BlockSand falling and Piston pushing. Please report any other issues with custom 'Air' blocks in issue #602 - -Build 1.5.2-7.8.0.735: - mitchel.pyl: Fix tripwire patches for solid sides - -Build 1.5.2-7.8.0.734: - Christian: - Fix server patch FML update - - Updated FML: - MinecraftForge/FML@22738de028a9ba51d43d73857dfb8969985566f0 Attempt to properly fix deadlock if the internal server derps. It should never hang now. Damn you fast computer.. - MinecraftForge/FML@05a854cd2af53ca822ee8b249b0b3bbe44f94675 Small tweaks to the mcp data. Nothing major.. - -Build 1.5.2-7.8.0.733: - Christian: Make glass panes and iron fences connect to block sides based on solidity. This does change IBlockAccess, so anything with a custom IBlockAccess may need to implement the new method. - -Build 1.5.2-7.8.0.732: - LexManos: Forgot most important side, release script. - -Build 1.5.2-7.8.0.731: - LexManos: Fixed changelog generation. - -Build 1.5.2-7.8.0.730: - LexManos: Fix AIOOB exception in crash reporting if exception does not have a stack. Possible, but odd. - -Build 1.5.2-7.8.0.729: - LexManos: Fix hoes being able to till dirt under other blocks, and made it look for air type blocks. - LexManos: Add NPE protection to refernce to MinecraftServer.worldServer - -Build 1.5.2-7.8.0.728: - LexManos: Fix Air block check in BlockPortal. - -Build 1.5.2-7.8.0.727: - LexManos: - Add NPE protection to ItemStack delegates. Closes #601 - Also cleaned up the names of said delegates, we do not have to follow MCP's crowdsourced names as they are very bad. - Redirected damage through setItemDamage to allow items to have finder control of breaking. - -Build 1.5.2-7.8.0.726: - LexManos: Disable ImageIO's File based cache, should speed up texturepack loading/stitching. - -Build 1.5.2-7.8.0.725: - Christian: - Updated FML: - MinecraftForge/FML@24c405665105a789a0708a7e30c8bcb96899da6b Add in an optional modid identifier for @SidedProxy. It's main use is when both scala and java @Mods reside in the same package, and you want the @SidedProxy behaviour for a specific @Mod language type. In general it should not be needed otherwise. - MinecraftForge/FML@cd0466395a8f1af3ec44f124bf4088df2d318603 Fix sysout with trailing messages after a newline - -Build 1.5.2-7.8.0.724-newliquid: - jeffreykog: RenderGameOverlayEvent.Post(ALL) is now called in GuiIngameForge - LexManos: Fix arbitrary GUIContainer text coloring by forcing lighting to be disabled. Closes #594 - Christian: Patch village distance checking to use floats instead of ints, to avoid int wrapping - Christian: Fix isAir check to see if a portal can light. Should fix w/Railcraft and others - LexManos: Make changelog generation non-fatal untill we get jenkins issue figured out. - LexManos: Add cache for ASM Event Handler bridge classes, should not need to redefine a class to invoke the same method on different instances. - LexManos: Ignore registration of a object that is already registered. Preventing duplicate callback invocations. Thanks King_Lemming for pointing this out. - Christian: - Updated FML: - MinecraftForge/FML@6f3da9736531153629fb4213e3b2cae776bfb50a Don't throw an exception if the scala adapter find a java proxy. I may add some distinguishers to @SidedProxy so you know which mod it's for. - MinecraftForge/FML@59fe905695421a5be9370b0009ef794abaaf75bb Don't continue trying to send events to mods that depend on errored mods. - -Build 1.5.2-7.8.0.723: - Christian: - Updated FML: - MinecraftForge/FML@6f3da9736531153629fb4213e3b2cae776bfb50a Don't throw an exception if the scala adapter find a java proxy. I may add some distinguishers to @SidedProxy so you know which mod it's for. - MinecraftForge/FML@59fe905695421a5be9370b0009ef794abaaf75bb Don't continue trying to send events to mods that depend on errored mods. - -Build 1.5.2-7.8.0.722: - jeffreykog: RenderGameOverlayEvent.Post(ALL) is now called in GuiIngameForge - -Build 1.5.2-7.8.0.721: - LexManos: Ignore registration of a object that is already registered. Preventing duplicate callback invocations. Thanks King_Lemming for pointing this out. - -Build 1.5.2-7.8.0.720: - LexManos: Add cache for ASM Event Handler bridge classes, should not need to redefine a class to invoke the same method on different instances. - -Build 1.5.2-7.8.0.719: - Christian: Fix isAir check to see if a portal can light. Should fix w/Railcraft and others - LexManos: Make changelog generation non-fatal untill we get jenkins issue figured out. - -Build 1.5.2-7.8.0.716: - Christian: Patch village distance checking to use floats instead of ints, to avoid int wrapping - -Build 1.5.2-7.8.0.715: - LexManos: Fix arbitrary GUIContainer text coloring by forcing lighting to be disabled. Closes #594 - -Build 1.5.2-7.8.0.713: - Christian: - Updated FML: - MinecraftForge/FML@843a13c1ab1e3901160082fa63c557243fb64675 Try and clean up cycle detection output a bit - MinecraftForge/FML@82e9de8641c6a559eec711ea6d1e940d99cbc98f More tweaks to the mod sorting code - MinecraftForge/FML@ac97370f94d10beee5f021795cddda827c4411d4 Add in a pretty sorting error screen - MinecraftForge/FML@f1d68ed4c82cd28e50ec6a0befc55ff0165bfe08 Throw the sorting exception - MinecraftForge/FML@edc1fb24e2cad9badd2dd18ccccd590d77156e18 Send the "suspect list", and print the suspect versions - -Build 1.5.2-7.8.0.711: - bloodshot: - Add support for servers to register dimensions on client. - - In order to support multi-worlds such as MultiVerse, the server needs the - ability to register dimensions on client or many forge mods such as IC2 - will not function correctly. This has been an issue for MCPC which - provides both Forge and Bukkit support to players. By adding the - DimensionRegisterPacket class, MCPC now has the ability to send the - required packet to client to register a dimension with DimensionManager. - LexManos: Cleanup Dimension Registration packet, generate takes no arguments, and added fix to world to prevent providers from overwriting the dimension ID. - LexManos: Fix potential GL issue when atlas animations bind textures without informating RenderEngine. - -Build 1.5.2-7.8.0.710: - LexManos: - Introduced the framework for Forge's packet handler system. Heavily based off FMLPacket. - Packet splitting and reconstruction is handled. - -Build 1.5.2-7.8.0.708: - Christian: - Updated FML: - MinecraftForge/FML@3bf50c4bbe82f0cc317dafcf2a569cb5210bc738 Fix server side derp with Forge network packet handler - -Build 1.5.2-7.8.0.707: - LexManos: Fix type in biome list. - LexManos: Fixed creative tab rendering with invalid color closes #588 - -Build 1.5.2-7.8.0.706: - Christian: - Add forge network handling support - - Updated FML: - MinecraftForge/FML@4922e90d81d8b8b9374c4d04858a06c5bf03965c Separate network mod config from setup. Allows for Forge Packet Handler nicety - -Build 1.5.2-7.8.0.705: - mehvids: Add hitInfo field to MovingObjectPosition for when an int doesn't suffice - -Build 1.5.2-7.8.0.704: - LexManos: Fix another NPE when Items are in Block range with custom renderers, Modders keep your items out of the block range! Closes #581 - LexManos: Fixed render count for stacks of blocks 40+ and distrabution of items based on scale. Closes #579 - -Build 1.5.2-7.8.0.703: - Christian: Remember x & z passed to getTopSolidOrLiquidBlock and use it for foliage tests. Fixes #575 - -Build 1.5.2-7.8.0.702: - Christian: Fix blending on the hotbar. Closes #574 - -Build 1.5.2-7.8.0.701: - Christian: - Updated FML: - MinecraftForge/FML@23b070c7d02a8da44bf04c2f9ba2b485a44ad967 Alternative @SidedProxy setter for Scala. - MinecraftForge/FML@2cca7aa759b4b6c3a128ce43bbd924e4762c43c2 Some more Scala @SidedProxy adjustments. Now properly supporting pure singletons, i.e. object C { @SidedProxy(...) var proxy: P = null } Removed fallback, as all such singletons are properly handled by the new code now, and class implementations fall back to the code also used for plain Java mods. - MinecraftForge/FML@8517a824e5251c409e05999d42fc6d70497609f5 Merge declaration and initialization of a variable. - MinecraftForge/FML@a3a920437f3ede6841ae2c449a38975b02b28088 Merge pull request #230 from fnuecke/master - Christian: Add in a very simple stencil bit registry to try and arbitrate between mods wanting to use stencil bits in rendering - -Build 1.5.2-7.8.0.700: - hbiede: - Added oreQuartz - - Gives a default quartz Ore Dictionary (I know of at least 3 used by different mods that use Nether Quartz as an equivalent). - gholdampf: updated FurnaceRecipes.java.patch - mike.stengel: Created an ItemStack sensitive version of canHarvestBlock. - -Build 1.5.2-7.8.0.699: - CovertJaguar: - Possible NPE if the liquid isn't in the LD - - https://github.com/BuildCraft/BuildCraft/issues/787 - -Build 1.5.2-7.8.0.698: - LexManos: Fix NPE when rendering EntityItems that are not blocks but int he block range. - -Build 1.5.2-7.8.0.697: - LexManos: Prevent water from dropping snowballs. - -Build 1.5.2-7.8.0.696: - LexManos: Fire EntityJoinWorled event for forced entities {Players and there mounts} as well, just ignore the cancelled value. - -Build 1.5.2-7.8.0.695: - LexManos: - MinecraftForge/FML@787c0c4a6af3af60928b3a90f383a305a17a4347 Don't spit error on LWJGL not supporting 4.3 just warning. - Make custom item renderers attempt to use EQUIPPED type when running first person. For backwards compatiblity, will be removed in 1.6. - And a small change to make the 1.6 check not print it's stack trace. - -Build 1.5.2-7.8.0.693: - purpleposeidon: Fix render bounding box of trapped double chests - jholcroft: - Make getStencilBits static - - Made getStencilBits static so it can be called. - -Build 1.5.2-7.8.0.692: - LexManos: Move Partical rendering down in the order, after everything else. Should fix particals rendering behind water, digging process, and selection. - -Build 1.5.2-7.8.0.691: - LexManos: Fixed NPE in rendering dragged items. - -Build 1.5.2-7.8.0.690: - LexManos: - Attempt to allocate a 8-bit stencil buffer when creating Minecraft's display context. If that throws an error it will revert back to it's default values. - Also contains a method for modders to rereive how many bits the context was created with. Closes #552 - -Build 1.5.2-7.8.0.689: - LexManos: EntityPlayer sensitive version of Item.isValidArmor, deprecated older version. Closes #551 - LexManos: Changed to just plane entity for flexability. - LexManos: New RenderPlayer and RenderLiving events. Closes #493 - -Build 1.5.2-7.8.0.688: - pahimar: Update forge_at.cfg - -Build 1.5.2-7.8.0.687: - mitchpetrie29: Separate EQUIPPED and EQUIPPED_FIRST_PERSON Item Render Types - -Build 1.5.2-7.8.0.686: - LexManos: Capture and fire the PlaySoundAtEntity event for The client entity. Minecraft does some odd bypasses for no good reason. Thanks iPixile for reporting this. - -Build 1.5.2-7.8.0.685: - LexManos: - Updated FML: - MinecraftForge/FML@99bb50d8f8d27217ba58a41c802a504213e99461 Improved Entity Spawn Error - MinecraftForge/FML@c0cca7f41d5b080e39dd8d3d6cfc329295c822e6 Merge pull request #227 from CovertJaguar/patch-1 - MinecraftForge/FML@49111e9c5cffab49ec35f965801c3f0496f6def6 Add version detection to astyle and print error if it doesnt detect version 2.0+ - Also fixed astyle's config for max-instatement-indent that sometimes caused crashes with certian versions of astyle. - -Build 1.5.2-7.8.0.684: - LexManos: - Update to 1.5.2 PR. - MinecraftForge/FML@f0bba74a4748935ef3a715ae2f45feb75cc20376 Update for minecraft 1.5.2 - MinecraftForge/FML@62fdbad74c2507d147ecab56f56029135d88c6f5 Update MCP's md5 for the fixed srg files. - LexManos: - Updated FML: - MinecraftForge/FML@00f00b17bf0da262e6fe3e327ca2deedf7146305 Fix scalac detection to actually use the located command instead of defaulting to 'scalac' - LexManos: Fixed hardcoding of MC version in debug text. - LexManos: Bump version number for 1.5.2 - -Build 1.5.2-7.8.0.683-1.5.2: - LexManos: Bump version number for 1.5.2 - -Build 1.5.1-7.7.2.682: - cadyyan: Fixed build error handling using invalid Python syntax. - -Build 1.5.2-7.7.1.681-1.5.2: - LexManos: Fixed hardcoding of MC version in debug text. - -Build 1.5.2-7.7.1.680-1.5.2: - LexManos: - Updated FML: - MinecraftForge/FML@00f00b17bf0da262e6fe3e327ca2deedf7146305 Fix scalac detection to actually use the located command instead of defaulting to 'scalac' - -Build 1.5.1-7.7.2.679: - LexManos: Changelog generator will now bundle failed builds with the next successful build. Should make it look better and prevent the version numbers from being confusing. - -Build 1.5.1-7.7.2.678: - LexManos: Bump version to 7.7.2 so I can make a release. - -Build 1.5.1-7.7.1.676: - tobias: Fixed ListenerListInst not being rebuild after unregistering a listener, causing calls to unregistered event listeners. - tobias: Replaced derpy tabs with spaces - -Build 1.5.1-7.7.1.675: - kinglemming: - -Add vanilla Ores to the Ore Dictionary. No recipe replacement required. - -Add NBT-sensitive getMaxDamage() for ItemStack. - - Signed-off-by: King Lemming - -Build 1.5.1-7.7.1.674: - LexManos: Attempted a fix for the changelog generation, should print all builds back to 1 now. - -Build 1.5.1-7.7.1.673: - Christian: - Updated FML: - MinecraftForge/FML@cf9b5b445ba284d389c7e32a03d9c8ef43469042 Don't leave scala running in interactive mode. - -Build 1.5.1-7.7.1.672: - Christian: - Updated FML: - MinecraftForge/FML@cfda7fc738ce6079f625a3822ebff5e7e0db5669 Fix URL for MCP - MinecraftForge/FML@781c68121626321e0efddaf4c4db9f1b8b5911db Some fixups for scala compilation in MCP. Scala should now be compilable and reobfuscatable with srgnames in MCP. - Christian: Try and be less noisy about world leaks - Christian: ItemStack delegation to Item for damage values. - LexManos: Fix rotation issue with non-block items. - Christian: - Updated FML: - MinecraftForge/FML@ddadf93ca1d648d88fdb61c9625cd675c3650ccd Fix when an old scalac is present on the system to not fail the build - Christian: - Updated FML: - MinecraftForge/FML@aa200923f0fe0c548faa4f103d803ade2e49d19d Fix patch derp. - -Build 1.5.1-7.7.1.667: - Christian: - Updated FML: - MinecraftForge/FML@dcf069ca52738a7bb7bde01f1c7ebd2e06cd0ac6 Attempt to reduce lines on the screen for id mismatch. Hopefully prevents game crashes. - MinecraftForge/FML@58ba24add2a96bf4c079d5919f2d90dcc2f380e4 Fix possible NPEs in GameData - -Build 1.5.1-7.7.1.666: - Christian: - Updated FML: - MinecraftForge/FML@a3b5eaacfdd9218ef68d3dc064bba729b797cb3d Fix a small modloader compatibility derp: closes #222 - MinecraftForge/FML@677a6e578e84109702365da4a784f9a57d8c9957 Fix scala supporting SidedProxy. It should work now. - MinecraftForge/FML@334a76de75f2b417f04c23526c7e66ceb48e0de2 Update FMLDeobfuscatingRemapper.java - MinecraftForge/FML@42f1d8795599e0d1a516a1fdd7488a09b77e4565 Merge pull request #224 from Glought/master - MinecraftForge/FML@2dcabe01232b48009acbca6724565598761f561b Add a to string to fmlmodcontainer: should mean less derpy cyclic dependency data - MinecraftForge/FML@11ac46daebe901a6012a09ba5f6fe44af5b1be06 Fixing the GameRegistry. Now it is possible to register a Block with a BlockItem using following code: MyBlock myBlock = new MyBlock(); GameRegistry.registerBlock(myBlock, MyBlockItem.class, "myBlock"); where MyBlockItem class has one constructor with signature: public MyBlockItem(int id, Block block) - MinecraftForge/FML@c3fda11d100f9db7c32ef212ac37eade3e35d701 Merge pull request #225 from MarcinSc/master - Christian: Add forge/FML data to the f3 screen. - -Build 1.5.1-7.7.1.665: - LexManos: - Forge now takes control of GuiIngame's renderGameOverlay, and spits out a ton of events to give modders control of how the screen is rendered. - Inital draft for community feedback. - -Build 1.5.1-7.7.1.664: - LexManos: Allow spawning of Bonemeal particles even if block is not set. - -Build 1.5.1-7.7.1.663: - LexManos: Fix the BLOCK_3D render helper for items that aren't an instance of ItemBlock Closes #533 - LexManos: Fix replaceable checks to work on blocks with a non-replacable material, Closes #532 - LexManos: Restore world unload event for client worlds Closes #531 - -Build 1.5.1-7.7.1.662: - LexManos: Fix logic issue in CrashReportCategory patch, blame Jadedcat for sloppy quick patch. - -Build 1.5.1-7.7.1.661: - lhb: - Fix for ClassCastException when attempting to fetch Biome types from BiomeDictionary - - Attempting to fetch the BiomeDictionary types linked to a biome throws a ClassCastException. This fixes that - lhb: getBiomesForType will cause the same problem - -Build 1.5.1-7.7.1.660: - Christian: - Updated FML: - MinecraftForge/FML@b3d4ea05ec633fb1898e97febf786f1a3e420986 Fix possible NPE in findItemStack, closes #218 - Christian: - Simple block recolouring API: closes #525 - Fix up documentation on "rotation" API: it is up to the mod to decide interpretation of "rotation" for the mod/block. - -Build 1.5.1-7.7.1.659: - LexManos: Fix return value of EnchantPower hook, closes #518 - LexManos: Adds a field to the player for maximum health. Player.dat additions are present, getMaxHealth() needs a magic number for spawning. Closes #527 - -Build 1.5.1-7.7.1.657: - LexManos: New hook to allow Items to render Helmet overlays like pumpkins do. - -Build 1.5.1-7.7.1.656: - Christian: - Updated FML: - MinecraftForge/FML@394f424185a044afcd6b31f400e731478171dd18 Fix to output versions in crash logs - MinecraftForge/FML@8f35adca7a41c280a4b63d4787f042f615966cac Use more expressive language when a version specifier is a simple unbounded above condition - -Build 1.5.1-7.7.1.655: - Christian: - Updated FML: - MinecraftForge/FML@5673c1dd2966536000c2b3f17f85131204c4a291 Add srgname to registerTileEntityWithAlternatives - MinecraftForge/FML@7aea09f4ca2f087d59ff6cb0de1c8e3e8b9ea4df Add type info to properly deobfuscate overloaded fields. Fixes #210. - MinecraftForge/FML@edffd04ed2e89ece75189f76b92ae47643ec92f8 Add in some caching of the read field descriptions for efficiency - MinecraftForge/FML@0daf1a6df4203d97be65a76a46550f6ad22ccc79 Merge branch 'agaricusb-fix-deobf-field' - MinecraftForge/FML@ada52078c75fdfa506a4287c112d01d9af961d5a Merge pull request #216 from agaricusb/add-srgname - -Build 1.5.1-7.7.1.654: - jmacwilliams: fixed a bug that prevented proper lava generation near bedrock - -Build 1.5.1-7.7.1.653: - LexManos: Fix AIOOB in crash report stack trimming. - -Build 1.5.1-7.7.1.652: - pahimar: Fix a derp in that we provision the various arrays for a face, even if we are not going to parse data into it. Solves NPEs for when obj models that don't have texture coordinates attempt to render. - pahimar: Missed a bit - -Build 1.5.1-7.7.1.651: - LexManos: Cave and Ravine gen will now take into account the Biomes top and foller block, allowing them to break the surface in modded biomes. Beaches, MushroomIslands and Deserts are exempt from this check to preserve vanilla world gen functionality. Closes #491 - -Build 1.5.1-7.7.1.650: - Christian: Fix offset in AdvancedModelLoader. *doh* - -Build 1.5.1-7.7.1.649: - LexManos: Added NBT data to liquid stacks. Closes #501 - LexManos: Added a small method in the Block.java to specify the amount of enchanting power it can supply to an enchanting table. Closes #508 - -Build 1.5.1-7.7.1.648: - LexManos: Item callback for EntityItem update tick. Closes #426 - LexManos: Add Item 'swing' callback for use when playing the arm swing animation. Closes #505 - -Build 1.5.1-7.7.1.647: - Christian: Delete sneaky extra file - -Build 1.5.1-7.7.1.645: - LexManos: Re-add and mark deprecated the old signature for ForgeHooksClient.getArmorTexture. - -Build 1.5.1-7.7.1.644: - Christian: - Deprecate preloadTexture, make it a no-op. Should stop derpiness with new - texturing system performance tweaks. - -Build 1.5.1-7.7.1.643: - LexManos: - Updated FML: MinecraftForge/FML@4836b3272a9b292c62816c1d1f9e845486753839 Re-worked the Texture patches, optifine helper function, and re-added support fo - r dynamically rotating the texture for mod authors who do things horribly wrong. - -Build 1.5.1-7.7.1.642: - Christian: - Fix performance of texture uploads - - Updated FML: - MinecraftForge/FML@00c788308881a07a683e17e2e9382313f3719b45 Very significant improvement in performance by using glSubImage to upload data. Inspired by frequent complaints about performance of hires texture packs. They probably still need a beefy system but should work. Hopefully I can figure out why the subImage GL side copy isn't working properly for an even more significant speed boost. But this gets things started. - MinecraftForge/FML@57ad221cc6d9605b9d521f86620c2a31f922ac24 And add the patches *sigh* - Christian: - Updated FML: - MinecraftForge/FML@a31607ae7d0214101679a1ecf1ae8032a5257eda Fix compilation derp, and clean up rotation helper. - -Build 1.5.1-7.7.1.640: - LexManos: Small optimization for usages of Minecraft.getGLMaximumTextureSize(), only need to calculate it once. - LexManos: Small bugfix in Stitcher that was preventing ti from fully filling the possible texture space. Should lower the amount of empty space in textures. - LexManos: - Optimize Texture loops a bit for non-rotated textures. Should help the FPS loss on higher resolution texture packs. If it becomes a major issue we may have to look into a more optimized animation system. - - https://mojang.atlassian.net/browse/MC-13206 - -Build 1.5.1-7.7.1.639: - LexManos: Fix scoreboard saving bug caused by our fix of vanilla map saves. - -Build 1.5.1-7.7.1.638: - LexManos: Updated FML: MinecraftForge/FML@1de89525cc2265bdce8704d9bd0d31c57bca4d97 Fixed issue with instalation when java/javac commands had quotes. - LexManos: Deprecate long dead interface that moved to FML. remvoe next MC version. - -Build 1.5.1-7.7.1.637: - LexManos: Updated FML: MinecraftForge/FML@704a70902fca3de620375116a33dccd3d6d576d0 Sanitize input to isRemappedClass to use '/' as a package seperator like the srg files. - -Build 1.5.1-7.7.1.636: - froggytheturtle: - This allows the result of the explosion to take into account metadata, - tile entities, or even to cancel it altogether. - - Allowed block exploding to take into account tile entity and metadata - LexManos: New hook to allow Items to provide there own armor models. Closes #487 - -Build 1.5.1-7.7.1.635: - LexManos: Fix item deletion in creative menu for items that are the same id/meta but differnet NBT's. Closes #479 - LexManos: Untag NBTTagList.removeTag as client side only, allowing simple removal ont he server side. Closes #477 - -Build 1.5.1-7.7.1.634: - LexManos: Allow items to provide there own FontRenderer for there tooltips. Added for #463 - -Build 1.5.1-7.7.1.633: - ProjectZulu: Added maxCanSpawnInChunk event to allow overriding of creature chunk spawn cap - ProjectZulu: Clarify Factory call and Event Functionality - LexManos: Add function to remove categories from a configuration, indavidual properties can be removed using ConfigCategory.remove() Closes #462 - -Build 1.5.1-7.7.1.632: - LexManos: - Pulled Biome Tag System by Emasher, Closes #433 - An issue with biome adding mods which is becoming increasingly annoying for players, is that many mod authors that add biome specific world generation or mobs in their mods, for the most part, hard code them to work with vanilla biomes only. This becomes a huge problem when it's difficult to even find a vanilla biome, let alone a specific one, when biome mods are installed. - - A simple solution to this problem is a tag system for biomes that allows mod authors to set up their world generators, or mobs to generate or spawn in biomes that have been registered with a specific tag such as "FOREST", or "FROZEN". I wrote such a system a few months ago, which I've been using with my own mods, and have made available to anyone who wants to use it. Since then, I've had requests from mod authors and players alike to try and get it, or at least similar functionality, into Forge, where other mod authors will be more comfortable using it. - - Aside from the tags, it also includes a rule based system to classify biomes that have not already been registered with it when information is requested on them (You can opt out of this by registering a biome as type "NULL"). And additionally, the ability to register IWorldGenerators for specific biomes, or biome types (tags) to speed up chunk generation a little bit. - -Build 1.5.1-7.7.1.631: - LexManos: Deprecate IArmorTextureProvider, moved to Item. And exposed more information to the function. Closes #365 - -Build 1.5.1-7.7.1.630: - LexManos: Updated FML: MinecraftForge/FML@570faeb790745c35403c67fabab57651b71da576 Added the ability to save transformed classes to disc for debugging. - LexManos: Add checking for 'ENUM$VALUES' in EnumHelper. Eclipse uses it's own internal compiler which does not follow the java standard of making the values field names $VALUES and private. Instead its public and ENUM$VALUES. Closes #502 - -Build 1.5.1-7.7.1.629: - LexManos: Revert MinecraftForge/MinecraftForge@f594109b30c87f5a0996eee9e8c4513380733cee If concurancy issues arise we will reassess. The provided solution caused entities to be removed incorrectly and cause 'invisible' entities client side. - -Build 1.5.1-7.7.1.628: - LexManos: Fix EntityPlayer passed to Bonemeal event. - -Build 1.5.1-7.7.1.627: - LexManos: Fix off-by-one in rotated textures. - LexManos: Removed index bounds checking in some chunk functions, if you error blame Grum. - -Build 1.5.1-7.7.1.625: - LexManos: Fix vanilla texture bug causing rotated textures to be placed wrong. - -Build 1.5.1-7.7.1.624: - Christian: - Updated FML: - MinecraftForge/FML@8b8837c9ff635d4988e0a1504fca38667825daf0 Fix NPE when branding isn't present - -Build 1.5.1-7.7.1.623: - kraphteu: Remove unneeded SideOnly. ref: Buildcraft/Buildcraft#710 - -Build 1.5.1-7.7.1.622: - Christian: - Removed obsolete patches - Updated FML: - MinecraftForge/FML@26ccb9106e443e664b0fdc1b95c3600b90ab2bc5 Change snooper/crash report brand handling. fmlbranding now loads another string! - MinecraftForge/FML@eff464cf0e656d92dfedf16e79e5cd6c36b9fc76 And the core patches for that - -Build 1.5.1-7.7.1.621: - Christian: Sanity check the item ID for loaded liquid stacks better. - -Build 1.5.1-7.7.1.620: - Christian: Make liquidstacks immutable in their type data. Sorry about this, but it makes things a lot easier. - Christian: Add in persistence code for LiquidTank. Using it should protect against liquids that get removed f.e. Closes #395 - -Build 1.5.1-7.7.1.618: - Christian: Fix up liquidstack so it knows about the texture sheet for it's icon - -Build 1.5.1-7.7.1.617: - Christian: Fix AT file - -Build 1.5.1-7.7.1.616: - Christian: Fix possible NPE in ChunkManager. Closes #478 in reality - -Build 1.5.1-7.7.1.615: - Christian: made BlockFluid.theIcon protected - Christian: fix bug #489 from #429 - Christian: Fix up some liquid logic - -Build 1.5.1-7.7.1.614: - Christian: - Updated FML: - MinecraftForge/FML@2bc6a0666f8a54f6b1fbc3398c6e3a385ecd35b5 Attempt to make any "default package" class public. This might fix problems with certain modloader mods that ship changes to vanilla classes. - Christian: Use the liquid name in liquid stack persistence. Closes #429 - Christian: Fix hashCode - Christian: - Updated FML: - MinecraftForge/FML@0d844874124649099dbcbb9ae2b36719e1dda25f Fix up derp in access transformer - -Build 1.5.1-7.7.1.611: - LexManos: Bump version number for 1.5.1 Note: We really need to do this more... - -Build 1.5.1-7.7.0.610: - LexManos: Fix NPEs when modders stupidly register null texture names. - -Build 1.5.1-7.7.0.609: - LexManos: Fixed issue with Event.hasAnnotation ignoring it's parameter. And cached its values for potential performance gain. Closes #482 - -Build 1.5.1-7.7.0.608: - jesse: - Entity Extended Properties Changes - - Adds IExtendedEntityProperties interface, which specifies three methods - that are needed: Init, Save, and Load. - - Adds the EntityConstructing event, which is called during the - constructor of Entity. It is needed there so that the reference is in - place during the ReadNBT call. - - Adds hooks into Entity that allow registration of - IExtendedEntityProperties classes, as well as saving and loading to NBT. - jesse: - Brewing Stand Changes - - Added an event on potion ingredient applied. Event contains the item - stacks of each of the potions being brewed as well as any remaining - ingredients. - - Changed TileEntityBrewingStand and SlotBrewingStandPotion to look for - instanceof ItemPotion rather than potion.itemID - jesse: - Player Flyable Fall Event - - Adds an event to EntityPlayer that is posted on player fall when the - player has flight capabilities. - Christian: Fix itemframe render bug - Christian: Add in block rotation support. It supports most vanilla blocks (hopefully), logs should be added soon. - jesse: - Access Transformer Changes - - AT changes and corresponding class changes. - Additions (all made public): - EntityLiving.targetTasks - PotionHelper.potionRequirements - PotionHelper.potionAmplifiers - PotionEffect.duration - Potion.setIconIndex - Item.setPotionEffect - Block.blockHardness - Block.blockResistance - jesse: - Enderman Teleport Event - - New event when an enderman teleports that allows the teleport location - to either be modified or completely cancelled. - jesse: - Enderman attackEntityFrom changed - - Changed so that if the teleport fails upon being attacked, Endermen will - take damage as normal. - jesse: - Ender Teleport Changes - - Renamed Ender Teleport Event and added it in to ender pearls. - jesse: - quick bugfix in entityenderman - - reversed boolean check on event result - Christian: - Updated FML: - MinecraftForge/FML@2d368c4c2eb6b4e0bb60757b6e1679c23aaad9db Itemstacks in the GameRegistry (manual registration by mods) - Christian: - Updated FML: - MinecraftForge/FML@5e1949eb0e3a43d3ec6c710289532d93f6819934 Clone the itemstack, and allow for passing in a stacksize - Christian: - Updated FML: - MinecraftForge/FML@ede93d438f2b5fab92cd6a459247ca158354e430 Validate supplied stack size - MinecraftForge/FML@d73ac867df775174dafdd2da193fabd7c3e7407e Add a mechanism to dump the registry- useful for mod developers. - Christian: - Updated FML: - MinecraftForge/FML@82bc9f1b35f5d51a722d294dd252e6bab4d54fa4 Add some information, and a log message letting you know it worked - Christian: Update patches! - Christian: Re-enable changelog? Hopefully... - Christian: Changelog fixup - Christian: Damn you python and your tab obsession! - -Build 1.5.1-7.7.0.605: - Christian: Fix AT config for texturemap - -Build 1.5.1-7.7.0.604: - Christian: - Allow itemstack sensitive damage computation for attacks. Should allow - storing data in the nbt :) - -Build 1.5.1-7.7.0.603: - Christian: - Updated FML: - MinecraftForge/FML@d9db27275ea06d37ae75e201140019ca152314b0 Fix mismatch screen a bit. Should render more correctly now and at least not be blank in a lot of circumstances.. - Christian: Allow items to decide if they can or cannot have book enchantments applied - -Build 1.5.1-7.7.0.602: - Christian: - Updated FML: - MinecraftForge/FML@d1ff1967b50f2ff2edf0b60acdb6508c0a3eeb06 Fixed FMLRelaunchLog's Newline Handling - MinecraftForge/FML@591a25722b36d2d1b200a31278cb8da117363f6b Merge pull request #208 from jrtc27/patch-1 - -Build 1.5.1-7.7.0.601: - Christian: - Updated FML: - MinecraftForge/FML@f709ce757984b13acb7208d6d8fbdeaa83d2928d Fix missing block world rendering - MinecraftForge/FML@748eece456e079a21112a77047d004d4f410b170 Merge pull request #206 from mDiyo/patch-1 - MinecraftForge/FML@012a755bb9ce9737c843b0dfd86473d143b637be Fix up patch properly. Also, fix md5s for the jars. - -Build 1.5.1-7.7.0.600: - LexManos: - Update to 1.5.1 Pre-Release: - MinecraftForge/FML@9565529baf77de27ed8b75be2065da3ba08d16c8 Updated to latest MCP and Minecraft 1.5.1 Pre-release. - MinecraftForge/FML@a573faf92def5dd01af380b3ca86de877c1178a2 Someone derped up this function bad, revert name. - LexManos: MinecraftForge/FML@aaf02ea2ac938d8cbaafdd2f59985c0604d648d7 Updated for new PR client jar. - -Build 1.5-7.7.0.598: - LexManos: - Updated FML: - MinecraftForge/FML@3c346247e1c5de12d4548f6a99349157057e2de6 Fix NPE with CoreMods who do not have the new MCVersion annotation. - LexManos: - Updated FML: - MinecraftForge/FML@625da6492dddcaca8133718aeee97f9981ced623 Fix install.py --mcp-dir option. Fixes #204. - MinecraftForge/FML@687d3c059d054c338c25a489be206a9f3dc63d81 Merge pull request #204 from agaricusb/fix-mcpdir - -Build 1.5.1-7.7.0.597-1.5.1: - LexManos: MinecraftForge/FML@aaf02ea2ac938d8cbaafdd2f59985c0604d648d7 Updated for new PR client jar. - -Build 1.5-7.7.0.595: - LexManos: Change placement of ChunkDataEvent.Save call to apply before sending to worker thread. - -Build 1.5-7.7.0.594: - Christian: - Updated FML: - MinecraftForge/FML@5cc90f060caace93c0bf041d3cc37208f425f623 Fix the logger to treat newlines better, hopefully. Closes #199 - MinecraftForge/FML@5e3af8ac0e18cfa3a92f9ba726ec1a6b55e87d97 Use the relaunch log, for class circularity safety. - MinecraftForge/FML@ce949e6099fe2a63ee6774acd6e55aa55d3b3673 Support simple mc version test in coremods, only effective through jar loading. Also, log some more data about the environment. - -Build 1.5-7.7.0.593: - LexManos: - New TextureStitchEvents called before and after a TextureMap gathers and stitches textures together. - Also added a config option to diable the writing of resulting stitched textures to disc. Default disables the writing. - -Build 1.5-7.7.0.592: - LexManos: - Updated FML: - MinecraftForge/FML@24022ab6ba79e4babb57fc0db893c23d4aec85bc Added comments to note FML-only methods - MinecraftForge/FML@8905237306230a33e2a3bab7a2b6f7a8b42d94e4 Merge pull request #200 from bspkrs/patch-2 - MinecraftForge/FML@577b19c1cf12a354112e829fb5704c32fd6cd0a5 Fix potential NPE in class loading and add extra debug information. - -Build 1.5-7.7.0.591: - LexManos: Fix placing of certian items on Redstone Blocks. - -Build 1.5-7.7.0.590: - LexManos: Fix equipment slots for items when right clicked, and dispensed using a dispensor. - -Build 1.5-7.7.0.589: - LexManos: Prevent pistons from generating snowballs. - LexManos: Fix logic inversion that allowed SnowMen to create snow on hoppers. - -Build 1.5-7.7.0.588: - lepko.san: Fix ShapedOreRecipe checking mirrored recipes - -Build 1.5-7.7.0.587: - Christian: Fix multipass item rendering so that it uses the right spritesheet for the item. - -Build 1.5-7.7.0.586: - froggytheturtle: - Made WorldServer.allPlayersSleeping public - - Made EntityPlayer.sleepTimer public - - Sleep changes - -Build 1.5-7.7.0.585: - LexManos: Fix Activator rails activating TNT carts, closes #458 - -Build 1.5-7.7.0.584: - github: Update ForgeDummyContainer.java - -Build 1.5-7.7.0.583: - Christian: - Updated FML: - MinecraftForge/FML@c5d5f4e5164111c5ae63e8de7ce97cc583d73e6e Fix AllPublic access transformer not affecting methods. Should fix modloader compatibility - -Build 1.5-7.7.0.582: - LexManos: - Updated FML: - MinecraftForge/FML@4762d4d8ef00bd789ffb6bccbd12f7478b07da62 Allocate more ram {typically 256 is defailt} to fermflower, should fix decomplication issues on OSX - MinecraftForge/FML@6370c242f0e1cb8ec80c7dccc1133cb0d0607bae OS X's python 2.6.1 has a bug in zipfile.extractall that makes it unzip directories as regular files. So switch to extract - -Build 1.5-7.7.0.581: - LexManos: Remove the block if TE errors. - -Build 1.5-7.7.0.580: - LexManos: Add config toggle to atempt to remove TileEntities and Entities that error during there update without fully crashing the server, use at your own risk. Closes #424 - -Build 1.5-7.7.0.579: - Christian: - Updated FML: - MinecraftForge/FML@8f2dbf7046f52d836993edb946d7d310b399bf9d Fix up stupid derp in IMC code: actually reset the IMC list after each delivery. Fixes a bunch of mods. Sorry everyone. - -Build 1.5-7.7.0.578: - ohai.iChun: - [Bugfix] One should not assume an item would use the item spritesheet. - - Item class has a func to return an int to use terrain.png or items.png. This makes forge take account of it. - -Build 1.5-7.7.0.577: - LexManos: Fix bug with rendering one too many passes for ItemEntities Closes #450 - LexManos: Fix RedstoneBlock power issues, Closes #452 - LexManos: Fix for nether quartz not generating in the nether, Closes #454 - -Build 1.5-7.7.0.576: - LexManos: Deprecation Sweep in DungeonHooks and fixed wildcard in ChestGenHooks remove function. - -Build 1.5-7.7.0.575: - LexManos: Fix RenderItem to work with items that use the terrain texture map that aren't in the block ID range. Close #443 - LexManos: Move the RenderWorldLastEvent back to before renderHand like it was in 1.4 Closes #444 - LexManos: Add call to EntityLiving when counting entities for Spawning Cap. Closes #447 - LexManos: Fix missed wildcard change in OreDictionary closes #448 - -Build 1.5-7.7.0.574: - LexManos: Fix crash when EnumHelper can't find $VALUES field, log info, and return gracefully. - -Build 1.5-7.7.0.573: - Christian: - Updated FML: - MinecraftForge/FML@23ea835fa7bc0cdb466d058814b5a0e0c67e8c9a Pass obfuscation status to coremods - -Build 1.5-7.7.0.572: - Christian: Some tweaks to the liquid dictionary, to allow for canonical liquid stacks for things like rendering - Christian: - Updated FML: - MinecraftForge/FML@d88db6c0cfd5484428b574889eae02d34535beae Fix up deep tree deobfuscation - -Build 1.5-7.7.0.571: - LexManos: Removed get/setTextureFile from Block, nolonger used. - LexManos: - Updated FML: - MinecraftForge/FML@7b722bfcd6d4c6867d15492c293a455dfd50d272 Update MCP for latest PR silent update. - MinecraftForge/FML@c6dab815f4e036e25b8f56bef7b8ee63f838adb4 Missed joined.exc, must fix scripts. - -Build 1.5-7.7.0.569: - LexManos: - Updated FML: - MinecraftForge/FML@a90504315e928915345c7b04972d912cdaa0bfdb Readjust size of mods button when Minecraft Realms button is enabled. - -Build 1.5-7.7.0.568: - Christian: Fix the oredictionary for the new recipe wildcard value of Short.MAX_VALUE. - -Build 1.5-7.7.0.567: - Christian: - Updated FML: - MinecraftForge/FML@3765ceb02d783ae5156976f3165bafdb6a3ddbb3 Update MCP, fixes the "broken texture packs" problem. - -Build 1.5-7.7.0.566: - Christian: - Updated FML: - MinecraftForge/FML@179c504746910d4196eef3ee2d56f63cf585c983 Simplify logic in tick start/end - MinecraftForge/FML@29edd242cd7a1fadedf4fb874ea8bbd4e643bffa Fix coremods without a manifest crashing the game. Closes #181 - MinecraftForge/FML@ac16845fc4661fa046a252eda7f9a9a847940189 Fix demo mode crash. Closes #187 - MinecraftForge/FML@984291cee91f585a6f4300eedfed882c814843f8 Fix supertype parsing to handle null superclass (Hi Object!). Closes #160 - MinecraftForge/FML@f6479299936f0f94cfc43210dd9dd44b8b5350ef Merge branch 'master' of github.com:Uristqwerty/FML - MinecraftForge/FML@b301e8e4c1877be246fd4f0b45085b70773d8f2b Change type of connection queue to a concurrent linked queue. Much more efficient, hopefully. Closes #189 - Christian: - Updated FML: - MinecraftForge/FML@dab22f5b74f3f2a410e20583f811605dc8e3c05f Fix "0 mods" display when installed in forge. - -Build 1.5-7.7.0.565: - Christian: - Updated FML: - MinecraftForge/FML@485db6be2e6b54a9a523a2b06e0d886792b0826a Use the reobfuscation maps in the reflection helper for field lookups: should help some reflection cases with the deobf. - Christian: - Updated FML: - MinecraftForge/FML@591e65fa1aa52d2a72dc527ad1c2ac53c8eb94c4 Revert "Use the reobfuscation maps in the reflection helper for field lookups: should help some reflection cases with the deobf." - MinecraftForge/FML@2a779ec3289f695b477ec6b0822a27801e2deba1 Try a different way of remapping the fields. Should work because it's userspace, not relauncher space - MinecraftForge/FML@ca2d8bd83475f37946b86cf6fabd8ff810f9c2bf Fix reflection helper: it needs to unmap the classname to find the field maps. - -Build 1.5-7.7.0.563: - Christian: - Updated FML: - MinecraftForge/FML@25f3fcad4654d19637878bdfb2b70a9586fb3fc9 Fix up some relauncher stuff: the vanilla applet works now, as do other applets. Deobf data is resolveable for them too. - -Build 1.5-7.7.0.562: - LexManos: - Updated FML: - MinecraftForge/FML@6bf7c9878cc959d5f5fa8ec0bf9d0d75037df882 Fixed srg name of minecraftDir for runtime deobf. - -Build 1.5-7.7.0.561: - Christian: Refresh patch - Christian: - Updated FML: - MinecraftForge/FML@95d0ff18cdca3b5a91b648c847c00f559f8ce6f2 Fix runtime deobfuscation for remapped inner classes - -Build 1.5-7.7.0.560: - LexManos: - Updated FML: - MinecraftForge/FML@86a9c7d35953296f7c8bd3a2b1b43115ef0f9308 Fixup reobfusication of server code if present. - MinecraftForge/FML@8e7956397dd80902f7ca69c466e833047dfa5010 Just enable server side compile, and warn not to complain tous. - MinecraftForge/FML@889efc1c0a9216b55f6de275e4f4a279d977e60c Fixes GameRegistry.registerBlock - MinecraftForge/FML@fe1623a36a1bb8b0a046d833e896fd46d88898ef Merge pull request #195 from RainWarrior/snapshot15 - MinecraftForge/FML@62f5adf8e21d59408af409a88b2c81757fd3c587 Revert "Fix modlist to use the new texture binding functions, i think" - MinecraftForge/FML@58ee06ea8edf508daa4ab3920790c0153cf6660d Some fixes for the snapshot - MinecraftForge/FML@368a2245ef0071b0b7a35d3bd78ab1ae379f8faf Merge branch 'snapshot15' - MinecraftForge/FML@1eba1dfdc00edf12ca3d8586dc342563218fc717 Fix accidental commands.patch overwrite - MinecraftForge/FML@ebdb166ec87e63503f0071e557cdb44629a0e0c2 Merge branch 'snapshot15' - MinecraftForge/FML@450dd8313c2e9e46d173bbd242f84d48266af7c8 Fix up some small things, merging into mainline - MinecraftForge/FML@1642bad402efe819f4e763bf4b460d8c04194849 Fix Multi-part entity children ID issue, mobs with custom spawning must deal with child ids themselves. - -Build 1.5-7.7.0.559: - LexManos: Update patche for jad-style names. - LexManos: Updated FML and at config for 1.5 snapshot - LexManos: First patches updae to 1.5, Many rendeirng related changes, most notibly removed Item/Block's getTextureFile() functions. - LexManos: Removed some dead code, We don't bind custom tessellators - CovertJaguar: MCL Update - LexManos: Bump major and minor version numbers to mark 1.5, it's gunna break everything. Should be a compileable 1.5 build. - Christian: - Fix a couple of forge patches - - Update FML: d075daf - d075daf Merge branch 'master' into snapshot15 Fix up compilation and patching errors - 1bd6847 Fix up packages.csv ordering for easier diffing - dd832f2 Update for MCP7.30c - fixes redstone rendering issues - aebf6eb Add in a registry method to allow for alternative TileEntity names- they will be used to support loading maps containing the older definiti - 8921cfe Remember to add the new patches! - cd67596 The "ServerStarting" event should now properly crash the server if it fails, so the client will properly exit. Also, added in a "pre-server - e1c6630 Javadoc cleanup - 5ce4e31 Fix breaking change - a99c488 Merge branch 'patch-1' of https://github.com/bspkrs/FML into gh-updates - 94282c5 Merge branch 'FMLLogFormatter' of https://github.com/donington/FML into gh-updates - 7ad8529 Update MCP to MCP7.26a and refresh MCP names - 15534ed Update address of the FML repository to the new location in all the files - aa822e3 Fix logical error in comment text - a14ab91 Update license text to make clear that FML is not a way to sidestep MCP licensing. - 0165742 Fix mcp conf md5 signatures for the snapshot - 26a5b31 FMLLogFormatter: dynamic log level name - LexManos: - Merge commit '695b080197bd577cc34fe6dbc72b74f4a74b2d5c' into snapshot15 - Testing cherry picking. - LexManos: - Sync up with FML, Will not run nativly as you need deobfusication_data.zip in your libs folder. - We have not setup the download for that yet, to make it yourself just zip joined.srg name it deobfusication_data.zip and put it in lib - LexManos: Not supposed to have debug stuff... - LexManos: Updated Forge to s13w09c - Christian: Fix up patches for FML, also, add in FML as a submodule rather than a zip - Christian: - Add in simple texture management for mods using the stitcher. Scope with "{domain}:{texture}" to - get textures that are not at /textures//{texture}.png but /mods/{domain}/textures//{texture}.png - instead - LexManos: Testing selective commit of submodule. - LexManos: - Added submodule changelog ganerator: - - Updated FML: - MinecraftForge/FML@e74087ee430633475c3ca058e54e3ef242a9d6aa Ignore again, testing submodule. - LexManos: Removed GNUWin32 files and uneeded files seince FML is now a submodule. - LexManos: Remove window helper batch files. - LexManos: Update python scripts to reflect that FML is now a submodule. Delete updateasmdata as it's in /fml/ now. Build should work once again. - LexManos: Change FML module to read-only connection. - Christian: Update submodule - LexManos: Copy over some needed files for debugging. - LexManos: Rework configuration, configs should now use Config.hasChanged to deterne if thehould call save(), also re-worked the saving to not use String.format as much. - LexManos: Fixed new python changes. - LexManos: - Updated FML: - MinecraftForge/FML@aed2cc446ad8d5882890c5f218eb894ea7bd2577 Force file name encoding to UTF-8, caused different zips on different systems. - LexManos: Fix animation location for textures with domains - LexManos: Add helper functions for deling with custom TextureStitched - LexManos: Add callback on TextureStitched to control texture loading. - LexManos: New world event for controlling potential entity spawnlists. For #430 - LexManos: Removed erroring imports and update build function to die on errors. - LexManos: Fix ItemSeedFood respecting custom soils. - LexManos: - Updated FML: - MinecraftForge/FML@debbdc00be8ea1a261cdff83785ddc7100419a74 Capture Minecraft logs into FML logging - MinecraftForge/FML@74fffc6fdc2eda8caa9a7feb0826d7babb84751a Update next render to 40 - Christian: - Call stitcher for non-existent textures as well. Probably allows - for generated textures. Hmmm - Christian: let's do it right this time. Hmmm - Christian: - Updated FML: - MinecraftForge/FML@abe4f73a9a3158f6f9d1ea2334798f54a25817bf FIX massive performance issue with FML. Thanks to @sfPlayer1 for finding this epic derp on my part! - Christian: Add an Icon to the LiquidStack, for rendering the liquid in various ways - LexManos: Readd second render pass to TileEntities and Entities, patches were missed when merging in master branch. As note, CB can DIAF. - LexManos: Fix compile error, forget to flush to disc. - LexManos: Make release quit on compile error. - Christian: Clean up Access Transformer mapping data - Christian: - Updated FML: - MinecraftForge/FML@e9ff699c2dcd787a3e0ebaa427c625a48de4c9fb Refresh the renderengine after modloading is complete. Should fix issues with out-of-place texture registration by mods. - MinecraftForge/FML@a723aa68606d57b0ee5bac8b1d1905abef440b54 Refresh copyright notices on everything - MinecraftForge/FML@c42a2101408b21799728c88e2d02c718c3b0dd36 Strip deprecated code - MinecraftForge/FML@6eeae8c49ff4359dc21c44eb73e4e043285cd8bf Fix up state transition derp when the server crashes with an error- it shouldn't double-derp - MinecraftForge/FML@81c6421f84c1bff359dfe927974e8730b348806a Tweak license text- any osi licensed project can use the asm transformer code - LexManos: - Updated to 1.5 Pre-release - Updated FML: - MinecraftForge/FML@2d98835db8c6a7665ef55117d60ab4318876836b Scala support! It's still primitive, I hope that people will like it. I do :) - MinecraftForge/FML@5bfaf7c1700191b6ed8f4752c9a95bf8c25323ef Global object registry, also, support the new itemblockwithmetadata constructor - MinecraftForge/FML@80a40c03e644840d827eb7d67ff97f6558eaa2e4 Update to MCP 1.5 and minecraft 1.5. - MinecraftForge/FML@b3e854a15d7c50b4967be8237df5fdace95a15ee Update for new MCP with srg reobf. - LexManos: Fix typos. - LexManos: Deprecated Forge's ISidedInventroy, there is a vanilla solution. Added temporary config option to legacy furnace slot orientation. - LexManos: - Updated FML: - MinecraftForge/FML@f1c6bdd57d41a938cb3326d509042f6842e42396 Support the MCP format of partial reobfuscation for portability. Ensure modloader-like compatibility - MinecraftForge/FML@0419b9d9751ade4497343aefaf2ca43703eb479a Update MCP info for latest - LexManos: Early define CrashReport classes to combat invalid crash details. - LexManos: Fix reobf call. - -Build 1.5-7.7.0.558-snapshot15: - Christian: Clean up Access Transformer mapping data - Christian: - Updated FML: - MinecraftForge/FML@e9ff699c2dcd787a3e0ebaa427c625a48de4c9fb Refresh the renderengine after modloading is complete. Should fix issues with out-of-place texture registration by mods. - MinecraftForge/FML@a723aa68606d57b0ee5bac8b1d1905abef440b54 Refresh copyright notices on everything - MinecraftForge/FML@c42a2101408b21799728c88e2d02c718c3b0dd36 Strip deprecated code - MinecraftForge/FML@6eeae8c49ff4359dc21c44eb73e4e043285cd8bf Fix up state transition derp when the server crashes with an error- it shouldn't double-derp - MinecraftForge/FML@81c6421f84c1bff359dfe927974e8730b348806a Tweak license text- any osi licensed project can use the asm transformer code - LexManos: - Updated to 1.5 Pre-release - Updated FML: - MinecraftForge/FML@2d98835db8c6a7665ef55117d60ab4318876836b Scala support! It's still primitive, I hope that people will like it. I do :) - MinecraftForge/FML@5bfaf7c1700191b6ed8f4752c9a95bf8c25323ef Global object registry, also, support the new itemblockwithmetadata constructor - MinecraftForge/FML@80a40c03e644840d827eb7d67ff97f6558eaa2e4 Update to MCP 1.5 and minecraft 1.5. - MinecraftForge/FML@b3e854a15d7c50b4967be8237df5fdace95a15ee Update for new MCP with srg reobf. - LexManos: Fix typos. - LexManos: Deprecated Forge's ISidedInventroy, there is a vanilla solution. Added temporary config option to legacy furnace slot orientation. - LexManos: - Updated FML: - MinecraftForge/FML@f1c6bdd57d41a938cb3326d509042f6842e42396 Support the MCP format of partial reobfuscation for portability. Ensure modloader-like compatibility - MinecraftForge/FML@0419b9d9751ade4497343aefaf2ca43703eb479a Update MCP info for latest - LexManos: Early define CrashReport classes to combat invalid crash details. - LexManos: Fix reobf call. - -Build 13w09c-7.7.0.556-snapshot15: - LexManos: Make release quit on compile error. - -Build 13w09c-7.7.0.555-snapshot15: - LexManos: Readd second render pass to TileEntities and Entities, patches were missed when merging in master branch. As note, CB can DIAF. - LexManos: Fix compile error, forget to flush to disc. - -Build 13w09c-7.7.0.553-snapshot15: - Christian: Add an Icon to the LiquidStack, for rendering the liquid in various ways - -Build 13w09c-7.7.0.552-snapshot15: - Christian: - Updated FML: - MinecraftForge/FML@abe4f73a9a3158f6f9d1ea2334798f54a25817bf FIX massive performance issue with FML. Thanks to @sfPlayer1 for finding this epic derp on my part! - -Build 13w09c-7.7.0.551-snapshot15: - Christian: let's do it right this time. Hmmm - -Build 13w09c-7.7.0.550-snapshot15: - Christian: - Call stitcher for non-existent textures as well. Probably allows - for generated textures. Hmmm - -Build 13w09c-7.7.0.549-snapshot15: - LexManos: Fix ItemSeedFood respecting custom soils. - LexManos: - Updated FML: - MinecraftForge/FML@debbdc00be8ea1a261cdff83785ddc7100419a74 Capture Minecraft logs into FML logging - MinecraftForge/FML@74fffc6fdc2eda8caa9a7feb0826d7babb84751a Update next render to 40 - -Build 13w09c-7.7.0.548-snapshot15: - LexManos: Removed erroring imports and update build function to die on errors. - -Build 13w09c-7.7.0.547-snapshot15: - LexManos: New world event for controlling potential entity spawnlists. For #430 - -Build 13w09c-7.7.0.546-snapshot15: - LexManos: Add callback on TextureStitched to control texture loading. - -Build 13w09c-7.7.0.545-snapshot15: - LexManos: Fix animation location for textures with domains - LexManos: Add helper functions for deling with custom TextureStitched - -Build 13w09c-7.7.0.544-snapshot15: - LexManos: Copy over some needed files for debugging. - LexManos: Rework configuration, configs should now use Config.hasChanged to deterne if thehould call save(), also re-worked the saving to not use String.format as much. - LexManos: Fixed new python changes. - LexManos: - Updated FML: - MinecraftForge/FML@aed2cc446ad8d5882890c5f218eb894ea7bd2577 Force file name encoding to UTF-8, caused different zips on different systems. - -Build 13w09c-7.7.0.543-snapshot15: - Christian: Update submodule - -Build 13w09c-7.7.0.542-snapshot15: - Christian: Fix up patches for FML, also, add in FML as a submodule rather than a zip - Christian: - Add in simple texture management for mods using the stitcher. Scope with "{domain}:{texture}" to - get textures that are not at /textures//{texture}.png but /mods/{domain}/textures//{texture}.png - instead - LexManos: Testing selective commit of submodule. - LexManos: - Added submodule changelog ganerator: - - Updated FML: - MinecraftForge/FML@e74087ee430633475c3ca058e54e3ef242a9d6aa Ignore again, testing submodule. - LexManos: Removed GNUWin32 files and uneeded files seince FML is now a submodule. - LexManos: Remove window helper batch files. - LexManos: Update python scripts to reflect that FML is now a submodule. Delete updateasmdata as it's in /fml/ now. Build should work once again. - LexManos: Change FML module to read-only connection. - -Build 13w09c-7.7.0.539-snapshot15: - LexManos: Updated Forge to s13w09c - -Build 13w05b-7.7.0.538-snapshot15: - LexManos: Not supposed to have debug stuff... - -Build 13w05b-7.7.0.537-snapshot15: - LexManos: - Sync up with FML, Will not run nativly as you need deobfusication_data.zip in your libs folder. - We have not setup the download for that yet, to make it yourself just zip joined.srg name it deobfusication_data.zip and put it in lib - -Build 13w02b-7.7.0.536-snapshot15: - mehvids: Gave entities and tile entities access to the second render pass for translucency. - Christian: Attempt to fix a possible NPE in the face of ChickenBones' hackery. ChickenBones. stop it! - Christian: - Fix a potential problem with "Entity already added" when using the dormant - chunk cache capability. The entities in the dormant chunk cache will get new - IDs prior to the cached chunk returning. - Christian: Fix NPE causing issue with the cache. Derpy derp. - Christian: - Add in TESR culling, and a new TileEntity method to allow for differential sizing of the - TESR view culling vs the TE collision bounding box (the former defaults to the latter) - Checked into a branch because it's likely to break expanded TileEntities. - Christian: Bump the revision number for the TESR and renderpass changes - Christian: - Add in a mechanism for explicit subclassing of WeightedRandomChestItem to allow for - generational style chest content generation rather than static. Cleans up some old code nicely - Christian: - We try and log a message if we detect a world leak: it's probably not infallible, but it should - help mod developers- if you see this when testing your mod with, say, mystcraft, you're probably - keeping a hold of an invalid handle to the World (either directly, or indirectly via Entity or TileEntity) - and you should look to refactor to wrap those handles in WeakReferences - LexManos: Moved warning logic down, so that no more tickets are isues if the mod is over it's alotment. Fixes #378 - LexManos: Forge Additions: Exposed ChunkCache.worldObj to public PR #383 - LexManos: Fixup a resource leak warning. - LexManos: Add DimensionManager.unregisterProviderType for PR #388 - LexManos: Added input getters for Ore recipies, and javadoc warning for modders, #390 - LexManos: Rework canSilkHarvest hook to try and honor vanilla overrides, should close #391 - LexManos: Added catch to TileEntityChestRenderer for potential crash when modders do bad things -.- Closes #389 - LexManos: Change access of upper and lower chest fields of InventoryLargeChest to public. Closes #387 - LexManos: Change WorldServer.allPlayersSleeping to public, and remove the SideOnly annotation on EntityPlayer.getSleepTimer() Closes #393 - LexManos: Fix initalization issue with the clamping threshold config value. And remove vanilla console spam related to it. - Christian: Fix small derp in TE - Christian: - Update FML:549b6fd - 549b6fd IMC tweaks: runtimeMessages now work (thanks for all that testing for this much requested feature!) and IMCEvent will no longer rem - 9fafdc1 More logging tweaks. You can probably configure individual mod log files if you wish now - f169f7c A log of logging cleanup. FML will now read logging.properties to configure logging channels a couple of times during startup. You - 3ac891f Try and handle "death on startup" a bit cleaner - 2dc0189 Deprecate the old GUI ticktype. They're dead and have been for some time. - dd98784 Tweak a method signature - 1c9a510 Add parameters to FML install to enable/disable certian aspects. Applying patches, running transformer/merger, and decompiling serv - 1bd6847 Fix up packages.csv ordering for easier diffing - Christian: - Add in "armor ticking"- implement the interface and the armor piece will tick. - - Update FML:22dbe41 - 22dbe41 Fix up mistake that broke all modloading. Nice. - Christian: Fix TESR rendering for double chests - Christian: Fix possible null case for collision bounding box. - Christian: Remove the single use interface ITickingArmor, and apply to Item directly. - Christian: - Fix ServerBrand retriever- forge is now forge,fml! - - Update FML: cd96718 - cd96718 Fix HD mob skins, FINALLY!!! Stupid eyes are stupid. - LexManos: Kill generated timestamp in config files, if you want to retreive this information, usethe file's modified time. Closes #404 - LexManos: Actually use the line parameter in ServerChatEvent, closes #401 - LexManos: Kill .sh wrappers until someone writes more robust versions, closes #392 and closes #402 - LexManos: Made LiquidStack.isLiquidEqual(ItemStack) properly check the contained liquid, in addition to obvious id/meta closes #399 and closes #403 - LexManos: Add item frame transformations to the EntityItem render helper Closes #407 - LexManos: Added a hook into SlotArmor so Items can control if they are classified as a Armor type. Closes #408 - LexManos: Fixes comparison for items in creative inventory, closes #411 - LexManos: Fix fortune modifier always passed as 0 to idDropped closes #412 - LexManos: Fix EventTransformer throwing an NPE when transforming a class that doesn't exist. Closes #413 - LexManos: Fix profiler issue with RenderGlobal patch. Closes #414 - LexManos: Jenkins needs this script, *pokes Overmind* -.- - LexManos: - Update FML to 556: - b6d6f235 Fix sprite map issue. - 1158aa46 Fix Language Registry, closes #FML 163 - 50ce6fb3 Option to disable renaming for srgnames. - LexManos: Disable automatic equiti of pcke dup items for players, and fixed index issues in Player.setCurrentItemOrArmor. - LexManos: Fixed entity colision above max world height, and below 0. Closes #400 - LexManos: Change usage of ketSet/get to entrySet in OreDictionary, closes #422 - LexManos: Fix movement speed check, closes #420 - LexManos: clarify what the size is measured in for the dormant chunk cache. -.- - LexManos: ItemStack sensitive versions of Item.getPotionEffect and Item.isPotionIngredient Closes #321 - LexManos: WorldGen*Trees shoud not respect custom soils. Closes #355 - LexManos: Added unload event for client worlds Closes #405 - LexManos: Store the glMultiTexCoord lightmap for later use with glDrawArrays closes #406 - LexManos: Add water and lava to liquid dictionary by default, closes #419 - LexManos: Bump version to 6.6.2, declaring Forge for MC 1.4.7 feature complete, as 1.5 is on the horizon, only bug fixes from this point on. Unless something major happens on Mojang's end. - LexManos: Fix TESR culling for beacons, and implement a good enough measure for Chests. - -Build 13w02b-7.7.0.535-snapshot15: - LexManos: - Merge commit '695b080197bd577cc34fe6dbc72b74f4a74b2d5c' into snapshot15 - Testing cherry picking. - -Build 1.4.7-6.6.2.534: - LexManos: Fix TESR culling for beacons, and implement a good enough measure for Chests. - -Build 1.4.7-6.6.2.533: - LexManos: Bump version to 6.6.2, declaring Forge for MC 1.4.7 feature complete, as 1.5 is on the horizon, only bug fixes from this point on. Unless something major happens on Mojang's end. - -Build 1.4.7-6.6.1.532: - LexManos: Added unload event for client worlds Closes #405 - LexManos: Store the glMultiTexCoord lightmap for later use with glDrawArrays closes #406 - LexManos: Add water and lava to liquid dictionary by default, closes #419 - -Build 1.4.7-6.6.1.531: - LexManos: WorldGen*Trees shoud not respect custom soils. Closes #355 - -Build 1.4.7-6.6.1.530: - LexManos: Fix movement speed check, closes #420 - LexManos: clarify what the size is measured in for the dormant chunk cache. -.- - LexManos: ItemStack sensitive versions of Item.getPotionEffect and Item.isPotionIngredient Closes #321 - -Build 1.4.7-6.6.1.529: - LexManos: Disable automatic equiti of pcke dup items for players, and fixed index issues in Player.setCurrentItemOrArmor. - LexManos: Fixed entity colision above max world height, and below 0. Closes #400 - LexManos: Change usage of ketSet/get to entrySet in OreDictionary, closes #422 - -Build 1.4.7-6.6.1.528: - LexManos: - Update FML to 556: - b6d6f235 Fix sprite map issue. - 1158aa46 Fix Language Registry, closes #FML 163 - 50ce6fb3 Option to disable renaming for srgnames. - -Build 1.4.7-6.6.1.527: - LexManos: Kill generated timestamp in config files, if you want to retreive this information, usethe file's modified time. Closes #404 - LexManos: Actually use the line parameter in ServerChatEvent, closes #401 - LexManos: Kill .sh wrappers until someone writes more robust versions, closes #392 and closes #402 - LexManos: Made LiquidStack.isLiquidEqual(ItemStack) properly check the contained liquid, in addition to obvious id/meta closes #399 and closes #403 - LexManos: Add item frame transformations to the EntityItem render helper Closes #407 - LexManos: Added a hook into SlotArmor so Items can control if they are classified as a Armor type. Closes #408 - LexManos: Fixes comparison for items in creative inventory, closes #411 - LexManos: Fix fortune modifier always passed as 0 to idDropped closes #412 - LexManos: Fix EventTransformer throwing an NPE when transforming a class that doesn't exist. Closes #413 - LexManos: Fix profiler issue with RenderGlobal patch. Closes #414 - LexManos: Jenkins needs this script, *pokes Overmind* -.- - -Build 1.4.7-6.6.1.524: - Christian: - Fix ServerBrand retriever- forge is now forge,fml! - - Update FML: cd96718 - cd96718 Fix HD mob skins, FINALLY!!! Stupid eyes are stupid. - -Build 1.4.7-6.6.1.523: - Christian: Remove the single use interface ITickingArmor, and apply to Item directly. - -Build 1.4.7-6.6.1.522: - Christian: Fix possible null case for collision bounding box. - -Build 1.4.7-6.6.1.521: - mehvids: Gave entities and tile entities access to the second render pass for translucency. - Christian: - Add in TESR culling, and a new TileEntity method to allow for differential sizing of the - TESR view culling vs the TE collision bounding box (the former defaults to the latter) - Checked into a branch because it's likely to break expanded TileEntities. - Christian: Bump the revision number for the TESR and renderpass changes - Christian: Fix small derp in TE - Christian: - Update FML:549b6fd - 549b6fd IMC tweaks: runtimeMessages now work (thanks for all that testing for this much requested feature!) and IMCEvent will no longer rem - 9fafdc1 More logging tweaks. You can probably configure individual mod log files if you wish now - f169f7c A log of logging cleanup. FML will now read logging.properties to configure logging channels a couple of times during startup. You - 3ac891f Try and handle "death on startup" a bit cleaner - 2dc0189 Deprecate the old GUI ticktype. They're dead and have been for some time. - dd98784 Tweak a method signature - 1c9a510 Add parameters to FML install to enable/disable certian aspects. Applying patches, running transformer/merger, and decompiling serv - 1bd6847 Fix up packages.csv ordering for easier diffing - Christian: - Add in "armor ticking"- implement the interface and the armor piece will tick. - - Update FML:22dbe41 - 22dbe41 Fix up mistake that broke all modloading. Nice. - Christian: Fix TESR rendering for double chests - -Build 1.4.7-6.6.1.520-TESRculling: - Christian: Fix small derp in TE - -Build 1.4.7-6.6.1.519-TESRculling: - Christian: - Add in a mechanism for explicit subclassing of WeightedRandomChestItem to allow for - generational style chest content generation rather than static. Cleans up some old code nicely - Christian: - We try and log a message if we detect a world leak: it's probably not infallible, but it should - help mod developers- if you see this when testing your mod with, say, mystcraft, you're probably - keeping a hold of an invalid handle to the World (either directly, or indirectly via Entity or TileEntity) - and you should look to refactor to wrap those handles in WeakReferences - LexManos: Moved warning logic down, so that no more tickets are isues if the mod is over it's alotment. Fixes #378 - LexManos: Forge Additions: Exposed ChunkCache.worldObj to public PR #383 - LexManos: Fixup a resource leak warning. - LexManos: Add DimensionManager.unregisterProviderType for PR #388 - LexManos: Added input getters for Ore recipies, and javadoc warning for modders, #390 - LexManos: Rework canSilkHarvest hook to try and honor vanilla overrides, should close #391 - LexManos: Added catch to TileEntityChestRenderer for potential crash when modders do bad things -.- Closes #389 - LexManos: Change access of upper and lower chest fields of InventoryLargeChest to public. Closes #387 - LexManos: Change WorldServer.allPlayersSleeping to public, and remove the SideOnly annotation on EntityPlayer.getSleepTimer() Closes #393 - LexManos: Fix initalization issue with the clamping threshold config value. And remove vanilla console spam related to it. - -Build 1.4.7-6.6.0.518: - LexManos: Fix initalization issue with the clamping threshold config value. And remove vanilla console spam related to it. - -Build 1.4.7-6.6.0.517: - LexManos: Moved warning logic down, so that no more tickets are isues if the mod is over it's alotment. Fixes #378 - LexManos: Forge Additions: Exposed ChunkCache.worldObj to public PR #383 - LexManos: Fixup a resource leak warning. - LexManos: Add DimensionManager.unregisterProviderType for PR #388 - LexManos: Added input getters for Ore recipies, and javadoc warning for modders, #390 - LexManos: Rework canSilkHarvest hook to try and honor vanilla overrides, should close #391 - LexManos: Added catch to TileEntityChestRenderer for potential crash when modders do bad things -.- Closes #389 - LexManos: Change access of upper and lower chest fields of InventoryLargeChest to public. Closes #387 - LexManos: Change WorldServer.allPlayersSleeping to public, and remove the SideOnly annotation on EntityPlayer.getSleepTimer() Closes #393 - -Build 1.4.7-6.6.0.516: - Christian: - We try and log a message if we detect a world leak: it's probably not infallible, but it should - help mod developers- if you see this when testing your mod with, say, mystcraft, you're probably - keeping a hold of an invalid handle to the World (either directly, or indirectly via Entity or TileEntity) - and you should look to refactor to wrap those handles in WeakReferences - -Build 1.4.7-6.6.0.515: - Christian: - Add in a mechanism for explicit subclassing of WeightedRandomChestItem to allow for - generational style chest content generation rather than static. Cleans up some old code nicely - -Build 1.4.7-6.6.1.514-TESRculling: - Christian: Bump the revision number for the TESR and renderpass changes - -Build 1.4.7-6.6.0.513-TESRculling: - mehvids: Gave entities and tile entities access to the second render pass for translucency. - -Build 1.4.7-6.6.0.511: - Christian: Fix NPE causing issue with the cache. Derpy derp. - -Build 1.4.7-6.6.0.510: - Christian: - Fix a potential problem with "Entity already added" when using the dormant - chunk cache capability. The entities in the dormant chunk cache will get new - IDs prior to the cached chunk returning. - -Build 1.4.7-6.6.0.509: - Christian: Attempt to fix a possible NPE in the face of ChickenBones' hackery. ChickenBones. stop it! - -Build 13w02b-7.7.0.508-snapshot15: - scott: Add ability to WorldTypes to display the 'Customize' button and react to it - LexManos: - Update FML: - New scripts for signing jars, and repackging source folders. - Fix LanguageRegistry loading files in UTF-8 format. loadLocalization should work for non-xml in all languages now (assumes UTF-8) - Fix incorrect end length calculation. Closes #161 Thanks BStramke! - LexManos: Fix check in getItem() to allow lowest item ID #361 - CovertJaguar: - Fixed render passes for EntityItems - - Should be < instead of <= - Christian: - Update licencing information to make clear that forge is allowed to redistribute and automatically - download parts of MCP, but this permission is not transitive to people distributing MinecraftForge - source independently of the MinecraftForge project. - - Update MCP to 7.26a and FML: 7ad8529 - 7ad8529 Update MCP to MCP7.26a and refresh MCP names - 15534ed Update address of the FML repository to the new location in all the files - a14ab91 Update license text to make clear that FML is not a way to sidestep MCP licensing. - Christian: - Update FML: a99c488 - a99c488 Merge branch 'patch-1' of https://github.com/bspkrs/FML into gh-updates - 94282c5 Merge branch 'FMLLogFormatter' of https://github.com/donington/FML into gh-updates - aa822e3 Fix logical error in comment text - 26a5b31 FMLLogFormatter: dynamic log level name - Christian: Merge part of PR #375 related to ChunkEvent.Load for the client side - Christian: - Update FML: 5ce4e31 - 5ce4e31 Fix breaking change - Christian: - Add in patch to change how playerinstance sends TE chunk updates. It should always send just the TEs - that changed now, and not "ALL" TEs. Also, added configuration value to change the 64 threshold to a - configurable number - Christian: Some javadoc fixes - Christian: - Change DimensionManager.getCurrentSaveRootDirectory() to try and work even for the new server about to start event - - Update FML:8921cfe - 8921cfe Remember to add the new patches! - cd67596 The "ServerStarting" event should now properly crash the server if it fails, so the client will properly exit. A - Christian: - Update FML:aebf6eb - aebf6eb Add in a registry method to allow for alternative TileEntity names- they will be used to support loading maps containing the older definiti - Christian: - Fix a couple of forge patches - - Update FML: d075daf - d075daf Merge branch 'master' into snapshot15 Fix up compilation and patching errors - 1bd6847 Fix up packages.csv ordering for easier diffing - dd832f2 Update for MCP7.30c - fixes redstone rendering issues - aebf6eb Add in a registry method to allow for alternative TileEntity names- they will be used to support loading maps containing the older definiti - 8921cfe Remember to add the new patches! - cd67596 The "ServerStarting" event should now properly crash the server if it fails, so the client will properly exit. Also, added in a "pre-server - e1c6630 Javadoc cleanup - 5ce4e31 Fix breaking change - a99c488 Merge branch 'patch-1' of https://github.com/bspkrs/FML into gh-updates - 94282c5 Merge branch 'FMLLogFormatter' of https://github.com/donington/FML into gh-updates - 7ad8529 Update MCP to MCP7.26a and refresh MCP names - 15534ed Update address of the FML repository to the new location in all the files - aa822e3 Fix logical error in comment text - a14ab91 Update license text to make clear that FML is not a way to sidestep MCP licensing. - 0165742 Fix mcp conf md5 signatures for the snapshot - 26a5b31 FMLLogFormatter: dynamic log level name - -Build 1.4.7-6.6.0.507: - Christian: - Update FML:aebf6eb - aebf6eb Add in a registry method to allow for alternative TileEntity names- they will be used to support loading maps containing the older definiti - -Build 1.4.7-6.6.0.506: - Christian: - Change DimensionManager.getCurrentSaveRootDirectory() to try and work even for the new server about to start event - - Update FML:8921cfe - 8921cfe Remember to add the new patches! - cd67596 The "ServerStarting" event should now properly crash the server if it fails, so the client will properly exit. A - -Build 1.4.7-6.6.0.505: - Christian: Some javadoc fixes - -Build 1.4.7-6.6.0.504: - Christian: - Update FML: 5ce4e31 - 5ce4e31 Fix breaking change - Christian: - Add in patch to change how playerinstance sends TE chunk updates. It should always send just the TEs - that changed now, and not "ALL" TEs. Also, added configuration value to change the 64 threshold to a - configurable number - -Build 1.4.7-6.6.0.503: - scott: Add ability to WorldTypes to display the 'Customize' button and react to it - CovertJaguar: - Fixed render passes for EntityItems - - Should be < instead of <= - Christian: Merge part of PR #375 related to ChunkEvent.Load for the client side - -Build 1.4.7-6.6.0.502: - Christian: - Update FML: a99c488 - a99c488 Merge branch 'patch-1' of https://github.com/bspkrs/FML into gh-updates - 94282c5 Merge branch 'FMLLogFormatter' of https://github.com/donington/FML into gh-updates - aa822e3 Fix logical error in comment text - 26a5b31 FMLLogFormatter: dynamic log level name - -Build 1.4.7-6.6.0.501: - Christian: - Update licencing information to make clear that forge is allowed to redistribute and automatically - download parts of MCP, but this permission is not transitive to people distributing MinecraftForge - source independently of the MinecraftForge project. - - Update MCP to 7.26a and FML: 7ad8529 - 7ad8529 Update MCP to MCP7.26a and refresh MCP names - 15534ed Update address of the FML repository to the new location in all the files - a14ab91 Update license text to make clear that FML is not a way to sidestep MCP licensing. - -Build 13w02b-7.7.0.500-snapshot15: - LexManos: Bump major and minor version numbers to mark 1.5, it's gunna break everything. Should be a compileable 1.5 build. - -Build 1.4.7-6.6.0.499: - LexManos: - Update FML: - New scripts for signing jars, and repackging source folders. - Fix LanguageRegistry loading files in UTF-8 format. loadLocalization should work for non-xml in all languages now (assumes UTF-8) - Fix incorrect end length calculation. Closes #161 Thanks BStramke! - LexManos: Fix check in getItem() to allow lowest item ID #361 - -Build 1.4.7-6.6.0.497: - LexManos: Added getter for Metadata smelting list, because, why not.. PR: #352 - LexManos: Fixed incorrect lighting in some cases. Closes issue #349 - LexManos: - Added event hooks to control to allow mod control of mob spawning. PR: #337 - Deprecated LivingSpecialSpawnEvent in favor of new LivingSpawnEvent.SpecialSpawn - -Build 1.4.7-6.6.0.496: - LexManos: Fix issue where dungeon loot table had wrong values. - LexManos: Fixed issue where ChunkPriderEvent.InitNoiseField used the wrong sizeY value. - LexManos: Some small code cleanups. - -Build 1.4.7-6.6.0.495: - Christian: - Update FML:6f1b762 - 6f1b762 Move server stopped *after* the server has actually stopped. *sigh* - -Build 1.4.7-6.6.0.494: - Christian: - Update FML:d9bfb29 - d9bfb29 Add in a "server stopped" event - -Build 1.4.7-6.6.0.493: - Christian: - Attempt to resolve the entity concurrency issue, by simply deferring unload - to the next tick - -Build 1.4.7-6.6.0.492: - Christian: Fix noisy exception logging - Christian: - Update FML:6fc7bc4 - 6fc7bc4 Add in some classloader debugging information: use fml.debugClassLoading=true as a system property to track down prob - -Build 1.4.7-6.6.0.491: - Christian: - Fix a missed patch and cleaned up other patches - Rollback a method name change that breaks a lot of mods - Update FML: fb701cd - fb701cd Revert MCP name change for canConnectRedstone - it conflicts with a forge method of the same name and breaks 1 - -Build 1.4.7-6.6.0.490: - Christian: - Update for MC 1.4.7 - Update FML: f7cc50b - -Build 1.4.6-6.5.0.489: - LexManos: Attempt a fix for the new chunk compression changes. - -Build 1.4.6-6.5.0.488: - Christian: - Update FML:1a232cf - 1a232cf Fix multiple GUI containers for ML containers. Sorry ultimatechest that this fix took so long, a bug report at - 853f54b Log if there's a problem reading the class bytes - -Build 1.4.6-6.5.0.487: - LexManos: Fix mobs spawning on inverted slabs/stairs. - -Build 1.4.6-6.5.0.486: - LexManos: Use nanoTime instead of currentTimeMillis for potential performance increase. - LexManos: Fixed order <.< you saw nothing. - -Build 1.4.6-6.5.0.484: - LexManos: Fixed issue with Efficancy enchatment when connected to vanilla servers. - LexManos: Fixed EntityMinecard missed patch, Issue #338 - LexManos: Fixed typo in dungeon loot - -Build 1.4.6-6.5.0.483: - Uristqwerty: - Force parent ListenerListInsts to rebuild. - - Without this change, it is possible (and, in fact, nearly guaranteed) for lists to rebuild endlessly if a parent list is marked as needing a rebuild but never actually read. This change forces the parent list(s) to rebuild as well, resulting in a significant performance increase and smoother framerate due to greatly reduced GC activity. - Christian: Protect deflation with a simple semaphore. Should close #336 - -Build 1.4.6-6.5.0.482: - LexManos: Update FML: Fix NPE in fingerprint loading, and pass expectged fingerprint to FMLFingerprintViolationEvent - -Build 1.4.6-6.5.0.481: - Christian: - Update FML: 7e6456d - 7e6456d Fix a message delivery issue in IMC - 664ebda Some tweaks for signing and ID matching - -Build 1.4.6-6.5.0.480: - LexManos: - Fixes a vanilla bug where the player view would dip when stepping between certain blocks - https://mojang.atlassian.net/browse/MC-1594 - Issue #318, let me know if you notice any issue. - -Build 1.4.6-6.5.0.479: - LexManos: Fixed parameter ordering u.u - -Build 1.4.6-6.5.0.478: - LexManos: - Re-write/Deprecated DungeonHooks loot tables, now uses ChestGenHooks like the rest of the world gen. Also fixes issue #330 by adding in enchanted books. - - Should be API compatible. - -Build 1.4.6-6.5.0.477: - LexManos: - Move chunk compression to the network thread in Packet 51 and 56 - - This will reduce the server load considerably by doing the chunk data compression in writePacketData, which will be run from the network thread. - - The chunk compression can easily use 1/4th of the overall server thread CPU time if someone is exploring much, especially when moving quickly (e.g. with quantum leggings). - - Player, this is how it's properly done. - -Build 1.4.6-6.5.0.476: - LexManos: Fix missed patch in EntityMinecart, #334 - LexManos: Explicitly check if useItem is not denied, allows for denying the item without denying the block - -Build 1.4.6-6.5.0.475: - LexManos: Delete unneeded patch. - -Build 1.4.6-6.5.0.474: - Christian: Some access transformations to allow mystcraft to work again. Closes #331 - -Build 1.4.6-6.5.0.473: - Christian: Fix Fireworks to always work in SMP - -Build 1.4.6-6.5.0.472: - Christian: - Fix up enchantment at the enchanting table vs via a book. Adds in a method - that previously exists under a new name: canApplyAtEnchantingTable() - to determine enchantments that can apply at the enchanting table (a smaller - subset of all possible enchantments for an item, now). Also, add your - enchantments to the anvil book application list, if neccessary. - -Build 1.4.6-6.5.0.471: - Christian: Tweak packet56 to see if this resolves the apparent worldgen derpiness - -Build 1.4.6-6.5.0.470: - Christian: - Server side only item callback: allow a held item to decide if it wants to pass sneak-clicks through - to a block, or not. Defaults false- the same as the new vanilla behaviour (sneak clicks with an item - in hand don't activateBlock anymore). - -Build 1.4.6-6.5.0.469: - Christian: Move another patch up a bit - should actually close #329 - -Build 1.4.6-6.5.0.468: - Christian: Add IPlantable to itemseedfood. Potato and carrot support! - -Build 1.4.6-6.5.0.467: - LexManos: - Update FML: - Fixed issue with users who don't have the JDK installed in there path - MCP will now output bfusicated files with windows reserved names to _name.class and FML will prioritize those names. - Fixed placement of onConnectionClosed callback - LexManos: Updated NetClientHandler for onConnectionClosed placement fix. - LexManos: Fixed cpw's derp in the PlayerInteractEvent logic. - -Build 1.4.6-6.5.0.466: - Christian: Fix ItemInWorldManager so that itemUseFirst works, and the playerinteractevent works. Minor patching mis hit. Apologies. - -Build 1.4.6-6.5.0.465: - Christian: OK. AT the right thing, and add in a call to always get the right thing. Clean up patch fuzz too. - -Build 1.4.6-6.5.0.464: - Christian: Access Transform a couple of methods - -Build 1.4.6-6.5.0.463: - LexManos: Fixe BiomeDecorator AT entry. - -Build 1.4.6-6.5.0.462: - Christian: Drop the item in onBlockHarvested, not breakBlock - -Build 1.4.6-6.5.0.461: - Christian: Fix up block drops for skulls and cocoa - -Build 1.4.6-6.5.0.460: - Christian: And fix up the other equals - -Build 1.4.6-6.5.0.459: - Christian: Fix comparing ItemStack tags for equality - -Build 1.4.6-6.5.0.458: - Christian: - Update FML: 40e57a2 - 40e57a2 Update MCP to newer version Fix fingerprint fire - -Build 1.4.6-6.5.0.457: - Christian: - Fix accidentally removed not-deprecated methods. - - Update FML: d604e44 - d604e44 InterModComms now supports a runtime polling based model for inter-mod comms at runtime. Deprecate method that shouldn't be used. COPY it's content to your mod. Don't CALL it. - 8b7778c Don't be as alarming about item overwrites. - -Build 1.4.6-6.5.0.456: - Christian: Fix binding the texture for multiple render passes. Thanks mdiyo! Closes #320 - -Build 1.4.6-6.5.0.455: - Christian: Allow RenderItem to be easily overridden for things that need to render entityitems. IronChest, BuildCraft, RP2, whatever... - -Build 1.4.6-6.5.0.454: - LexManos: Fixed items dieing improperly due to new EntityItem sync changes, also made items render offset when rendered in 3d. - -Build 1.4.6-6.5.0.453: - Christian: Fix RenderItem so that forge textures load for it - -Build 1.4.6-6.5.0.452: - LexManos: Removed all functions marked as deperacted for the new MC version - LexManos: - Updated FML: - Fixes startclient/startserver - - Added configuration file which allows modids to ignore ID validation checking. IT WILL CRASH YOUR GAME in 99.999% of cases. - - Immibis is a whingy ass. And TinyTimRob too. Now STFU and GTFO. closes fml/#510 for ever. - -Build 1.4.6-6.5.0.451: - LexManos: Inital update to 1.4.6, Version bumped to 6.5 - LexManos: Added jar signing to forge, we sign cpw/* and net/minecraftforge/* - LexManos: Try and print error while signing jar - -Build 1.4.5-6.4.2.448: - Christian: - Update FML: e98c311 - e98c311 Fix up handling null names. *sigh* - -Build 1.4.5-6.4.2.447: - Christian: - Update FML: 293edb3 - 293edb3 Some tweaks to item identification. The GameRegistry methods are deprecated to encourage you to use the new named ones instead. These will force a name on the item/block, allowing for stronger matching t - 9266ff3 Updated MCP download mirriors upon Searge's request. - 31695d5 Fix var name messup - bfb3020 Update released eclipse project to link BouncyCastle - 22a88ea Change ID management slightly. IDs are tracked by block type for itemblock items now. This means servers will need to update. Also, ordinal rearrangements within a mod will no longer trigger server disco - -Build 1.4.5-6.4.2.446: - LexManos: Make PlaySoundAtEntityEvent fire for players as well - LexManos: Remove erronious double call to PlayerDestroyItemEvent - -Build 1.4.5-6.4.2.445: - LexManos: Update FML to fix a typo - -Build 1.4.5-6.4.2.444: - LexManos: Automatically resolved imports. - LexManos: Fixup workspace for BC replacement - LexManos: Manual import fixes - LexManos: - Update FML: - Minecraft is now decompiled into sane package names. - Got rid of the src/common folder as the only folder that exists is src/mincraft, because the client and server codebase is merged. - ID Map generation/validation fixes - LexManos: Updated python scripts for removal of common folder - LexManos: Update patches for repackage. - LexManos: Update AT for repackage - LexManos: Update FML: Fixed the eclipse workspace to reference BouncyCastle library. - -Build 1.4.5-6.4.2.443: - LexManos: Bump version to 6.4.2 to mark the merge of TerrainGen branch. - -Build 1.4.5-6.4.1.442: - Christian: - Added terrain gen events - Added biome color events for @XCompWiz - Christian: Removed unchanged file - Christian: Readded unchanged version - Christian: For @XCompWiz, added a hook to allow mods to dynamically change the color that water is rendered. - Christian: Fix RenderBlocks patch, touch branch - -Build 1.4.5-6.4.1.441: - LexManos: - Update FML: - 2f34290e: Fix possible escape leakage.. - 83deece6: Change ID management slightly. IDs are tracked by block type for ItemBlock items now. This means servers will need to update. - - Also, ordinal rearrangements within a mod will no longer trigger server disconnection, though a warning will still be logged. - LexManos: Derp, imported the repackaged names not old names. - -Build 1.4.5-6.4.1.439: - LexManos: Update readme to reflect the fact that we now download MCP. - -Build 1.4.5-6.4.1.438: - LexManos: Fix ForgeDirection.ROTATION_MATRIX for issue #313 - LexManos: Made GuiContainer.drawSlotInventory overrideable for issue #312 - LexManos: Made BlockButton.func_82535_o overrideable for issue #311 - LexManos: Moved check if map cursor should 'spin' and which world a player respawns in to WorldProvider for PR #308 - LexManos: Add .DS_Store to the gitignore for mac users - LexManos: Add CloudRenderer for PR #304 - LexManos: New TileEntity function to determine if the TE should be destroied when Block/Meta changes, For Issue #300 - LexManos: Pistons now respect world height a little better, for PR #286, will review Rotation event later. - LexManos: Creative GUI will now remember what tab page you were on, thanks Matchlighter PR #290 - LexManos: Fix type in ForgeChunkManager.ticketCountAvaILableFor, thanks iChun PR: #285 - LexManos: Fixes crash when mods add TreeMaps to the Configuration map, thanks AtomicStryker, PR: #282 - LexManos: Fix shouldRiderSit() to properly determine if rider is sitting. - LexManos: Expose BiomeDecorator fields for custom Biome information, Issue: #239 - LexManos: Make BlockButton.sensible protected and non-final - -Build 1.4.5-6.4.1.437: - LexManos: Fix for FML Fixes eclipse workspace, now sets execution bits on astyle-osx, and mcp .sh files. Also now kills install if astyle is not found. - -Build 1.4.5-6.4.1.436: - LexManos: Fixed release -skipchangelog - LexManos: Fixed install --mcp-dir - LexManos: - Updated FML to 486: - 02b54ca8: Add a modid on the mods list, should make it easier to do things like forge chunkloading config - 70670f2f: Fix build eclipse extractor task - b9fa3fc9: Add in storage, detection and validation of the ItemID array between client and server - 5e5d8206: Fixing id map generation - should validate correctly now - f9fc06a8: Remade python dist as 32-bit. - 93d47a1c: Reenabled replacement of the eclipse folder. - -Build 1.4.5-6.4.1.435: - LexManos: And finally, fix up the release install script to have a parameter to specity the MCP directory. - -Build 1.4.5-6.4.1.434: - LexManos: Fix Forge install script to use python shipped with FML. - -Build 1.4.5-6.4.1.433: - LexManos: Push didn't get all of eclipse.... - -Build 1.4.5-6.4.1.432: - LexManos: - Cleaned up eclipse workspace and moved it to a zip file. - Setup will extract it if it doesn't already exist. - -Build 430: - Christian: Fix release script for new forge job name. Add in skip changelog option for local builds - -Build 1.4.5-6.4.1.426: - LexManos: Remove MCP from released src distro.. whops. - -Build 1.4.5-6.4.1.425: - Christian: - Fix static method, closes #271 - Don't spam the log if a mod requests a ticket beyond their maximum. A single message is fine. - -Build 1.4.5-6.4.1.424: - GuntherDW: Fix typo in chunkmanager config - Christian: fix List configs - Christian: Add Chunk Watch and UnWatch events. - -Build 1.4.5-6.4.1.414: - Christian: - Tweak release.py script: HEAD==master in general - - Update FML: 26a2ef5 - 26a2ef5 Add a modid on the mods list, should make it easier to do things like fo - b4e3490 Fix build eclipse extractor task - 828341f Fix typo - 7a8dae5 Try and make branch non-derpy - d3c0e1f Try defaulting branch differently - 9c77d3f Remove old eclipse workspace and ship/extract as a zip file (use ant set - 6371e9b Assume Forge is the parent directory when checking for AT configs. - 516954e Name both zips the same format - 1151d5c Last part of branch name only please - 25f1dda Try and get a valid branch name on jenkins - 39a146f Clean up build.xml script- support outputting a branched jar file - 037dcae Small derp in install.py - 01d6da3 Try marking python as binary. - 8b26659 FML will now attempt to download MCP as part of the install process Now - 42b3e6a Windows Python distrabution created using py2exe, thanks Fesh0r for the - e709ab8 Marked more spots in gui/items bitmask as being free. - -Build 1.4.5-6.4.1.413: - LexManos: Add wget and unzip from GnuWin32 for use in the setup scripts. - LexManos: Update FML, now includes python, and will download MCP for you - LexManos: Update python files to add support for specifying MCP directory and FML downloading MCP on the fly. - LexManos: Fix issue with DimensionManager.shouldLoadSpawn - -Build 1.4.5-6.4.1.411: - Christian: Fix #289 - -Build 1.4.5-6.4.1.410: - Christian: - Add in some additional ticket loading callbacks for ChickenBones. Closes #284 - Add in a call to determine if there are possible chunktickets for a world. This should let - Mystcraft and other dynamic world generating mods check if they should immediately load - a world based on existing chunk tickets. - -Build 1.4.5-6.4.1.409: - LexManos: Fix issue where non-BlockContainer TEs would not be removed properly. - -Build 1.4.5-6.4.1.408: - LexManos: Fix logic issue in ForgeChunkManager.ticketCountAvaliableFor(username) PR - LexManos: Fix issue where worlds were potentially unloaded improperly on server shutdown. - -Build 1.4.5-6.4.1.407: - LexManos: Small change to fix loading configs. - -Build 1.4.5-6.4.1.406: - LexManos: Added section of the EntityData NBT that will be persisted for players across respawning. - -Build 1.4.5-6.4.1.405: - LexManos: Exposed some ChunkLoader information for PR #278 - LexManos: Fix potential NPE in EntityJoin handler and print warning. - -Build 1.4.5-6.4.1.404: - LexManos: Small tweak to config to use Treemap - -Build 1.4.5-6.4.1.403: - xcompwiz: - Adds a more intelligent chunk constructor - - Adds a chunk constructor with full block id range, that's metadata - sensitive, has intelligent coord ordering, and which allows for - generation at greater heights than 127. - xcompwiz: Fixes some weird formatting - zach: - Fixes ordering for z & x loops (proper array increment order) - - The ordering before would skip about in the ids and metadata arrays. This runs linearly and should improve performance. - Done live on github - -Build 1.4.5-6.4.1.402: - LexManos: Fixed AIOOB issue with new sanity check in getBlock - -Build 1.4.5-6.4.1.401: - LexManos: Fix potential NPE in saving a property that didn't define a type. - -Build 1.4.5-6.4.1.400: - LexManos: - Added new functions to the Config class to allow for specification of comments when getting properties. - Added new getTerrainBlock whihc will limit the resuling ID to < 256, useful for world gen. - Calls to getBlock with IDs less then 256 will be assigned values above 256 {Thus freeing up terrain gen slots} - Made ConfigCategory implement Map should fix compatibility with most mods that broke two builds ago. - -Build 1.4.5-6.4.0.399: - xhamolk.class11: - OreDictionary addition: getOreID(ItemStack) - - Allow getting the oreID from a ItemStack, as an alternative from getOreID(String). - - Now is easier to exchange items for their equivalencies through the OreDictionary. - -Build 1.4.5-6.4.0.398: - LexManos: New nested configuration category support, for PR #258 - -Build 1.4.5-6.4.0.397: - LexManos: Fixed issue with abandoned chunks. - LexManos: Fixed random chest items not generating to there max stack sizes. - -Build 1.4.5-6.4.0.396: - ohai.iChun: - Add check that Entity saves to disk before saving entity to saved chunkloading data. - - Returning false to addEntityID prevents the entity from being saved (cred to LexManos) - Entities which do not save to disk but are chunkloaders causes errors the next time the world loads. This ought to fix it. - -Build 1.4.5-6.4.0.395: - LexManos: Updated FML, proper free-sprite list for /gui/items.png, and fixed MCP version. - -Build 1.4.5-6.4.0.394: - Christian: - Move server specific patch back to common from minecraft. - - Update FML: 1f5c58b - 1f5c58b Fix up MCP version - 61e4db2 Merge joined.exc add update howto - 5efc1eb Revert "Fix MC-2497 - derpy torch flames. Moved from forge. Everyone sho - 3b3600d Modified merger to just consider all server classes as common. And moved - edcc5ca Forgot mcp.cfg - ca79dfe Updated to 1.4.5b - 5945279 Fix python error - 57bf643 Modified decompile so that we do not have to decompile the server, saves - d9d0a46 Cleaned up some tabs - 2fac644 Change usage of ZipFile, fixes issues with Mac's default instation of py - -Build 1.4.5-6.4.0.393: - LexManos: Fix TE Issue - -Build 1.4.5-6.4.0.390: - LexManos: Removed GnuWin32 programs, should no longer be needed as we've moved to python. - LexManos: Updated to MC 1.4.5b - -Build 1.4.5-6.4.0.388: - Christian: Stupid eclipse resetting preferences. Spaces, not tabs!!! - Christian: - Update FML: 570592b - 570592b Attempt to fix a possible comodification risk - -Build 1.4.5-6.4.0.387: - Christian: Add in events when forcing and unforcing chunks. Hope this works for you ChickenBones! - -Build 1.4.5-6.4.0.386: - Christian: - Update FML: fde9414 - fde9414 Change texturebinding to use the textureId directly rather than iconInde - -Build 1.4.5-6.4.0.385: - LexManos: Fixed issue with default implementation of Beach plant type check - LexManos: Fixed custom soil checks for NetherStalk and Reeds - -Build 1.4.5-6.4.0.384: - LexManos: Release script will now include the Minecraft version in the arcive names. - -Build 6.4.0.383: - Christian: - Update FML: f348496 - f348496 Fix mod display list. Shouldn't be derpy anymore. - a5c31b5 Fix World patch- workaround no longer required and leftovers are bad. - 2dc3f0d Cleaned up the AT config updater, should work for any setup of the MCP w - -Build 6.4.0.382: - LexManos: Fixed beds not working properly when respawning. - -Build 6.4.0.381: - Christian: - Remove EntityFX patch - moved to FML. Patch SuspiciousClasses to add "forge" - - Update FML: fa56701 - fa56701 Fix MC-2497 - derpy torch flames. Moved from forge. Everyone should benefit. - 96935bb Fix an NPE in TileEntity trying to generate a crash report. Make suspicious classes just return the obvious. Fix NPE for FML crash report on server. Clean up dead pa - -Build 6.4.0.380: - Christian: Fix the derpy torch flames properly. Closes MC-2497 properly ;) - -Build 6.4.0.379: - Christian: - Update to MC 1.4.5 - Update FML: 43d3042 - 43d3042 Clean up a patch - fec221f Update FML for MC 1.4.5 - b0f0635 Fix for ModLoader static overrides not displaying. - 23a2513 Fix up derpy file name handling: closes #127 Fix up duping childmods: cl - a6eaa2b Fix spelling issue. - c6a0741 FML setup should now download and verify all the minecraft files needed - 5a1930e Small fix to some MCP metadata for pre2 - 418deba Update to MC 1.4.4 - 4ff2cff Fix bug when a modloader mod is run on a dedicated server and has a conn - -Build 6.3.0.378: - Christian: - Some liquid events. Non-API breaking. Add them at your leisure. This helps liquids know - what's happening to them. In case they're volatile or something ;) - -Build 6.3.0.377: - Christian: Another difference - -Build 6.3.0.376: - Christian: - Fix fillLiquidContainer - return null, not the empty container for - previous API compatibility - -Build 6.3.0.375: - LexManos: Update FML to fix ModLoader/addOverride functionality. - -Build 6.3.0.374: - kinglemming: - Fixed oversights in liquid registry, added functionality for instant checks as requested by CJ. - Liquid list return is now secure. - - Signed-off-by: King Lemming - Christian: Change name to LiquidContainerRegistry. Fix up missing API. This better be it now! - -Build 6.3.0.373: - kinglemming: - Liquid Manager Rewrite - slightly more memory usage, loads more efficient at runtime. - Added default Lava and Water registrations to Liquid Manager. - Removed method which relied on flawed assumption that a given liquid only had a single type of container. - - Signed-off-by: King Lemming - Christian: Rename some liquid stuff for more sensible naming. Tweak API slightly. - -Build 6.3.0.372: - Christian: - Add in the basic IBlockLiquid interface. The actual block implementation - will follow. - -Build 6.3.0.371: - Christian: - Add an ItemStack sensitive version of getIconForRenderPass, defers to - existing by default. Should allow NBT data to affect multipass icon rendering. - -Build 6.3.0.370: - Christian: Change getLeft to getRotation, around any axis. - -Build 6.3.0.369: - Christian: Some new stuff on the liquid API for better RP2 interaction. Coming soon: blocks! - -Build 6.3.0.367: - Christian: Tweak liquidcontainer API for sidedness capability - -Build 6.3.0.366: - LexManos: Updated FML, Fixed spelling issues in logs, and file name issues. - LexManos: Added saplings and leaves to the ore dict. PR: #242 - LexManos: Mods can use custom textures for Slot background overlay, instead of only items.png PR #245 and #246 - LexManos: Fix issue where players would spawn in the ground. - LexManos: Allow for modders to decide whether or not players are positioned on ridingEntities similarly to pigs PR #244 - LexManos: Fix breaking despite cancel in creative mode for PlayerInteractEvent OR #247 - -Build 6.3.0.364: - Christian: - As agreed, liquid API from BuildCraft has been migrated to minecraft forge. There will be cleanups to follow, - including sided handling and client rendering tweaks. Stay tuned! - Tweak forgedirection for a couple of naming constants - -Build 6.3.0.363: - Christian: Add toLeft rotational data to ForgeDirection - -Build 6.3.0.362: - LexManos: New field in ForgeDirection to hold just the valid directions. And made getOrientation a bit more efficient. - -Build 6.3.0.361: - LexManos: Fix entity items rendering on the ground. - LexManos: Fix crops not droping seeds properly. - -Build 6.3.0.360: - LexManos: Update to 1.4.4 - LexManos: Bumped version number for 1.4.4 - -Build 6.2.1.358: - LexManos: Ore Dictionary Improvements, replaces vanilla recipes with OreDict recipes for some vanilla items. Thanks Covert. - -Build 6.2.1.357: - LexManos: Made Item constructor public, and made setTextureFile chainable, requires mods to recompile, but as this is for 1.4.3 i'm not concerned. - -Build 6.2.1.356: - Christian: - Temporary update for 1.4.3 - Update FML: bd2123c - bd2123c Clean up some patch fuzz - c2a603c Update joined.exc file from latest conf - db12af4 Update to 1.4.3 - LexManos: - Readdaed teleporter sensitive versions of the teleport function - Added per-world list of custom teleporters, Modders, use World.Load to populate this list. - Changed the definition of our version schemes. - -Build 6.0.1.355: - Christian: - Update FML: 8356fe9 - 8356fe9 FUUUUUU! Stupid ticking. STOP REGISTERING TICK HANDLERS IN YOUR CONSTRUC - 6edce8b Patch a file handle leak in RegionFileCache handling when under memory p - ca2bbe0 Update MCP mapings again, yay bad syncs. - c8941a7 Updated MCP mapings. - 5e20c03 StartServer is now useable in merged code base. - -Build 6.0.1.354: - LexManos: Update FML: Updated MCP mapings, and fixed StartServer - -Build 6.0.1.353: - Christian: - Update FML: b19e882 - b19e882 Remove some debug, closes #123 - 9d7d32a Fix up tick management outside of mod loading phases for ModLoader mods. - d512539 Negatively cache failed class lookups, should help with @SideOnly performance issues. - -Build 6.0.1.351: - Christian: - This update fixes some world corrupting vanilla error handling, mostly caused by - mods doing something derpy. Hopefully, your world saves will thank me. - Note that if the mod does derp, it's data is lost. It's not FML or Minecraft Forge's - responsibility if "DirtChest 2000 Mk5" can't write their TileEntity method correctly - and you lose your 100000 diamonds. - - Update FML: a3a93f3 - a3a93f3 Fix some whitespace issues, handle possibly bugged entities as well - a7eb5dc Vanilla/mod bug fixes: CME on entity processing, TileEntity resetting chunk on save/load. - -Build 6.0.1.350: - LexManos: Fix cast issue when mods attempt to make fake worlds. - LexManos: Fix a vanilla bug related to certian seeds and stronholds. - LexManos: Cleanup some debug in the script, and fix version number for the current build. - -Build 6.0.1.349: - LexManos: Change logs should now be bundled with downloads, as well as avalible on files.minecraftforge.net - -Build 6.0.1.348: - Christian: - Update FML:b23081d - b23081d Support for ModLoader 1.4.2. Good job Risu! - 66db4ec Add in an exclusion list tag for @Mod. The backend code isn't yet implemented, but shows the basic idea. - -Build 6.0.1.345: - LexManos: EntityLiving.experianceValue private->public for Issue #225 - LexManos: Changeable name tag render distance for PR: 174 - LexManos: Remove some debug code - LexManos: New hook to allow items to be on multiple creative tabs PR 176 - LexManos: Fix issue where scroll bar would not render when switching tab pages. - LexManos: Added metadata sensitve experience to furnace recipies and added Item callback to determine experience gain. - LexManos: Exposed functions for adding superflat presets. - LexManos: New hook to allow for custom beacon support blocks. - CovertJaguar: - Added vanilla wood + dye to the Ore Dict - - Should help simplify interaction between mods that add similar items. - LexManos: Added Stonghold, Village, and Spawn biome management helpers for PR 207 - LexManos: Fix compile issue. - -Build 6.0.1.343: - csendek: Add event to cancel or change chat messages sent from server - csendek: Add event to cancel or change chat messages sent from server - -Build 6.0.1.342: - LexManos: Pickblock will new compare NBT data, should allow mods to refine there result better. - LexManos: Added system to place all configs that use Forge's Configuration function into a single file on disc. Optional config to enable this. Blame MattaBase for this idea.. - -Build 6.0.1.341: - LexManos: Fix ItemSeed placement to take into account the IPlantable interface. - -Build 6.0.1.339: - LexManos: Added a per-world MapStorage feature that provides a method to store data files associated with a specific world, as well as fixes the issue with villagers loosing there village. {Where villagers wouldn't go inside at night} - -Build 6.0.1.338: - pahimar: Update patches/common/net/minecraft/src/SlotCrafting.java.patch - Christian: - Fix the accessor and type on World.getPersistentChunksFor() - Update FML: 8bd98c3 - 8bd98c3 Fix a small problem with the new MCP container- it can cause NPEs. Nice. - 34cc42d Fix up some javadoc complaints - -Build 6.0.1.337: - Christian: - MCP information is now included in Minecraft Forge. They deserve the credit :) - - Update FML: 09eade4 - 09eade4 Update build - include MCP information in the source pack - 9bfe7df MCP deserves lots of credit. So here it is. - -Build 6.0.1.332: - Christian: - Update FML: 8006b77 - 8006b77 Fix instantiation bug - 7cc91cf Simple InterMod comms. Send a message using FMLInterModComms.sendMessage(). Receive messages through an @IMCCallback - 24d7285 Update for MC 1.4.2 - cedf3d5 Duplicate Mod display screen. - -Build 6.0.1.331: - LexManos: Downgrade to FML 415, issue with new IMC system. - -Build 6.0.1.330: - LexManos: Update to 1.4.2, obf stayed the same, so only small revision. - -Build 6.0.0.329: - LexManos: Update World patch to fix map provider issue. - -Build 6.0.0.328: - Christian: - Add an access transform for Block.setBlockBounds - should help a lot of code that uses this. - - Update FML: d915f39 - d915f39 Fix typo in access transformer - 346691c Fix the merge for forge - 6dadc1d Fix up references to minecraftDir in obf code - 8a55f68 Update FML for Minecraft 1.4.1 - 5645fa5 First update to 1.4.1, patches need updating. - ff0f00f Add some null checks, and throw descriptive exception when SideTransformer prevents a class from loading. - -Build 6.0.0.327: - LexManos: Update to MC 1.4.1 and Forge 6.0.0 - -Build 5.0.0.326: - LexManos: Fix color issues with Dyed Leather armor. - -Build 5.0.0.325: - LexManos: Remove deprecated code. - LexManos: Cleanup mirrored things in ShapedOreRecipe to address issue 208 and issue 210 - LexManos: Fix up the setHandeled/setHandled for events, it is now a generalized setResult, the meaning of which is defined by each event. - -Build 5.0.0.324: - LexManos: Fix NPE issue when mods add null EntityFX's to be rendererd. - -Build 5.0.0.323: - Christian: - Update FML: 7a34246 - 7a34246 Ship a client only class so the merge works both sides. - -Build 5.0.0.322: - Christian: Fix install.py so it can be installed properly from src distribution - -Build 5.0.0.321: - Christian: - Update FML (entire change log since last by me): 62a6b52 - 62a6b52 Fix RenderRegistry render ID - now at 36 Fix SpriteMaps - they're running out fast! Switch to forge if you can! RenderBiped now has an armo - b845cde Fix up FML python script for forge - 2c36dfb Update to MCP pre 3. Fixes some weirdnesses with explosions. - acd880d Merge branch '1.4' - e6f57e5 Update for MCP release - b1de0fc Remove fuzz from patches for INetworkManager change - ad44619 Fix for new names INetworkManager and ITexturePack. I also provide refactoring scripts for both, for your use... - 3a94211 Add a script to ignore git complaining about the eclipse workspace changing - run when you first open the eclipse workspace - 9386e23 Update gitignore - ignore the files that will change or be deleted - 10b318c Add in "starter" image for eclipse workspace - 995d5b7 Eclipse workspace fixup 2? - bbb12c8 Clean up eclipse workspace- part 1 - b50058e Clean up a bit of patch fuzz - 4a0bfa9 Fix CommonHandler for rename of the server thread class - 4d1ec66 Update with RC2 MCP. Use the joined.exc file directly since MCP now provides it. - b52e3d0 Fix exception for CodecMus - a1011c9 Fix some compilation issues. Requires resolving the worldclient abstract method - 0ebd4f3 Inital patch update to 1.4 - 89c68c4 Moved into EntityVillager - e4702cb Fix line ending detection during checkout. - 6e64fd7 We don't need logging here... - 014b3f4 remove useless -Server projects - 7628c67 Updated the AT config and Marker config for 1.4 obf - 54a322c Updae build to copy files that may decompile differently but are actually the same, and updated for 1.4 values. - aadf396 Update MCP Merge config. - 81e1855 Pull in MCP's 1.4 conf files. - 5686fd4 Fix error in merging of exec's - -Build 5.0.0.320: - LexManos: FML Update for 1.4 - LexManos: Fix recompile call for 1.4 MCP change - LexManos: Update Forge's AT for 1.4 names. - LexManos: Update for new names in 1.4 - LexManos: Remove final from 'villageCollectionObj' to allow for delayed setup of Map source objects. - LexManos: Moved to common where it should be - LexManos: No longer needed, getRenderDistance removed because Vanilla has it now, TileEntity.func_82115_m - LexManos: Forge spawn protection removed, now a vanilla feature. - LexManos: Patches that applied with little to no functional changes. - LexManos: Updated Render patches, Bipeds now have the ability to have helmets, of either blocks, or the new 'heads' - LexManos: BlockSnow now pretty much just passes harvestBlock to it's super. - LexManos: Entities have a new function to determine explosion strength that they create, and implemented Item frame pickblock. - LexManos: Patches removing forge spawn protection, now a vanilla feature. - LexManos: BlockCrops is now the parent class of multiple types of crops, Wheat, Potatoes, and Carrots, updated getBlockDropped patch to reflect. - LexManos: Removed Forge's TileEntity.getRenderDistance, now a vanilla feature: TileEntity.func_82115_m - LexManos: Teleporting has a new function (func_82448_a), made it so that you can supply your own teleporter to that function, and so it works with dimension movement factors. - LexManos: Updated World patch, there are a lot of new things happening int he constructor, xcomp should probably vet this. - LexManos: Updated Forge version to 5.0.0, for 1.4 - LexManos: Update release script for mcp changes, releases now build. - -Build 4.3.5.318: - LexManos: Remove some test code. - LexManos: Bump version to 4.3, final for 1.3.2 - -Build 4.2.5.317: - LexManos: Added ability for mods to cleanly define and display new creative tabs. - -Build 4.2.5.316: - Christian: Fix classloading issue preventing JRockit from running forge - -Build 4.2.5.315: - Christian: - Forge build change: the universal jar, if installed alongside a server jar file, can be executed to load forge. No server side merging required! - Update FML: 989ab3e - 989ab3e Update build.xml - add a classpath to the manifest. This means the universal jar is now a server side launche - 88f1dc9 Typos! - -Build 4.2.5.314: - Christian: - Update FML: 470a185 - 470a185 Try and avoid an NPE in crash reports - 0029518 Fix logging problems- log death messages and re-route the server through FML logs properly. - fe7a832 Fix the test mod - a2bc30b Coremods can be specified via the command line: fml.coreMod.load= This will help with developing coremods - bae1f74 Fix classpath for server - 887aa27 Add in the ability for a client to throw a custom exception that displays a custom gui instead of the default error message. - e17f267 Update FML internal classpath. Helpful for coremod devs - 3b9972a Don't use File to separate the last element of the path. It's a URL, they're always separated by '/' - 5c96afe Changed RelauchLibraryManager so that files with different paths on the same baseURL can be implemented in one ILibrarySet. - 1bca393 FML as a whole is now subject to transformers. - 27cf731 Bonus extra character. thanks randomitter! - 94c84cd Merge pull request #116 from Vazkii/patch-1 - c2d3195 Add Null check to FMLClientHandler.sendPacket - -Build 4.2.5.313: - LexManos: Make Item.createEntity only call when its specifically a EntityItem, not a subclass of it. - -Build 4.2.5.312: - LexManos: New Block hook to determine if it can be destroied by the ender dragon, for PR 199 - LexManos: Ship forgeversion.properties with release zips. Same format as fmlversion.properties. - LexManos: Dll files are binary as well. - -Build 4.2.5.311: - LexManos: Fill out the .gitattributes to help with line endings how they should be. - LexManos: Change the Crafting damage check to be the same as the usage damage check. (>= -> >) - LexManos: Allow hook into GuiSlot for background rendering for PR #203 - -Build 4.2.5.310: - Christian: Reorganize the forced chunks a bit- offload the cost of immutable map building to the mods, rather than the chunk tick - -Build 4.2.5.307: - Christian: Remove @SideOnly from removePotionEffect. Hi RichardG! - -Build 4.2.5.306: - LexManos: Add some accessors to teh ChunkLoader tickets. - -Build 4.2.5.305: - ohai.iChun: Fix not passing right render pass to Item class. - -Build 4.2.5.303: - Christian: Fix bounds checking on chunkcache. Should fix a bunch of rp2 and maybe other extended tile entity code - -Build 4.2.5.302: - Christian: - Use weak references to the worlds in our maps. WorldClient would otherwise - leak all over the show. - -Build 4.2.5.299: - mehvids: Add some of the model subsystem to the server. The part that doesn't require openGL. This allows for systems that dual models as collision/selection boxes etc. - xcompwiz: - Improves DimensionManager - - Adds handling for unloading and hotloading of worlds, fixes some typos, - allows for dimensions to be unregistered (allowing save specific - dimension registrations), general changes to match these features. - xcompwiz: - Adds world unloading and hotloading calls - - Adds world unloaded message to MinecraftServer on save. - Adds world unloading calls to chunk provider/manager when all chunks are - unloaded. - Adds call in MinecraftServer getWorld to hotload world if it isn't - loaded. - xcompwiz: - MapStorage Fix - - Fixes setting and timing of map storage object to allow for the - WorldProvider to use it during initialization - Forces single instance of map storage object (per side) - Moves setting of spawn to after provider setup - xcompwiz: - Lighting Time fix - - score_under's lighting fix that limits and fairly distributes the amount - of time spent on recalculating lighting - xcompwiz: - Server player concurrency fix - - Fixes an issue where the server can move a player while the player is - moving, process the player's last move (putting the player back where - they were before the teleport), and then complain about the player - moving too fast when the client catches up to it's new position. Also - fixes this issue while riding an entity. Only affects player - client/server movement sync. - Christian: - Remove dead WorldInfo patch. Tweak dimension code a bit for better naming, and use the new FML world loading facilities - Update FML: d0e7c9e - d0e7c9e Update patches *sigh* - f3e1cac Add in a savehandler strategy for reading and writing data to the world save. This service is only available to coremods via the WorldAccessConta - 51fb513 Add in some bukkit supporting code. Most of this is unimplemented until the bukkit coremod is complete. - 65c9fdd New stuff on the ModLoader! Risu has been busy. Closes #114 - c1d4458 Mods can now declare a range of minecraft versions they will run against - Christian: Update forge to 4.2 - -Build 4.1.4.298: - LexManos: Fix issue where light would not properly recalculate. - LexManos: Fix issue where mushrooms would not check the proper soil block. - -Build 4.1.4.297: - LexManos: Expanded DungeonHooks to allow for adding of custom DungeonLoot values directly, allowing for better control over the generated items. - -Build 4.1.4.296: - LexManos: Made PlayerEvent.BreakSpeed fire when a player cannot harvest the block. Issues #191 and #188 - -Build 4.1.4.295: - Christian: Dormant chunk cache might actually work now, and not mix chunks across worlds - Christian: - Update FML: ca1ca4f - ca1ca4f Fix maps supporting greater than byte() dimension sizing - 15ee8bf Fix language registry additions, closes #113 - a08b5b1 Merge pull request #112 from pahimar/master - 8dac58f Added ability to query the Language Registry by key and language for specific localized text, as well as loading in localization text f - -Build 4.1.4.294: - LexManos: Fix buckets, need to rethink for bukkit compatibility. - LexManos: Fix vanilla bug where the player would load chunks outside its range that would be 'abandoned' and never unloaded. - LexManos: Forgot comment, you see nothing... - -Build 4.1.4.292: - Christian: - A few requested features of ForgeChunkManager. Mods can specify a - chunkloading config directly in the config file, including chunk - loading overrides if they wish (and the config allows them). - Also added "player" tied tickets that bind to the player and not the - mod's quota. - -Build 4.1.4.291: - LexManos: Missing updates from last commit - LexManos: Location aware version og Block.lightOpacity for PR #169 - -Build 4.1.4.290: - LexManos: Fix bug in last commit that caused block to not break. - LexManos: Added preliminarty Player Interact event heavily based on the bukkit event. - -Build 4.1.4.289: - LexManos: Add PlayerEvent.HarvestCheck and PlayerEvent.BreakSpeed for dealing with things related to a player harvesting a block. - -Build 4.1.4.288: - LexManos: Fix bug where breaking texture would not apply to top/bottom of beds. - -Build 4.1.4.287: - Christian: Add in an "EntityEvent.EnteringChunk" event. Useful for your entity chunkloading stuff. - -Build 4.1.4.286: - LexManos: Support for no BOM. - -Build 4.1.4.285: - Christian: - Update FML: f083707 - f083707 Extreme headless mode is back! - -Build 4.1.4.284: - Christian: - Update FML: dd39ae5 - dd7502a Fix parent child counts showing properly. Closes #107 thanks scott! - b36d447 It's useMetadata, not usesMetadata. thanks myrathi and psx. closes #110 - efb1066 Fix random shuffling when manipulating biomes by using a LinkedHashSet to preserve iteration order. Closes #111 - Christian: - Some more tweaks to the chunkloading code. The world.load event fires slightly later- once the entity watcher is - set up, so entities can actually load into the server world. Also, tickets actually save and load properly - and null entities don't break the server - -Build 4.1.4.282: - LexManos: > != >= - -Build 4.1.4.281: - LexManos: Fix Configuration.getItem to return pre-shifted values suitible to pass into Item constructors. - -Build 4.1.4.280: - LexManos: Fire off PlayerDestroyItemEvent for crafting contianer items that get damaged to much. PR #183 - -Build 4.1.4.279: - LexManos: Configuration will now attempt to detect the encoding of the file using the Byte Order Mark. - LexManos: - Changed Configuration to use overloaded methods, and changed the order of arguments to be Category, Key, Value instead of Key, Category, Value to hopefully help cleanup some peopels code. - Added function to get a free Item id. Will only accept values that are not in the block space. Needs testing. - Marked all the old getOrCreate* functions as deprecated. - -Build 4.1.4.278: - Christian: Fix some errors if the config is unparseable. It should log an exception and carry on with defaults. - Christian: Support quoting in property and category names for almost all possible characters allowed - Christian: Fix up some config file handling to be even more resilient. - -Build 4.1.4.277: - Christian: - More modifications to the ticket callback handling system. There are up to two callbacks during world loading now. One to allow - selective preference for ticket types. The other to actually allow the mod to force chunks. - -Build 4.1.4.276: - Christian: - Update FML: dd39ae5 - dd39ae5 Try and fix the newline capture so consoles show on the server on windows again - b39f808 Readd ancient searge name so dan200 and computercraft can run again. REMOVE THAT CODE DAN. - Christian: - Some changes to the ForgeChunkManager. - Null modData is allowed now. - The entity id is actually properly persisted in the ticket now. - There is a new "orderedLoadingCallback" that allows you to provide a preferred ticket loading order in case of "excess tickets". Also, tickets - that are not in the returned list are now unregistered. - There is a way to resort the chunks in the forced chunklist on a ticket now. - Log the dormant cache configuration - -Build 4.1.4.275: - Christian: Simple chunkloading implementation - Christian: Working cross dimensional implementation of chunkloading for Forge. - Christian: - A lot of tweaks to the chunkloading for entity behaviour. Entities are now bound by a new - persistent id they *all* have, on the server side. - Christian: Remove @SideOnly flag for function now required on the server - Christian: Fix NPE in ForgeChunkManager - Christian: And a concurrentmodificationexception in the same code - Christian: - Simple chunk caching capability for the chunkloader. This will store "dormant" chunks in a - configurable cache, potentially saving the cost of reloading them from disk. - Christian: Delete some debug code - Christian: Some more fixes for chunkloading code. Works very reliably now. - Christian: - Update FML: a2c059e - a2c059e Fix missing import. Thanks ichun :( - 19316a0 Version file searching should work for directories too - fbc7a5c Fix bug causing NPE if non-whitelisted player joins an FML server without FML installed - e9cfd10 Merge pull request #103 from iChun/patch-2 - 1424883 Fixed ModTextureAnimation not updating and not binding to correct image. - -Build 4.1.4.274: - mitchpetrie29: - Update patches/common/net/minecraft/src/WorldProvider.java.patch - - Fixed WorldProvider.setDimension() setting the wrong variable. - LexManos: Fix patch errors in merge of last PR -.- - -Build 4.1.4.272: - LexManos: Fix accedental doubling of shift, Fixes saplings/flowers planting a space above where they should - -Build 4.1.4.271: - LexManos: New Plant API that allows for custom plants/soils. - -Build 4.1.3.270: - LexManos: Added new hooks for modifying the items generated in chests during world gen. - -Build 4.1.2.269: - LexManos: Redirect a lot of functions through WorldProvider for Mystcraft, allowing them to be overriden by the provider. - -Build 4.1.2.268: - CovertJaguar: Fixed Entity Item render helper - -Build 4.1.2.267: - ohai.iChun: Fix pick block key giving invalid spawn eggs - ohai.iChun: Logic derped - ohai.iChun: Logic derp (again) - -Build 4.1.2.266: - LexManos: Added side sensitivity to standard EntityDiggingFX, added Block functions to override spawning of digging and breaking effects. - -Build 4.1.2.265: - LexManos: Fix potential NPE in Custom item entity span code caused by item id misconfigurations. - -Build 4.1.2.264: - LexManos: Fix recursion issue with new special item entity code. - -Build 4.1.2.263: - Christian: - Update FML: 6c746ec - 6c746ec Tidy code - aacbfeb Change version.properties search slightly, allow access to found file from the preinit event - 1513b36 Add in the capability to read an internal version as .version from a file in the zip call versi - 35852a6 Fix up reversed assignment for version fallback - -Build 4.1.2.261: - pahimar: Changes to how PotionEffects are removed, now each PotionEffect can specify which ItemStacks can remove it's effect - pahimar: Inverted logic derp - -Build 4.1.2.260: - LexManos: Package all of paulscode/ with the universal jar to help mac users who cant understand how to merge folders -.- - -Build 4.1.2.259: - LexManos: Bump version to 4.1.2 to mark the end of todays changes. - -Build 4.1.1.258: - LexManos: Fix potential issue with custom events where the constructor is not visible from the EventBus class, Should never arise but meh. - LexManos: Read/Write config files as UTF-8 instead of ANSII, should fix issue with Turkish people. - LexManos: Allow for respawning in different dimensions. - LexManos: Move spawn fuzz to WorldProvider/WorldType, useful for VoidWorld types. - -Build 4.1.1.257: - LexManos: Make EntityJoinWorldEvent Cancelable properly - LexManos: Move Forge init message to MinecraftForge.initalize - LexManos: Add ability for Items to create custom Entities for themselves when added to the world, PR: #151 - -Build 4.1.1.256: - admin: Allow flight,player sensitive - -Build 4.1.1.255: - LexManos: Fix a few patch fuzzes - LexManos: Implemented isBlockFoliage for pull #141 - -Build 4.1.1.254: - LexManos: Clean up some javadoc warnings. - LexManos: - New EntityItem related events - Fixed player death event in SMP - Added Player specific drops event - Added generic EntityJoinWorldEvent - -Build 4.1.1.253: - LexManos: Fix FillBucketEvent to work with stacked buckets. New change in 1.3 - LexManos: EntityLiving variation of drawBlockDamageTexture to allow for Non-player viewports. - -Build 4.1.1.252: - Christian: Remove all references to ModLoader - Christian: - Update FML: 89b8236 - 89b8236 Fix onConnectionClosed not being called on the client side of a connection - -Build 4.1.1.251: - LexManos: Bump version to 4.1.1 - -Build 4.0.0.250: - Christian: - Update FML: 290a3c9 - 290a3c9 Merge pull request #94 from iChun/patch-1 - 9485dc5 Fix handleTinyPacket using short instead of int. - Christian: - Update FML: 70f55c5 - 70f55c5 Add in exclusion list for IFMLLoadingPlugin. - 1c1716d Remove debug cruft - d567f79 To properly align with packet9respawn, make packet1login's dimension an int as well - ecd4e46 Attempt to build some protocol negotiation, and fix packet1login so that the dimension is a short, matching packet9respawn - 16fe495 Compatibility level is now passed from server to client - and the client tracks it. This means certain packet changes can be made without b - 4f70d23 Fix dependency checking: you can depend on specific versions of FML - -Build 4.0.0.249: - Christian: - Update FML: e6abb69 - e6abb69 Fix up tiny packet handler to actually work - e862052 Allow javax to be shipped by mods. Should allow some more modloader mods to work unaltered - 4071ad1 Add in a little bit of protocol cleanup. Start work on allowing multiple protocol versions - 6061964 Give a way to build the packet131mapdata packet correctly populated - b818769 Capture and leverage Packet131MapData - -Build 4.0.0.248: - LexManos: Fix placing torches and the like on inverted woden slabs. - -Build 4.0.0.247: - Christian: - Update FML: 12bc4ba - 12bc4ba Make console logging pass through a single logging thread to avoid concurrency problems with launchers and stuff - 8fccfa2 Overlooked chat message support *sigh*. Fixes wierd mods that communicate through custom chat messages rather than - a697d04 Rescan mod packages where there was a possible mod identified to try and make sure we load it. Fixes Matmos r16 - -Build 4.0.0.246: - Christian: - Update FML: 9d812f1 - 9d812f1 And handle the other way to globally register an entity - 869cf78 Fix up mods trying to register entities outside of modloading. Now you'll get a big fat warning for doing such a de - 186680c Fix CJB mod compatibilty for real. Gui container registration can now happen in the constructor. YUK! - 5aed6d9 Fix compatibility with ModLoader dispenser hook. Fixes a bug with IDispenseHandler too - though it means that inter - 3d7a665 Fix headless operation, hopefully - -Build 4.0.0.245: - Christian: - Update FML: 10a7169 - - 10a7169 Fix up trying to re-add stuff to the classpath when it's already there - 0eb7180 Fix out of range entity id handling for ModLoader mods a bit more. Thanks Herobrine mod! - b1b4c61 Expose GuiMerchantButton - 359cfb5 Log a big fat warning for the developer in the case the network version is not acceptable to the mod itself. (This can happen because of a bad range specifier for example) - -Build 4.0.0.243: - Christian: - Update FML: 8656fd5 - 8656fd5 Also, make missing entity not blow things up - 25a4dcb Fix entity tracker "update" packet not computing correctly. Should work now.. - -Build 4.0.0.242: - Christian: - Update FML: c90a853 - c90a853 Fix up addRenderer to catch exceptions from the basemod, also, addrenderer now supplies a list of the default renderers from MC for editing and will note the - 18069d8 Change download location for FML libraries to files.minecraftforge.net, add an encoding param to the javac command line to force utf 8 - a40f4a7 Add in random jar/zip files to the classpath. UGH this is so fucking ugly it's not funny. - 5b6460b Use a null socket and try to prefer the result of getLocalHost in the broadcast data. - -Build 4.0.0.240: - Christian: - Update FML: c0d1348 - c0d1348 Add in an ItemRenderer null check so FML can run render adding mods - 482c163 Inverted boolean logic. Grrr. - 221d113 ModLoader mob spawns use packet 24- build a bypass system so that they can still use it - f19f426 Remove debug statements - -Build 4.0.0.239: - Christian: - Update FML: 9dd9b6e - 9dd9b6e Fix keybindings not loading properly from gamesettings file after restart - -Build 4.0.0.238: - LexManos: Fix silk touch on Ender Chests. - -Build 4.0.0.237: - t.tomkins: - Update patches/common/net/minecraft/src/NetServerHandler.java.patch - - Update patches/common/net/minecraft/src/NetServerHandler.java.patch - - Server mods can now use noClip to push players through solid blocks without is being an invalid move and resetting the players position. - - Useful for creating semi-solid blocks like quicksand. - -Build 4.0.0.236: - LexManos: Fix Issue #140: Custom items not properly having texture applied for partical effects. - -Build 4.0.0.235: - Christian: - Update FML: acb0b21 - acb0b21 Fix so we always send received packets to handlers. Renders 250 filtering useless unless i can figure a way to intercept - -Build 4.0.0.234: - Christian: - Update FML: b17dd3c - b17dd3c Some tests - fa66ffa Fix trying to load the client side packet handler, when on the server, hopefully? - b106420 Fix up network negotiation - now it will disconnect with a nice error screen if there are missing mods on the client vs se - -Build 4.0.0.233: - Christian: - Update FML: c971adb - c971adb Fix missing addCommand call: thanks "spawnwolf test command" - d6326de Fix a couple of modloader mods. Thanks! - 483667c Some functionality fixes for @Instance injection. - 8bef512 Versions now have two flavours: the @Mod(version) which is the "programmatic version" and is used for all version relationship calculatio - 501009c Always for ML mods into "public" class accessibility - we don't call from the default package like ML does. - d3d4308 Add in a convenience method for getting a class instance based on existence of another Mod. Useful for soft dependencies. - -Build 4.0.0.232: - Christian: - Update FML: 2d9b88b - 2d9b88b And more mod sorting fixes. - 93d5934 Actually *use* the sorted mod list - -Build 4.0.0.231: - LexManos: Fix FillBucketEvent to actually fire. - -Build 4.0.0.230: - LexManos: Fix call to createTileEntity on blocks that extend BlockContainer. - -Build 4.0.0.229: - Christian: - Update FML: 180a279 - 180a279 Merge pull request #82 from Chicken-Bones/master - cf38461 The access transformer will now handle classes in packages. - 2c85539 Reverse the meaning of state in fml.modStates system property and fmlModState.properties - it was very derpy before. Now: true is enabled, false is disabled, as you would expect - d651189 Actually fix the corrupt JSON problem - f6a8cd5 Fix isModLoaded for "disabled" mods, and the toposort as well - 3bde961 A bit more information for dependency handling - 6396bea Fix up handing corrupt mcmod.info - 6bc6def Fix a problem with network ids - 7328610 Fix up version handling properly. Hopefully, and the error screen. - 9fcc452 Only active mods should have dependencies checked, and be sorted - 26302a6 Fix oddity with Screen, print a version out in the sorted list! - -Build 4.0.0.228: - Christian: - Update FML: 62dbfb3 - 62dbfb3 Fix metadata - -Build 4.0.0.227: - Christian: - Update FML: b91cbe9 - b91cbe9 Fix up versioned dependencies so they work a lot better, also add in a missing mods screen - -Build 4.0.0.226: - Christian: - Update FML: 93b8ba9 - 93b8ba9 Fix missing serverSendPacket - 23fdbbd Trading support for ModLoader - thanks Herblore! - d7a74d8 Close the jar, for cleanliness sake - 58e6dd9 Fix authors - it'll read both "authors" and "authorList" from the json now - 907cf2d More ML compatibility - fix up dragon mounts, thanks! - ee48a36 Fix up loading mods that are grandchildren of BaseMod - c6f362b Fix entity handling for ModLoader mods, thanks parachute mod! - -Build 4.0.0.225: - LexManos: Fix lighting issue for air related to 4096 fix. - -Build 4.0.0.224: - LexManos: Made helper hooks for EntityLiving and EntityRenderer hooks for Optifine - LexManos: Removed deprecated ISpawnHandler, that never worked in 1.3.2 so noone should be using it. See FML's replacement. - -Build 4.0.0.223: - Christian: - Update FML: 6e01c59 - 6e01c59 Merge ChickenBones pull into FML - adds player trackers - a0cbd37 More precise error handling when an invalid class is present - 12323e2 Fix textures not applying properly - 789a4a3 Fix up entity spawning - hopefully they won't warp anymore. - a87d045 Add in a helper on the server start event for adding commands to the server. - 82e9309 Move villager trading hook up a bit. thanks sengir. - 8deaa37 Fix LAN to try hard to find a real network interface, not just localhost most of the time - b5363e3 Update build to not bother building client jar. Universal is everything now. - -Build 4.0.0.222: - LexManos: Pickblock now replaces the currently selected item if it could not find a empty space. - -Build 4.0.0.221: - dvrabel: - Use original minecart drag co-efficients for regular carts. - - Since the amount of speed lost is 1 - co-eff, rounding 0.997 to 0.99 - makes a big difference to the distance a minecart will travel (less - than half of the distance in vanilla 1.25). - -Build 4.0.0.220: - LexManos: - Update FML to 304: - Client side only classes are properly annotated, and denied loading on server side - Added missing client side only ModLoader.getContainerGUI function - Guis work for FML mods now. - Fixed MLProp handeling of null info - Fix up dispenser handling, add in new params for the dispenser: breaks IDispenseHandler, sorry - Christian: - Update FML: 28a10ac - 28a10ac Null protection for ticks() -- probably should uses EnumSet.noneOf() but you can also use null now to stop ticking. closes #77 - c349d51 Automatic mod entity registration into the global entity list. This might break entity code out there, sorry, but this way for most entities you no longer need to manage the global mod entity stuff at all. just remove it. FML will take care of the rest (note, worlds won't load the old entities) - ef01745 Add in a utility function that *might* tell you the context you're running in on either client or server: FMLCommonHandler.getEffectiveSide - c97d6a6 Try and stop sendPacketToAllAround from being crashy - 2062273 Mods can add mod specific crash information to the crash report now Forge needs to implement MinecraftForge.getCrashCallable - 6e6436e Fix up dispenser handling, add in new params for the dispenser: breaks IDispenseHandler, sorry - 38f4a22 Fix up MLProp handling for null info - 3a8b047 GUIs working in FML for ML mods - 52483ee Support gui opening for Shelf mod - dce1cbc Updated MCPMerger to annotate unique classes with there sides, and SideTransformer to null out any class that is loaded on the wrong side. - -Build 4.0.0.217: - LexManos: Updated onItemUseFirst call to include the new hit vector information, and updated readme. - -Build 4.0.0.216: - LexManos: Added missing server side onBlockStartBreak hook, fixes Sheers. - -Build 4.0.0.215: - LexManos: Fixed Forge's 4096 block filler initalization. - -Build 4.0.0.214: - LexManos: Fix IndexOutOfBounds exception, Major derp. - -Build 4.0.0.213: - Christian: - Update FML: 46c563a - - 46c563a Expose more of the village construction parts for building village piece - 1380c2e Allow access to the type "ComponentVillage" - 71a3818 Documentation and registration for villager stuff - e3a343c Fix javadoc derp - 195b1a0 Villager trading, manipulation and village enhancement. Still WIP but sh - 69e66c3 Fix exception based logging to actually log the exception! - -Build 4.0.0.212: - Christian: - Update FML: - 885637c Fix up keyboard events for modloader - 90a7c8f Pickup notification - -Build 4.0.0.211: - LexManos: Changed order in which EntityItemPickupEvent is called, it will no longer be called if the 'delay' on the item is still active. Also EntityItems that are in the world with invalid item stacks will now kill themselves. - -Build 4.0.0.210: - mitchel.pyl: Adds a SkyProvider class that can handle the rendering of the sky - -Build 4.0.0.209: - Christian: - Move and add a few AT for forge: rail and leaves stuff mostly - Update FML (reorg some AT for FML vs forge): - 2171c0c Update fml_at with new transforms - 924a6f9 Fix derp where client sided packet handler would be created on a dedi server env - ad4cffb Add in support for "dummy" keybindings- ones that are added to the list but never do anything so the mod can handle it all themselves. - cf77ffb Don't complain about minecraft source code being in "net.minecraft.src". Derp. - b2fdcd7 Fix ModLoader add XP Smelting - 094ce2a Actually register client/server packetspecs as their correct sides! fixes #71 - -Build 4.0.0.208: - LexManos: Fix MC packet bugs for remote servers that use blocks with ids > 256 - -Build 4.0.0.207: - LexManos: Fixed bug in EntityMinecart that would cause them to fall through the ground at the bottom of slopes. - -Build 4.0.0.206: - Christian: - Update FML: - - e8cb2c1 Error if channel name is invalid - either too short, or too long - 9c6c56c Add a connect and read timeout for downloading libraries. This should really stop the "waiting forever" at startup screen. - 0d5affe GIANT FAT WARNINGS if you use any code in net.minecraft.src or any subpackage thereof. Get it out of there, now! - 13f210f Fix up ML GUI ticking. Thanks sharose! - -Build 4.0.0.205: - LexManos: Fixed EntityEvent.CanUpdate - LexManos: Fix EntityItemPickupEvent 'pop' sound spamming. - LexManos: Added timeout to MC's download of sound resouces. - LexManos: Update WorldProvider.path diff. - -Build 4.0.0.204: - Christian: - Update fml: - c61ad51 Organize ALL the imports - c0842b0 Expose the server in serverstart event - 2851079 Fix up directory injection of log file locations - 5197524 Refer to FMLLog, not FMLRelaunchLog - 78efd1a Tidy up server launch - reflection not required anymore - eee0a99 Also, log what the directory discoverer finds for mcmod.info - 10c96c3 And log the exception if it has a problem reading the jar file - 07cc3fb Fix jar loader failing to inject any metadata at all if mcmod.info is not found. - e31f143 Change install.cmd to install.bat, why, cuz people are .... Updated readme to mention needing server and client. - -Build 4.0.0.200: - LexManos: Allow white space in the property name. - Christian: - Update FML to include some ML compatibility fixes. Minimap should run, assuming he - recompiles against standard ML interfaces. - This updates to official MCP 7.2, so you'll need to rebuild your workspace (some - small but important patches to MCP went in) - -Build 4.0.0.199: - Christian: Update FML, make the .sh scripts executable - -Build 4.0.0.196: - LexManos: Update FML to 285 - -Build 4.0.0.194: - draake: Added additional sound events to allow manipulation of a sound source at its creation. - draake: Removed SoundSetListenerEvent implementation. - -Build 4.0.0.193: - LexManos: Fix potential index exception in ForgeDirection - LexManos: Whops - -Build 4.0.0.192: - LexManos: Rename Orientation to ForgeDirection {Damn MCP naming a class Direction already} - -Build 4.0.0.191: - LexManos: Update FML again for mod screen blending fix. - -Build 4.0.0.190: - LexManos: Updated Orientation with new helper functionality. - LexManos: Fix ItemBlock placement, should fix RP Deployers placing blocks 1 tile down. - LexManos: Seperated block placmenet logic in ItemBlock as immibis requested: https://github.com/MinecraftForge/MinecraftForge/pull/110 - LexManos: New Command event. - LexManos: Fix issue with default getContainerItemStack - LexManos: Add render distance property to TileEntity. - -Build 4.0.0.189: - LexManos: Updated FML, should fix the new included eclipse workspace. - -Build 4.0.0.188: - LexManos: Cleanup repo, delete old code - LexManos: Update FML to 278, MC 1.3.2 - LexManos: Cleaned up forge scripts, and updated AT config for 1.3.2, deleted any reference to server specific code. - LexManos: Updated patches to 1.3.2 - LexManos: Fixed bug in DimensionManager that would cause Index error for custom dimensions, also made WorldProviders aware of what dimension they are. - -Build 4.0.0.187: - LexManos: Readded patch to allow for use of custom teleporter for transfering dimensions. - -Build 4.0.0.186: - LexManos: Update FML with entity spawning fixes - -Build 4.0.0.185: - LexManos: Updated FML, should fix 'derp?' RuntimeError - -Build 4.0.0.184: - LexManos: Fix PickBlock 'ghost item' bug when picking with a item selected. - -Build 4.0.0.183: - LexManos: Update FML, Tons of bug fixes and proper merging of client and server. - LexManos: Delete Forge server projects - LexManos: Update debug settings to use Client's internal MinecraftServer.main to debug dedi-server env. - LexManos: Update release script to create universal binary distro. - -Build 4.0.0.182: - j.marini: Fix bug where default bonemeal behavior wouldn't trigger. Only return if the event was canceled. - -Build 4.0.0.181: - LexManos: Update FML, new AT features, and error info. - -Build 4.0.0.180: - LexManos: Fixed ItemRenderer not grabbing custom texture files properly for block items - LexManos: Updated FML - LexManos: Delete dead IGuiHandler - LexManos: Update AT config to expose some block functions and a few extras. - -Build 4.0.0.179: - LexManos: Should fix commands.py patching not working properly first run. - -Build 4.0.0.178: - LexManos: - Updated FML, Should fix a lot of installing issues for MCP. - Made patches error and not apply if the target file is not found. - Updated Event Transformer to add a default constructor... - Fixed 4096 setup code in MinecraftForge.initalize() - -Build 4.0.0.177: - LexManos: Fix issue in install script for users with spaces in there paths. - -Build 4.0.0.176: - LexManos: Update FML, server should run now. Still issue with NPE with no mods installed. - LexManos: Updated FML, fixed custom tool hooks, and spawn protection/player reach hooks. - -Build 4.0.0.173: - LexManos: Fixed Diemsnion API related NPEs, and updated FML to 231. - -Build 4.0.0.172: - LexManos: Get rid of all old patches - LexManos: Added a better eclipse workspace for deving Forge - LexManos: inital push of updated setup script and cleaned up forge.py - LexManos: Dump old mcp config - LexManos: New Start.java which allows the user to login using a legit account for testing on servers. - LexManos: Committing inital work on generating sanitized MCP conf data. - LexManos: Add the direct copied files from MCP conf - LexManos: Add newids to that list - LexManos: Helper function grab all unique searge names that are shared client and server - LexManos: Added merging fields/methods/param csv files. And updated FML to 197 - LexManos: Remove eclipse files from old eclipse projects - LexManos: Updated build.py - LexManos: Update FML - LexManos: - Moved logo to new client folder - Added blank Access Transformer config for Forge - Implemented version storage - Added basic dummy FML mod container to remove the need for mod metadata file - Added beggining work on Forge event system - Updated and moved EnumHelper - LexManos: Updated update_patches.py, and made first patch! - LexManos: Moved paulscode to new client folder - LexManos: First push of some small patches and introduction of basic events. As well as the first cases for Forge's Access Transformer - LexManos: Missed a file - LexManos: Moved in OreDictionary stuff to new system. IOreHandler is replaced by OreDictionary.OreRegisterEvent - LexManos: Renamed MinecraftForge.eventBus to EVENT_BUS as it's constant. - LexManos: Implemented BonemealEvent (IBonemealHandler replacement), and bonemeal making grass. - LexManos: Implemeneted adding grass seeds, as well as IShearable for BlockTallGrass - LexManos: More progress on converting patches from 1.2.5 - LexManos: Some more patch migration before bed. - LexManos: - More patches converted. - Refactored some of the events to be a better hiarachy. - LexManos: A bulk of more patches converted, updated fml - LexManos: Moved some files. - LexManos: More work, moved over packet stuff, need to change everything to use new NetworkMod system - LexManos: More conversions, added all the entity living events. - LexManos: Finished World and EntityMinecart patches. - LexManos: Removed a lot of old files - LexManos: Updated Client side patches for the new Merged MCP workspace. - LexManos: Nope, unneeded patch - LexManos: Cleaned up some more, fixed infinite loop with cancelable annotation, Client now compiles and enters world just fine. - LexManos: Delete conf, server compile, update fml, and fix install script. - LexManos: Copy forge files over in install. - LexManos: Update fml - LexManos: Moved over Configuration - LexManos: Fix oreientation bug causing levers not being able to place. - LexManos: Added new pick block hook for blocks and entites to allow for better grained control of the result. - LexManos: Include Forge's AT config into redist zips. - LexManos: Update fml, impelemnted Diemsnion API stuff. - LexManos: Updated FML, updated patches - -Build 3.4.9.171: - Christian: Normalize the repo - LexManos: Rebase - LexManos: Bumped version to 3.4.9, final commit for 1.2.5. - -Build 3.3.8.170: - someh4x0r: Fix BlockTrapDoor.disableValidation on server - -Build 3.3.8.164: - LexManos: Should fix NPE on older ISoundHandlers EXA: http://minecraftforge.net/forum/index.php/topic,759.html - -Build 3.3.8.163: - Christian: Update fml with recent tick fix - -Build 3.3.8.162: - truebrain: - -Add: sync serverPos[XYZ] on spawning of entity - - This fixes the issue that, up to 400 ticks from getting in range, - entities have a wrong offset (because server and client don't agree on - the position to calculate relative updates from) - truebrain: -Fix: check for null where needed - truebrain: -Codechange: applied LexManos' request - -Build 3.3.8.161: - LexManos: Fixed a improper rounding in EntityMinecart - LexManos: Made WorldGenMinable metadata sensitive. - -Build 3.3.8.160: - Christian: Update fml to 175- fixes some weird ticking behaviours for ML mods, adds in new ticking behaviours for smart mods - -Build 3.3.8.159: - LexManos: Moved licenses and credits into install folder. - LexManos: Removed symlink files, shouldn't be in the repo. - LexManos: Updated some remaining scripts to call there python versions. - -Build 3.3.8.158: - LexManos: Fix furnaces not smelting the proper number of results after the first one. Damn you tahg, fix this! Keeps falling through my cracks. - -Build 3.3.8.157: - Christian: - Fix server check "blockHasTileEntity" used to determine if getDescriptionPacket - is sent for the block to be metadata sensitive. Thanks iChun! - -Build 3.3.8.156: - Christian: Fix ghost players who appear if they don't have the 4096 fix installed - -Build 3.3.8.155: - LexManos: Fix container creative to not add Blocks above 256 unless it's told to. - -Build 3.3.8.154: - Christian: - Fix world provider behaviour: WorldProvider.byDimension should always return - a new instance- otherwise you can end up with worlds overwriting one another - -Build 3.3.8.153: - LexManos: Fixed isBlockReplaceable and placing ItemBlocks' - -Build 3.3.8.152: - LexManos: Fucking spelling nazis - -Build 3.3.8.151: - LexManos: Fix bitmask bug related to 4096 in multi-block change. - LexManos: Updated FML to build 153 - -Build 3.3.8.150: - LexManos: Fix NPE related to server/client not having block ids synced properly. - LexManos: Add option to randomize potential spawn locations to have a more randomly dispersed spawn patern, useful for games like FTB vs. - LexManos: Added configuration option to disable the darkroom mechanic. For servers who wish to not risk destruction at one broken pipe. - -Build 3.3.8.148: - LexManos: FML 150, more tick related work. - -Build 3.3.8.147: - LexManos: Close inputstream - -Build 3.3.8.146: - LexManos: More bugfixes related to portal generation. Should be all now. - -Build 3.3.8.145: - LexManos: Some 4096 I missed in custom renderers. - LexManos: Updated to FML 149, should fix all ticking issues with ModLoader mods - LexManos: Fix Vanilla bug where nether portals would not work above 127 - -Build 3.3.8.144: - LexManos: Updated to FML build #142, fixed FML compilation issue causing missing files when reobfing. - -Build 3.3.8.143: - LexManos: Updated release script to automatically inject version info into .info file. - -Build 3.3.8.142: - LexManos: Updated to FML 141, should fix ticking issues with certian mods, and crash issue with TropiCraft - -Build 3.3.8.141: - LexManos: Bumped version number for new IEntityLiving interface. - -Build 3.3.7.140: - pahimar: Typo in the new EntityLivingHandler code - -Build 3.3.7.139: - LexManos: Made setFailsafeFieldValue public for Rob - LexManos: Implemented enchanced EntityLiving events. Thanks Atomic for parts of it. - -Build 3.3.7.138: - LexManos: Few more cases for 4096, thanks TrueBrain - -Build 3.3.7.137: - LexManos: Forgot Configuration in 4096 change. - -Build 3.3.7.136: - LexManos: Configurable kick message when you don't have forge. - LexManos: Initial 4096 fix based of mDiyo's work. - -Build 3.3.7.135: - LexManos: Fixed bug in new entity sound hook. - -Build 3.3.7.134: - LexManos: Updated to FML #135 {Fixed ModList rendering issue, and incorrect arument on crafting hook} - LexManos: Added new ISoundHandler.onPlaySoundAtEntity hook. Should be backwards compatible with any older ISoundHandler implementations. - LexManos: New onChunkUnload event for TileEntities, for psxlover. - LexManos: Bumped version number to 3.3.7 for full release. - -Build 3.2.6.132: - LexManos: Fixed concurent modification exception in the ore registry. - -Build 3.2.6.131: - LexManos: Fix for potential concurancy modification exceptions - -Build 3.2.6.130: - LexManos: Fixed possible NPE when blocks havent fully initalized yet. - -Build 3.2.6.129: - LexManos: Updated FML to 132, TextureFX fix, and bumped revision to 6. - -Build 3.2.5.128: - LexManos: Added bouncer functions for functions we removed. Makes MagicLauncher shut up about missing functions {not actually missing}, and therefor makes users stop thinking its a life or death error. - -Build 3.2.5.127: - LexManos: New Ore Dictionary recipies. Allows for simpler Ore Dictionary integration with recipies. IOreHandler should no longer be used. - -Build 3.2.5.126: - LexManos: Updated to FML 130 - LexManos: Added hackish workaround for Tessellator.textureID to provent crashing while we wait for Optifine to update. - -Build 3.2.5.125: - LexManos: Server side of ITextureProvider for Block/Item for compilations sake. - -Build 3.2.5.124: - LexManos: Backwards compatibility fix for ITextureProvider - -Build 3.2.5.123: - LexManos: Updated FML to 121 to fix world tick issues. - -Build 3.2.5.122: - LexManos: Updated MCP mapings. Moved the bulk of custom logic from RenderItem to ForgeHooksClient. - LexManos: All Items and Blocks now implement ITextureProvider, and have a setTextureFile(String) function, to support cleaner code in Mods and in Forge. - LexManos: Tag each Tessellator with it's associated texture ID. - -Build 3.2.5.121: - LexManos: Added kick info to disconnect event, updated to FML 120, keybindings, better image rendering in ModList ui. - -Build 3.2.5.120: - LexManos: Fix bug in cart functions where would always return null. - -Build 3.2.5.119: - LexManos: Fixed some inverted logic causing tress to not gen correctly. - -Build 3.2.5.118: - LexManos: Update FML to 117 - -Build 3.2.5.117: - LexManos: New Hooks addedf for custom tree/leaves. And better interaction with trees growing and rerplacing certain blocks. Should allow for ExtraBiomes to behave nicer, and RedPower to make there blocks un-breakable by trees. - LexManos: Also, new hook in last commit for blocks to determine if they are able to be replaced by ores, for any mod that adds new world gen. Bumped revision up. - -Build 3.2.4.116: - LexManos: We now bundle CodexIBXM from PaulsCode. See http://paulscode.com http://www.paulscode.com/forum/index.php?topic=4.0 and the included license files for more info. - LexManos: Updated to FML 115, added Forge Logo to the client dist, and in-game ModInfo page. - -Build 3.2.4.115: - LexManos: Updated to FML build 114 - -Build 3.2.4.114: - LexManos: Included fmlversion.properties in the release zips. - -Build 3.2.4.111: - LexManos: Added FML ReadMe, Credits, and License to release zips - -Build 3.2.4.110: - LexManos: Update FML to 92, this include full client side support, ModLoader nolonger needed. - LexManos: Added new source clean step to fix linux vs windows astyle issues. - LexManos: Cleaned up names for Minecraft Forge's text files so they dont clash with other mods. Fixed up the release script to include the license text, and executable permissions for install.sh. - LexManos: Added FML mod info file - LexManos: Updated MCP Mapings and patches. - LexManos: Updated patches for FML, moved some extranious code to Forge classes instead of patches. - LexManos: Updated to FML Build 95 - -Build 3.2.3.108: - LexManos: Bump version number for official release. - -Build 3.1.3.107: - LexManos: Fixed AudioMod compatibility with MultiMC style launchers. - -Build 3.1.3.106: - LexManos: Bit masked the entity ID to change the range from -127-127 to 0-255 - -Build 3.1.3.105: - LexManos: Updated MCP Mapings - -Build 3.1.3.104: - LexManos: Added forge identifier to statistics collection. - -Build 3.1.3.103: - LexManos: Fix for furnaces not smelting the final item in full stacks. - -Build 3.1.3.102: - CovertJaguar: static final vars are inlined during the compile step, making the version variables useless at runtime. - LexManos: Fixed Levers droping off the backs of stairs client side. - -Build 3.1.3.101: - LexManos: New block hooks for creating custom beds. - -Build 3.1.3.100: - cpw: Update to FML 74: fixes an important issue with MLProp - -Build 3.1.3.99: - LexManos: Bumped revision to 3 - -Build 3.1.2.98: - LexManos: Fixed Vinella mob spawning bug that prevented mobs from spawning on the top most chunk. Added new Block function to determine if a Mob can naturally spawn on the block. Add new hook to allow for special case handeling on natural entity spawn. - -Build 3.1.2.97: - LexManos: Fix for loading Minecart Entities in worlds that were last accessed before Forge was installed. - -Build 3.1.2.96: - LexManos: Moved MLMP compatibility functions to ModCompatibilityClient, and fixed issue where no vehicles would be spawned. - -Build 3.1.2.95: - LexManos: - New ISoundHandler interface, useful for adding custom sounds and dealign with sound based events. - Includes basuic AudioMod compatibility. - -Build 3.1.2.94: - LexManos: Fixed vinella bugs when trying to access chunk information with a y < 0 - -Build 3.1.2.93: - LexManos: Updated to FML build #73 - LexManos: Added MLMP hook invocation for vehicle spawn and opening GUI's to provide compatibility for clients that have both ModLoaderMP and forge installed. - -Build 3.1.2.92: - LexManos: Exposed TileEntityData packet to TileEntities. And added helper sender function. - -Build 3.1.2.91: - LexManos: Added metadata sensitive Chunk constructor for Bioxx - -Build 3.1.2.90: - LexManos: Added MinecraftApplet.clas to the force output list because users cant understand the concept of only replacing files they are told to. And bumped version to 3.1.2 - -Build 3.0.1.89: - LexManos: made the ID in PacketEntitySpawn unsigned. - LexManos: Added generic packet sending function to MinecraftForge class. - LexManos: Fixed shift-clicking issue with items that utilized the new ItemStack sensitive smelting system. - LexManos: Implemented a 'small' packet system for those mods that need to send rapid, small data packets and who are concered about the overhead of the 250 payload packet. It uses packet 131. - -Build 3.0.1.88: - LexManos: Implemented RichardG's Paged Achivement list GUI modifications. - -Build 3.0.1.87: - t.tomkins: Edits enable use of EntityPlayer.canHarvestBlock (for PlayerAPI) when the ToolClass has no rules for the block. - -Build 3.0.1.86: - LexManos: MAX_ENTITY_RADIUS Now works on the Y axis - LexManos: Respawning in dimensions should now properly set the dimension ID for the new player instance. - -Build 3.0.1.85: - LexManos: Fix for vanilla crash for chunk generation with block ID's above 127. - -Build 3.0.1.84: - cpw: Update fml to build 68: fixes a ticking issue and soft vs hard dependencies - -Build 3.0.1.83: - LexManos: - Changed entity Forge spawning code works to be more in line with normal spawning: - (World, double, double double) constructor is nolonger called, normal (World) constructor, and setPositionAndRotation is called afterwords. - yaw, pitch, and yawHead is sent (if the entity isn't a EntityLiving yawHead isn't used) - The datawatcher data is also sent like a normal Entity. - -Build 3.0.1.82: - LexManos: Fixed bug in BlockFire's old fields. - LexManos: Added variable entity radius to World, to be used if a mod make really large entities. - -Build 3.0.1.81: - LexManos: Fixed TileEntity bug that was causing Ghost tile entities. - -Build 3.0.1.80: - LexManos: Multi-pass item rendering now uese proper render pass number. - -Build 3.0.1.79: - LexManos: Added slope velocity hook for Covert - -Build 3.0.1.78: - LexManos: Fixed bugs in the Dimension transfer code, Now displays proper join message, and respawning in dimensions other then 0 works. - -Build 3.0.1.77: - CovertJaguar: Added a function for checking block harvest levels without having to resort to reflection. - LexManos: Try to fix jenkins build. - -Build 3.0.1.75: - LexManos: Added ItemStack sensitive burn time hook. - -Build 3.0.1.74: - LexManos: - Added new Item function to allow for multiple rendering passes. - Fixed a vinella bug where item layters would not line up for EntityItem's - Added new IItemRendere helper flag for 3d block translations. - -Build 3.0.1.73: - cpw: Update fml to 62- provision a server console command and fix mod loading order - cpw: Update FML for new hooks: onPlayerLogout and onPlayerDimensionChanged - LexManos: - Rewrote IItemRenderer to be a more generic and expandable version, Breaks previous interfaces, but this should be the last time the interface changes. - Implemented the MapRender hook ChickenBones requested. - -Build 3.0.0.72: - cpw: Fix separated login/announce handler - cpw: FML 59: don't send a zero length register packet, add mod channels - -Build 3.0.0.71: - cpw: Update to FML 57: fixes FML not calling it's login handler code - -Build 3.0.0.70: - LexManos: MCP Conf update for 1.2.5 - LexManos: Initial patch update to FML and MC 1.2.5 - LexManos: Deleted patches - LexManos: Fixed update_patches.py to now delete old patch files that have no working src relation - LexManos: Updated repo scripts to python, allowing more flexability and less code duplication. - LexManos: Finished up converting the source dist install scripts to python. Fixed a couple issues with the other scripts. - cpw: Update patches for FML fix. - cpw: Fix release script to import "inject_version" - cpw: Add in recent fml with fixes - cpw: Delete the old one too - LexManos: Rewrote the login code to delay full login untill forge fnishes negotiating network IDs. Should fix entities not having proper ID mapings. - LexManos: Added ChickenBones's request ITextureLoadHandler hook - LexManos: Updated patch for mapings - LexManos: Implemented ISaveEventHandler as ChickenBones's requested. - LexManos: Add server spawn protection config option as per someh4x0r's request. - LexManos: Couple of output fixups and added script to be executed by Jenkins during the build. First test build. - LexManos: Changed IGuiHandler's signature to be compatible with both sides. Took out ModLoaderMp reference in README. - -Build 2.0.0.68: - LexManos: Fix some shadowing warnings. - LexManos: Some cleanups to update_patches, should run properly on any system now. - LexManos: Add IChunkLoadHandler.canEntityUpdate() function to allow entities to update while in custom loaded chunks. - LexManos: Implemented a chat event handler system to allow for manipulating and handeling the various chat/command events. - -Build 2.0.0.67: - LexManos: Changed update_patches script to use python for the bulk, Prevents making 1800 temporary useless files. - LexManos: Fixed camelcasing in IConnectionHandler, ment to do during first upgrade. - -Build 2.0.0.66: - LexManos: Fixed typo bug in MinecraftForge.getEntityTrackerInfo - -Build 2.0.0.65: - LexManos: - Updated to MC: 1.2.4 MLMP: 1.2.4 v1 - Removed all code that was marked as deprecated, IE: ICustomItemRenderer, and the functions in Configuration - -Build 1.4.1.64: - LexManos: Reworked EntityPlayerMP.openGui to hopefully be more compatible with PlayerAPI - -Build 1.4.1.63: - LexManos: Cleanup the EffectRenderer patches, Allows custom food items to have the proper particals. Cleaned up special case class in favor of basic java generics. - -Build 1.4.1.62: - CovertJaguar: Added the ability to define custom categories for config files. - CovertJaguar: Removed createCategory() function and changed it to create categories as they are encountered. - LexManos: Updated MCP mapings - LexManos: - Fixed a couple of bugs in the Configuration categories pull request. - Added helper functions to Property for standard int/boolean usage. - LexManos: Added rider sit pull request. - -Build 1.4.1.61: - LexManos: Fixed NPE on CustomPayload packets with 0 data - LexManos: Changed logic in Configuration to allow for extended block ID mods easier access to change that. Just use reflection to change Configuration.configBlocks to whatever length you want. - LexManos: Implemented Pheenixm pull request allowing for more control over the camera. - LexManos: - Added MinecraftForge.isClient() function that returns true if you are in the Minecraft Client, (As defined as net.minecraft.client.Minecraft existing) false otherwise. - Fixed a typo on PacketEntitySpawn that caused speed to be assigned improperly. - A little code cleanup. - -Build 1.4.1.60: - LexManos: Fixed a few typos that CovertJaguire found in The Forge entity handeling code. And re-wrote the connection sequance so that clients get a list of mod ids before anything else. - -Build 1.4.1.59: - LexManos: Readded the deprecated interface ICustomItemRenderer. Added method to enforce deprecation cross Minecraft versions. - -Build 1.4.1.58: - newthead: Added new item render interfaces to Forge client - newthead: Added hook for rendering equipped items - newthead: Clarified render option for inventory items - newthead: Added remaining item render hooks, and fixed a static method access - newthead: Added render code for inventory items and entity items. - newthead: Cleanup/fix item render hooks - newthead: Added additional flag for rendering entity item bobbing - newthead: Merged item rendering interfaces into a single IItemRenderer - newthead: Updated render hooks and registration to use the IItemRenderer interface - newthead: Modified patches to use new item render hooks - newthead: Merged item rendering interfaces into a single IItemRenderer - CovertJaguar: Fix for network code. - newthead: Changed render hook checks to all use ItemStack instead of itemID - newthead: Reverted vanilla texture binding to an explicit if() statement based on item ID - LexManos: Fixed dyes showing twice in creative list - LexManos: Bumped version number to 1.4.1 - -Build 1.4.0.57: - LexManos: Fixed tile entities not properly being removed for blocks that do not extend BlockContainer, or override BlockContainer.onBlockRemoval - -Build 1.4.0.56: - LexManos: Fixed excessive need for user interaction in the install script. - LexManos: Fixed a class to a deprecated method to fix tool effectiveness. - -Build 1.4.0.55: - LexManos: Reworked the workspace scripts so the build should fail on compile errors. This build should fail as a test. - LexManos: Fixed IOException not found error in CovertJaguires pull request. Updated scripts so that build should now be fixed - -Build 1.4.0.53: - CovertJaguar: Added throws clause to ISpawnHandler functions to keep the functions consistent with similar functions and increase ease of use. Exceptions are already being caught everywhere these functions are called, so no further changes required. - LexManos: Fixed onTakenFromCrafting hooks to be called once per stack taken. Sadly due to how shift-click is handled, the passed in item stack is not garenteed to be the stack that the result was added to. - -Build 1.4.0.52: - LexManos: Fixed forgotten type identifier in clean_src - LexManos: New EntityInteract hook for handeling player vs entity interaction on the global level vs the item level. - LexManos: Fixed sides of grass not getting biome colors - LexManos: Fixed type on patch conversion messing up tile entities - LexManos: Proper fix for SDK's invalid bit shifts of parameters for chunk population - LexManos: Made BlockStairs, BlockFarmland, and BlockStep have proper sided-solidity. Can now place torches on any solid side of those blocks. - -Build 1.4.0.51: - cpw: - Fix worldgen doubleshifting in ModLoaderMP until SDK fixes it. - - This means mods can generate surface and nether in SMP again. - -Build 1.4.0.50: - eloraam: Fixed a merge error. - LexManos: - New script to fix decompile differences between windows and linux/osx. - Removed the MLProp special case, no longer needed as MLProp decompiles fine. - Updated patches to work on all systems. - Added warning and exit if the user does not say yes to the cleanup. - -Build 1.4.0.49: - eloraam: MCP Update. Fixed a few small bugs in the linux scripts. - -Build 1.4.0.48: - LexManos: Fixed the inverted logic in the missing mod check. - LexManos: Fixed a wrong argument for dimensions, should fix entity tracking. - LexManos: Custom dimensions should now honor the canRespawnHere function for respawning. - -Build 1.4.0.47: - LexManos: Fix up Configuration ids to only work for 256 ids until Jeb finishes the 4096 conversion. - -Build 1.4.0.46: - LexManos: Fixed a bug where vines were not shearable. - -Build 1.4.0.45: - CovertJaguar: Fixed a minor bug with the Minecart Dictionary. - -Build 1.4.0.44: - LexManos: 1.4.0 official release. - -Build 1.3.4.42: - LexManos: Updated to MLMPv3 - -Build 1.3.4.41: - LexManos: Hack-fix for players getting stuck during logins. Detailed fix when bug is actually tracked down. - LexManos: Implemented ChickenBone's Chunk handler - -Build 1.3.4.39: - LexManos: Fixed client side bonemeal on grass only making flowers - LexManos: Updated to latest MCP - -Build 1.3.4.38: - LexManos: Fixed MLMP thinking Network mods need a client side when they dont. - LexManos: Fixed a generic tile entity line i missed on the server side. - LexManos: Removed improper tile entity negation - -Build 1.3.4.37: - LexManos: Updated to SDK MLMP v2 - -Build 1.3.4.36: - LexManos: Fixed missing double array in MLMP's packet server side. Also, fixed the creative code again, brain failed. - -Build 1.3.4.35: - LexManos: Got my comparitor turned around - LexManos: Updated to SDK's 1.2.3 MLMP, Mush cleaner, no longer supporting Flan's. - -Build 1.3.4.34: - LexManos: Updated gitignore, fixed digging particles, fixed creative container showing to many blocks, fixed wrong argument for custom renderers. - -Build 1.3.4.33: - LexManos: Updated MCP's patch files. Fixes hangs on running MC as applet. - LexManos: ItemBlock now implements ITextureProvider so that blocks with custom textures will showup properly when being held. - -Build 1.3.4.32: - LexManos: Fixed NPE in the login handler - LexManos: Fixed directory issues in the setup script - LexManos: Cleanup of ModLoaderMP and proper update to the latest version of ModLoader - -Build 1.3.4.31: - LexManos: Fixed missing space in linux scripts - LexManos: No longer mark forge packets as chunk packets. - LexManos: Updated MCP mapings files - -Build 1.3.4.30: - LexManos: Updated scripts so that we use Fernflower now. Added a small python script to download fernflower for the user. And the scripts exit out if it fails. - LexManos: Deleted modLoaderMP.patch, unneeded now that we use Fernflower - LexManos: Updated eclipse project for MCP 1.2.3's inclusion of the Start folder in the src folder. - LexManos: Updated The Json enum helper to point to the new packaged names. And fixed a casing change in ModLoader - LexManos: Made mod_MinecraftForge extend NetworkMod, and changed NetworkMod to extend BaseModMP server side. - LexManos: Fixed unneeded imports in ForgePacket - LexManos: removed unneeded import, and fixed casing of args in IShearable - LexManos: Deleted EntityPigZombie patches, Who needed these? Why could you not do this via reflection? - LexManos: Conf for 1.2.3 - LexManos: Same patch diff, files. - LexManos: No longer needed, bug was fixed - LexManos: Client side initial patch update to Fernflower and MC 1.2.3 - LexManos: Bit of a cleanup of the client patches - LexManos: Couple of things I missed client side - LexManos: Deleted unneeded server side patches, Packet250 bug was fixed. And the others got moved to AnvilSaveHandler - LexManos: First push of server side patch updates for 1.2.3. MLMP is still not updated so it does not include those changes, and will not compile. - LexManos: Small imports cleanup - LexManos: Missed damageCarryover on the server - LexManos: Made the scripts forge updating md5s/mcp/names - LexManos: Updated for MLMP 1.2.3 v1 - -Build 1.3.4.29: - LexManos: Bumped version to 1.3.4, final commit for Minecraft v1.1 - -Build 1.3.3.28: - LexManos: Fixed bug in build script that caused the Minecraft/MinecraftServer classes to not be included. - -Build 1.3.3.27: - LexManos: Client side of the new Dimension support. - -Build 1.3.3.26: - thedeveducer: Fixed spelling mistake ('Frequancy') - LexManos: Fixed ITextureprovider for multi-textured items when rendering on the GUI. - LexManos: Fixed compile error for the spelling pull request. - -Build 1.3.3.24: - LexManos: Fixed up Shearable blocks to play nicer with sub-classes. - LexManos: Fixed line endings in windows update_patches - LexManos: Deleted Deprecated interfaces. - LexManos: Ran AStyle over forge code for uniform code formatting, and refactored old code a bit to have cleaner names. - -Build 1.3.3.23: - connor: People may think the server needs the mods to continue and not the client. - -Build 1.3.3.22: - LexManos: Fixed a bug in update_patches that caused apostrphies to be removed. Causing the last patch to be generated incorrectly. - -Build 1.3.3.21: - LexManos: - Initial attempt at server side extra dimensions support. - Mods must register there dimensions on load, by calling DimensionManager.registerDimension(uniqueID, WorldProvier, boolean) - Mods are resposible for writing there own transporter blocks. - Initial commit, needs some more testing and design thoughts. - -Build 1.3.3.20: - LexManos: Added new Item.getIconIndex context sensitive version. - LexManos: Implemented a response to Methuselah96's Arrow hook request. See IArrowNockHandler and IArrowLooseHandler - -Build 1.3.3.19: - LexManos: Changed the layout of the missing mods gui a little. Still needs a lot of work to look good. - LexManos: Marked forge packets as 'chunk' packets. Giving them a higher priority making the initial mod list check more reliable. - LexManos: Introduced some debugging info into Forge packets. And a debug flag in the client and server packet handlers. - LexManos: Moved Client side EntityPlayer.openGui work code to EntityPlayer for compatibility between player API. - -Build 1.3.3.16: - eloraam: Linux scripts fixed, TE bug fix. - eloraam: Fixed linux scripts, fixed TE bug. - -Build 1.3.3.15: - LexManos: Exposed getters for NetServerHandler.playerEntity and NetworkManager.netHandler - LexManos: - Introuduced NetworkMod, a BaseMod extension and replacement for BaseModMP. All mods that are designed to work in the server environment should extend this. - NetworkMods will be assigned unique ModIDs by the server, and those IDs will be sent to the client upon connection. - Refactored Forge packets to the net.minecraft.src.forge.packets package. And introduced the base ForgePacket class. - Added initial ModList request/response. - LexManos: - Expanded the Mod check to test for missing mods and display a GUI screen for the client if it is missing any. - The client now downloads NetworkMod ID's from the server upon connecting. - LexManos: Implemented a generic EntityPlayer.openGui system, and the network backend for it to work on server and client. - -Build 1.3.3.14: - LexManos: - Fixed up the install scripts. The linux script no longer needs sed. Should fix some issues on OSX's without gsed. - Also forge sources will only be copied to sides that were downloaded. - Also, install scripts now prompt for input to cleanup. - -Build 1.3.3.13: - LexManos: Split mod_MinecraftForge so that Clients arnt required to have MLMP installed if they don't use a MP mod. - -Build 1.3.3.12: - LexManos: Update MCP Mapings - LexManos: Small update to update_patches.bat, to skip patch reject files. - LexManos: Bumped version to 1.3.3 - -Build 1.3.2.10: - LexManos: - Refactored so that ISpecialArmor items do not see the factor of 25 on the damage. - The value returned form ISpecialArmor.getProperties is now copied, so mod items are free to re-use there return values. - -Build 1.3.2.9: - LexManos: - Reworked ISpecialArmor to provide better functionality as requested by IC2 devs. - Armor can now be prioritized over other armor. - It can deal with damaging it's own itemstacks. - Also impkemented the ISpecialArmor.getArmorDisplay - -Build 1.3.2.8: - LexManos: Lowered the amount of build log spam, and fixed the inject_version script for use on other systems. - LexManos: Fixed ITextureProvider support for items that have multiple colored overlays. - LexManos: Added Item.onLeftClickEntity hook. Used to intercept and cancel the 'attack' action within items. - LexManos: Implemented item.onBlockStartBreak call for creative single player. - LexManos: Implimented a new IShearable system. This allows mods to create both new shear-like items/blocks. As well as new Entities/Blocks that work with other mod's shear-like items. - -Build 1.3.2.7: - LexManos: Missed a caluse, ISpecialArmor should work as intended now. And not destroy Armor instanatly. - -Build 1.3.2.6: - LexManos: - Implmented Sengir's IPickupHandler. - http://www.mod-buildcraft.com/forums/topic/hook-intercept-item-pickups-by-player-entities/?view=all - -Build 1.3.2.5: - LexManos: - Merged in the change to ISpecialArmor to introduce the DamageSource argument. - As well as the concept of damage absorption vs reduction. - -Build 1.3.2.4: - LexManos: - Created a Entity tracking ans spawning system. - Mod creators should call MinecraftForge.registerEntity to register a entity. - All entity ID numbers are Mod Unique. Meaning two mods can have Entity #1. - Added client and server side packet handlers for the 'Forge' channel. For use in internal packets such as the new Spawn packet. - Updated the build scripts to copy over unique server source files now that there actually are some. - For modders: - If you have a entity that used MLMP's 'owner' system, you should have your entity implement IThrowableEntity - If you have a entity that implments MLMLP's ISpawnable, you should implement ISpawnHandler. - They provide the same functionality, just in a cleaner, more orginized way and will be the method used when we eventually drop MLMP. - -Build 1.3.2.3: - LexManos: Fixed return value for un/registerChannel. Now returns properly indicate when un/register commands should be sent. - -Build 1.3.2.2: - LexManos: - Setup .gitignore for eclipse bin dirs. - Fixed line endings in install.sh - Added mod_MinecraftForge for simpler logging of minecraft version in crash reports - Added new hooks for connection events, See IConnectionHandler for more details. - Added Packet250CustomPayload handeling and channel registraction management, see MessageManager and IPacketHandler for more details. - Forge now uses unsed fields in C->S Packet1Login to identify itself. None Forge clients will get a graceful disconnect message instead of the 'Unknown packet 230' - diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 00000000..878bf1f7 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,4 @@ +# Sets default memory used for gradle commands. Can be overridden by user or command line properties. +# This is required to provide enough memory for the Minecraft decompilation process. +org.gradle.jvmargs=-Xmx3G +org.gradle.daemon=false \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 30d399d8..7a3265ee 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 9397848f..1d5b29fb 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,5 @@ -#Mon Sep 14 12:28:28 PDT 2015 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-bin.zip diff --git a/gradlew b/gradlew old mode 100644 new mode 100755 index 91a7e269..cccdd3d5 --- a/gradlew +++ b/gradlew @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh ############################################################################## ## @@ -6,20 +6,38 @@ ## ############################################################################## -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS="" +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null APP_NAME="Gradle" APP_BASE_NAME=`basename "$0"` +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD="maximum" -warn ( ) { +warn () { echo "$*" } -die ( ) { +die () { echo echo "$*" echo @@ -30,6 +48,7 @@ die ( ) { cygwin=false msys=false darwin=false +nonstop=false case "`uname`" in CYGWIN* ) cygwin=true @@ -40,31 +59,11 @@ case "`uname`" in MINGW* ) msys=true ;; + NONSTOP* ) + nonstop=true + ;; esac -# For Cygwin, ensure paths are in UNIX format before anything is touched. -if $cygwin ; then - [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` -fi - -# Attempt to set APP_HOME -# Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi -done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >&- -APP_HOME="`pwd -P`" -cd "$SAVED" >&- - CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar # Determine the Java command to use to start the JVM. @@ -90,7 +89,7 @@ location of your Java installation." fi # Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then MAX_FD_LIMIT=`ulimit -H -n` if [ $? -eq 0 ] ; then if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then @@ -114,6 +113,7 @@ fi if $cygwin ; then APP_HOME=`cygpath --path --mixed "$APP_HOME"` CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` # We build the pattern for arguments to be converted via cygpath ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` @@ -154,11 +154,19 @@ if $cygwin ; then esac fi -# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules -function splitJvmOpts() { - JVM_OPTS=("$@") +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " } -eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS -JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi -exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat index aec99730..e95643d6 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -8,14 +8,14 @@ @rem Set local scope for the variables with windows NT shell if "%OS%"=="Windows_NT" setlocal -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS= - set DIRNAME=%~dp0 if "%DIRNAME%" == "" set DIRNAME=. set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome @@ -46,10 +46,9 @@ echo location of your Java installation. goto fail :init -@rem Get command-line arguments, handling Windowz variants +@rem Get command-line arguments, handling Windows variants if not "%OS%" == "Windows_NT" goto win9xME_args -if "%@eval[2+2]" == "4" goto 4NT_args :win9xME_args @rem Slurp the command line arguments. @@ -60,11 +59,6 @@ set _SKIP=2 if "x%~1" == "x" goto execute set CMD_LINE_ARGS=%* -goto execute - -:4NT_args -@rem Get arguments from the 4NT Shell from JP Software -set CMD_LINE_ARGS=%$ :execute @rem Setup the command line diff --git a/logs/debug.log b/logs/debug.log new file mode 100644 index 00000000..e69de29b diff --git a/logs/latest.log b/logs/latest.log new file mode 100644 index 00000000..e69de29b diff --git a/src/main/java/modid/imsm/core/BlockLiveStructure.java b/src/main/java/modid/imsm/core/BlockLiveStructure.java index 07b2fa99..cc1630da 100644 --- a/src/main/java/modid/imsm/core/BlockLiveStructure.java +++ b/src/main/java/modid/imsm/core/BlockLiveStructure.java @@ -1,15 +1,19 @@ package modid.imsm.core; +import com.google.common.collect.ImmutableMap; + import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.util.math.BlockRayTraceResult; +import net.minecraft.util.ActionResultType; import net.minecraft.world.World; public class BlockLiveStructure extends Block { @@ -26,7 +30,7 @@ public class BlockLiveStructure extends Block { private boolean doLoop; public BlockLiveStructure(String name, boolean doReplaceAir, int amountOfSlides, int waitTime, int modifierx, int modifiery, int modifierz,int spawnPosModifierX,int spawnPosModifierY,int spawnPosModifierZ, boolean doLoop){ - super(Material.ROCK); + super(Block.Properties.create(Material.ROCK)); this.name=name; this.doReplaceAir=doReplaceAir; this.modifierx=modifierx; @@ -38,44 +42,48 @@ public BlockLiveStructure(String name, boolean doReplaceAir, int amountOfSlides, this.doLoop=doLoop; } + public Block setCreativeTab(ItemGroup g) { + //Item.BLOCK_TO_ITEM.get(this).getCreativeTabs().add(g); + return this; + } + @Override - public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) - { + public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) { if(worldIn.isRemote) { - return true; + return ActionResultType.SUCCESS; } BlockPos newPos = new BlockPos(pos.getX(), pos.getY(), pos.getZ()); int[][] animation = IMSM.eventHandler.getAnimationFor(name); if(animation==null){ IMSM.eventHandler.creators.add(new StructureCreatorClient(name, pos.getX()+modifierx, pos.getY()+modifiery, pos.getZ()+modifierz, doReplaceAir,IMSM.eventHandler.creators.size())); } - //liveCreators.add(new LiveStructure(array[0], Minecraft.getMinecraft().theWorld, Minecraft.getMinecraft().getIntegratedServer().worldServerForDimension(0), Integer.parseInt(array[1]),Integer.parseInt(array[2]),Integer.parseInt(array[3]), array[4].equals("true"), Integer.parseInt(array[8]), Integer.parseInt(array[9]), i, getAnimationFor(array[0]),array[7].equals("true"))); + //liveCreators.add(new LiveStructure(array[0], Minecraft.getInstance().world, Minecraft.getInstance().getIntegratedServer().worldServerForDimension(0), Integer.parseInt(array[1]),Integer.parseInt(array[2]),Integer.parseInt(array[3]), array[4].equals("true"), Integer.parseInt(array[8]), Integer.parseInt(array[9]), i, getAnimationFor(array[0]),array[7].equals("true"))); IMSM.eventHandler.liveCreators.add(new LiveStructureServer(name, pos.getX()+modifierx-spawnPosModifierX, pos.getY()+modifiery-spawnPosModifierY, pos.getZ()+modifierz-spawnPosModifierZ, doReplaceAir, amountOfSlides, waitTime, IMSM.eventHandler.liveCreators.size(), animation, doLoop)); IMSM.eventHandler.liveCreators.get(IMSM.eventHandler.liveCreators.size()-1).registerLiveCreator(IMSM.eventHandler.liveCreators.get(IMSM.eventHandler.liveCreators.size()-1),IMSM.eventHandler.liveCreators.size()-1); - worldIn.setBlockToAir(newPos); + worldIn.setBlockState(newPos, new BlockState(Blocks.AIR, ImmutableMap.of())); if(IMSM.eventHandler.liveCreators.size()>4){ - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("You have now placed more than 5 Live Structures, which may cause some lag.")); - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Do the command /removelive to remove all live structures")); + Minecraft.getInstance().player.sendChatMessage("You have now placed more than 5 Live Structures, which may cause some lag."); + Minecraft.getInstance().player.sendChatMessage("Do the command /removelive to remove all live structures"); } if(name.equals("LivePlane") || name.equals("LiveFlyingShip1") || name.equals("LiveFlyingShip2") || name.equals("LiveAirplane") || name.equals("LiveAirBalloon") || name.equals("Live_Flying_Helicopter")){ - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Thanks for choosing SimJoo's Aviation Solutions.")); - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Please type in the distance (in blocks) you'd like to fly.")); + Minecraft.getInstance().player.sendChatMessage("Thanks for choosing SimJoo's Aviation Solutions."); + Minecraft.getInstance().player.sendChatMessage("Please type in the distance (in blocks) you'd like to fly."); IMSM.dialoge=1; IMSM.currentInput = IMSM.eventHandler.liveCreators.get(IMSM.eventHandler.liveCreators.size()-1); } else if (name.equals("LiveBoat")){ - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Thanks for choosing SimJoo's Maritime Solutions.")); - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Please type in the distance (in blocks) you'd like to sail.")); + Minecraft.getInstance().player.sendChatMessage("Thanks for choosing SimJoo's Maritime Solutions."); + Minecraft.getInstance().player.sendChatMessage("Please type in the distance (in blocks) you'd like to sail."); IMSM.dialoge=2; IMSM.currentInput = IMSM.eventHandler.liveCreators.get(IMSM.eventHandler.liveCreators.size()-1); } else if(name.equals("Live_Bus") || name.equals("Live_Bus2")){ - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Thanks for choosing SimJoo's Bus Depot.")); - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Please type in the distance (in blocks) you'd like to ride.")); + Minecraft.getInstance().player.sendChatMessage("Thanks for choosing SimJoo's Bus Depot."); + Minecraft.getInstance().player.sendChatMessage("Please type in the distance (in blocks) you'd like to ride."); IMSM.dialoge=3; IMSM.currentInput = IMSM.eventHandler.liveCreators.get(IMSM.eventHandler.liveCreators.size()-1); } else if (name.equals("Live_FerrisWheel") || name.equals("Live_Fair_FreeFall")){ - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Use /ride to ride this structure!.")); + Minecraft.getInstance().player.sendChatMessage("Use /ride to ride this structure!."); } - return true; + return ActionResultType.SUCCESS; } diff --git a/src/main/java/modid/imsm/core/BlockRemover.java b/src/main/java/modid/imsm/core/BlockRemover.java index 1c049199..27479066 100644 --- a/src/main/java/modid/imsm/core/BlockRemover.java +++ b/src/main/java/modid/imsm/core/BlockRemover.java @@ -1,14 +1,16 @@ package modid.imsm.core; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.BlockRayTraceResult; +import net.minecraft.util.ActionResultType; import net.minecraft.world.World; public class BlockRemover extends Block { @@ -17,17 +19,21 @@ public class BlockRemover extends Block { int removeZ; public BlockRemover(int removeX, int removeY, int removeZ){ - super(Material.ROCK); + super(Block.Properties.create(Material.ROCK)); this.removeX=removeX; this.removeY=removeY; this.removeZ=removeZ; } + public Block setCreativeTab(ItemGroup g) { + //Item.BLOCK_TO_ITEM.get(this).getCreativeTabs().add(g); + return this; + } + @Override - public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) - { + public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) { BlockPos pos0; - IBlockState state0; + BlockState state0; for(int x = 0; x postProcessors = new ArrayList(); @@ -59,30 +61,32 @@ public void update(TickEvent.WorldTickEvent event){ public void load(){ if(!IMSM.updateChecked){ - IMSM.updateChecked=true; - UpdateThread updateThread = new UpdateThread(); - updateThread.start(); loadLanguageFile(); + IMSM.updateChecked = true; } loadLiveCreators(); loadStructures(); - lightUpdate= new LightUpdateCheck(Minecraft.getMinecraft().theWorld, Minecraft.getMinecraft().getIntegratedServer().getEntityWorld()); + lightUpdate= new LightUpdateCheck(Minecraft.getInstance().world, Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension)); isLoaded=true; } + @SuppressWarnings({ "unchecked", "rawtypes" }) private void loadLanguageFile() { try { File file = new File("structures/en_US.lang"); if(file.exists()){ - InputStream languageFile = new FileInputStream(file); - LanguageMap.inject(languageFile); - languageFile.close(); + Properties prop = new Properties(); + try(InputStream inStream = new FileInputStream(file)){ + prop.load(inStream); + LanguageMap.replaceWith((Map)prop); + } } } catch (Exception e2) { e2.printStackTrace(); } } + @SubscribeEvent public void update(TickEvent.ClientTickEvent event){ @@ -101,29 +105,28 @@ public void update(TickEvent.ClientTickEvent event){ //if(isRiding!=null){ if(ySync!=null){ //if(isRiding.ride.progress>=0 && isRiding.ride.progress0){ @@ -192,8 +195,8 @@ public void update(TickEvent.ServerTickEvent event){ - while(delayedPrints.size()>0 && Minecraft.getMinecraft().getIntegratedServer().isCallingFromMinecraftThread()){ - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString(delayedPrints.get(0))); + while(delayedPrints.size()>0 && Minecraft.getInstance().getIntegratedServer().isOnExecutionThread()){ + Minecraft.getInstance().player.sendChatMessage(delayedPrints.get(0)); delayedPrints.remove(0); } @@ -213,7 +216,7 @@ private void loadLiveCreators() { String[] array = new String[10]; BufferedReader in; try { - in = new BufferedReader(new FileReader("saves/"+Minecraft.getMinecraft().getIntegratedServer().getFolderName()+"/LiveStructures/"+i+".txt")); + in = new BufferedReader(new FileReader("saves/"+Minecraft.getInstance().getIntegratedServer().getFolderName()+"/LiveStructures/"+i+".txt")); for(int j = 0; j2){ IMSM.eventHandler.delayedPrints.add("Please enter 1 or 2."); } else { - IMSM.eventHandler.serverCreators.add(new MazeGenerator((int)Minecraft.getMinecraft().thePlayer.posX,(int) Minecraft.getMinecraft().thePlayer.posY,(int) Minecraft.getMinecraft().thePlayer.posZ)); + IMSM.eventHandler.serverCreators.add(new MazeGenerator((int)Minecraft.getInstance().player.getPosX(),(int) Minecraft.getInstance().player.getPosY(),(int) Minecraft.getInstance().player.getPosZ())); if(inputNumber==1){ getMazeGenerator().startGeneration(); IMSM.dialoge=0; diff --git a/src/main/java/modid/imsm/core/IMSM.java b/src/main/java/modid/imsm/core/IMSM.java index 105282e8..18870a09 100644 --- a/src/main/java/modid/imsm/core/IMSM.java +++ b/src/main/java/modid/imsm/core/IMSM.java @@ -29,34 +29,29 @@ import modid.imsm.worldgeneration.BlockBigWorld; import modid.imsm.worldgeneration.BlockCheckerboard; import modid.imsm.worldgeneration.BlockCloud; -import modid.imsm.worldgeneration.LiveCommand; -import modid.imsm.worldgeneration.MazeCommand; import modid.imsm.worldgeneration.RideCommand; import modid.imsm.worldgeneration.UndoCommand; import net.minecraft.block.Block; import net.minecraft.client.Minecraft; -import net.minecraft.client.renderer.block.model.ModelResourceLocation; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.init.Blocks; -import net.minecraft.init.Items; +import net.minecraft.client.renderer.model.ModelResourceLocation; +import net.minecraft.item.BlockItem; import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; import net.minecraft.item.ItemStack; import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.fml.common.FMLCommonHandler; +import net.minecraftforge.event.RegistryEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod; -import net.minecraftforge.fml.common.Mod.EventHandler; -import net.minecraftforge.fml.common.SidedProxy; -import net.minecraftforge.fml.common.event.FMLInitializationEvent; -import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; -import net.minecraftforge.fml.common.event.FMLServerStartingEvent; -import net.minecraftforge.fml.common.registry.GameRegistry; +import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; +import net.minecraftforge.fml.event.server.FMLServerStartingEvent; +import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; -@Mod (modid = "imsm",name = "imsm", version = "1.8") +@Mod ("imsm") //@NetworkMod(clientSideRequired = true, serverSideRequired = false) public class IMSM { - //public static CreativeTabs Structures = new Structures(CreativeTabs.getNextID(),"Structures"); + //public static ItemGroup Structures = new Structures(ItemGroup.getNextID(),"Structures"); public static String modid = "imsm"; //public static int lastBlockPlacedX = 1; @@ -69,146 +64,179 @@ public class IMSM { public static boolean updateChecked = false; - @SidedProxy(clientSide = "modid.imsm.core.IMSMClient",serverSide = "modid.imsm.core.IMSMProxy") - public static IMSMProxy proxy; + //@SidedProxy(clientSide = "modid.imsm.core.IMSMClient",serverSide = "modid.imsm.core.IMSMProxy") + // public static IMSMProxy proxy; public static modid.imsm.core.EventHandler eventHandler; - public static CreativeTabs Structures = new CreativeTabs("Structures"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.BlockMegaHouse); + public IMSM() { + System.out.println("Construct IMSM"); + // Register the setup method for modloading + FMLJavaModLoadingContext.get().getModEventBus().addGenericListener(Block.class, this::registerBlocks); + FMLJavaModLoadingContext.get().getModEventBus().addGenericListener(Item.class, this::registerItems); + // Register the enqueueIMC method for modloading + FMLJavaModLoadingContext.get().getModEventBus().addListener(this::init); + // Register the processIMC method for modloading + FMLJavaModLoadingContext.get().getModEventBus().addListener(this::serverLoad); + // Register the doClientStuff method for modloading + FMLJavaModLoadingContext.get().getModEventBus().addListener(this::serverStarting); + + // Register ourselves for server and other game events we are interested in + MinecraftForge.EVENT_BUS.register(this); + } + + @SubscribeEvent + public void onPlayerLogin(net.minecraftforge.event.entity.player.PlayerEvent.PlayerLoggedInEvent event) { + if (event.getPlayer() instanceof net.minecraft.entity.player.ServerPlayerEntity) { + net.minecraft.entity.player.ServerPlayerEntity sp = (net.minecraft.entity.player.ServerPlayerEntity) event.getPlayer(); + sp.setGameType(net.minecraft.world.GameType.CREATIVE); + sp.server.getCommandManager().handleCommand(sp.getCommandSource(), "/defaultgamemode creative"); + } + } + + private static ItemStack safeIcon(Block block) { + Item item = block.asItem(); + if (item != null && item != net.minecraft.item.Items.AIR) return new ItemStack(item); + return new ItemStack(net.minecraft.block.Blocks.STONE); + } + + public static ItemGroup Structures = new ItemGroup("structures"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.BlockMegaHouse); } }; - public static CreativeTabs Decoration = new CreativeTabs("Decoration"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.DecorationParkSouth); + public static ItemGroup Decoration = new ItemGroup("Decoration"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.DecorationParkSouth); } }; - public static CreativeTabs Food = new CreativeTabs("Food"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.FoodFarmSouth); + public static ItemGroup Food = new ItemGroup("Food"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.FoodFarmSouth); } }; - public static CreativeTabs IndustryHigh_Density = new CreativeTabs("IndustryHigh_Density"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.IndustryHigh_DensityBlueEast); + public static ItemGroup IndustryHigh_Density = new ItemGroup("IndustryHigh_Density"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.IndustryHigh_DensityBlueEast); } }; - public static CreativeTabs IndustryMedium_Density = new CreativeTabs("IndustryMedium_Density"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.IndustryMedium_DensityBrickWest); + public static ItemGroup IndustryMedium_Density = new ItemGroup("IndustryMedium_Density"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.IndustryMedium_DensityBrickWest); } }; - public static CreativeTabs IndustryLow_Density = new CreativeTabs("IndustryLow_Density"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.IndustryLow_DensityGreenNorth); + public static ItemGroup IndustryLow_Density = new ItemGroup("IndustryLow_Density"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.IndustryLow_DensityGreenNorth); } }; - public static CreativeTabs Office = new CreativeTabs("Office"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.OfficeHigh_DensityBrickEastWest); + public static ItemGroup Office = new ItemGroup("Office"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.OfficeHigh_DensityBrickEastWest); } }; - public static CreativeTabs Public = new CreativeTabs("Public"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.PublicFireServiceBigEast); + public static ItemGroup Public = new ItemGroup("Public"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.PublicFireServiceBigEast); } }; - public static CreativeTabs ResidentalEnormous_Density = new CreativeTabs("ResidentalEnormous_Density"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.ResidentalEnormous_DensityBlockNorthEastSouthWest); + public static ItemGroup ResidentalEnormous_Density = new ItemGroup("ResidentalEnormous_Density"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.ResidentalEnormous_DensityBlockNorthEastSouthWest); } }; - public static CreativeTabs ResidentalHigh_Density = new CreativeTabs("ResidentalHigh_Density"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.ResidentalHigh_DensityBrickEastWest); + public static ItemGroup ResidentalHigh_Density = new ItemGroup("ResidentalHigh_Density"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.ResidentalHigh_DensityBrickEastWest); } }; - public static CreativeTabs ResidentalMedium_Density = new CreativeTabs("ResidentalMedium_Density"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.ResidentalMedium_DensityOrangeGreenEast); + public static ItemGroup ResidentalMedium_Density = new ItemGroup("ResidentalMedium_Density"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.ResidentalMedium_DensityOrangeGreenEast); } }; - public static CreativeTabs ResidentalLow_Density = new CreativeTabs("ResidentalLow_Density"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.ResidentalLow_DensityGreenEast2); + public static ItemGroup ResidentalLow_Density = new ItemGroup("ResidentalLow_Density"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.ResidentalLow_DensityGreenEast2); } }; - public static CreativeTabs Shopping = new CreativeTabs("Shopping"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.ShoppingMedium_DensityQuartzEast); + public static ItemGroup Shopping = new ItemGroup("Shopping"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.ShoppingMedium_DensityQuartzEast); } }; - /*public static CreativeTabs TransportAirport = new CreativeTabs("TransportAirport"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.TransportAirportRunway_EastWestBuilding_South); + /*public static ItemGroup TransportAirport = new ItemGroup("TransportAirport"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.TransportAirportRunway_EastWestBuilding_South); } };*/ - public static CreativeTabs TransportHarbour = new CreativeTabs("TransportHarbour"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.TransportHarbourSide2CornerWest); + public static ItemGroup TransportHarbour = new ItemGroup("TransportHarbour"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.TransportHarbourSide2CornerWest); } }; - public static CreativeTabs TransportPublic = new CreativeTabs("TransportPublic"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.TransportPublicHightramLSouthWest); + public static ItemGroup TransportPublic = new ItemGroup("TransportPublic"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.TransportPublicHightramLSouthWest); } }; - public static CreativeTabs TransportRoads = new CreativeTabs("TransportRoads"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.TransportRoadTNorthSouthWest); + public static ItemGroup TransportRoads = new ItemGroup("TransportRoads"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.TransportRoadTNorthSouthWest); } }; - public static CreativeTabs TransportWater = new CreativeTabs("TransportWater"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.TransportWater2CornerWest); + public static ItemGroup TransportWater = new ItemGroup("TransportWater"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.TransportWater2CornerWest); } }; - public static CreativeTabs Utility = new CreativeTabs("Utility"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.UtilityPower_NuclearEast); + public static ItemGroup Utility = new ItemGroup("Utility"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.UtilityPower_NuclearEast); } }; - public static CreativeTabs Remover = new CreativeTabs("Remover"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.RemoverLast); + public static ItemGroup Remover = new ItemGroup("Remover"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.RemoverLast); } }; - public static CreativeTabs Other = new CreativeTabs("Other"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.BlockStadium); + public static ItemGroup Other = new ItemGroup("Other"){ + @Override public ItemStack createIcon() { + return safeIcon(IMSM.BlockStadium); } }; - public static CreativeTabs LiveStructures = new CreativeTabs("LiveStructures"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.Live_Power_Windmill_East); + public static ItemGroup LiveStructures = new ItemGroup("LiveStructures"){ + @Override + public ItemStack createIcon() { + return safeIcon(IMSM.Live_Power_Windmill_East); } }; - public static CreativeTabs User = new CreativeTabs("User"){ - public Item getTabIconItem() { - return Item.getItemFromBlock(IMSM.BlockUnlimited); + public static ItemGroup User = new ItemGroup("User"){ + @Override + public ItemStack createIcon() { + return safeIcon(IMSM.BlockUnlimited); } }; @@ -216,898 +244,898 @@ public Item getTabIconItem() { //static EnumToolMaterial EnumToolMaterialRed= EnumHelper.addToolMaterial("RED", 1, 100, 2.1F, 1, 17); - //public static final Item BlueBar = new Item(1000).setMaxStackSize(64).setUnlocalizedName("mmm1").setUnlocalizedName("blueBar").setCreativeTab(IMSM.Materials); + //public static final Item BlueBar = new Item(1000).setMaxStackSize(64).setCreativeTab(IMSM.Materials); //LanguageRegistry.addName(IMSM.BlueBar, "Blue B - public static Block LiveStructureRemover = new LiveStructureRemover().setHardness(1.0F).setUnlocalizedName("LiveStructureRemover").setCreativeTab(IMSM.Remover); + public static Block LiveStructureRemover = new LiveStructureRemover().setCreativeTab(IMSM.Remover); - public static Block DecorationGrassNorthEastSouthWest = new DecorationGrassNorthEastSouthWest(200).setHardness(1.0F).setUnlocalizedName("DecorationGrassNorthEastSouthWest").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkEast = new DecorationParkEast(201).setHardness(1.0F).setUnlocalizedName("DecorationParkEast").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkingGarageEast = new DecorationParkingGarageEast(202).setHardness(1.0F).setUnlocalizedName("DecorationParkingGarageEast").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkingGarageNorth = new DecorationParkingGarageNorth(203).setHardness(1.0F).setUnlocalizedName("DecorationParkingGarageNorth").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkingGarageSouth = new DecorationParkingGarageSouth(204).setHardness(1.0F).setUnlocalizedName("DecorationParkingGarageSouth").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkingGarageWest = new DecorationParkingGarageWest(205).setHardness(1.0F).setUnlocalizedName("DecorationParkingGarageWest").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkingLotsEast = new DecorationParkingLotsEast(206).setHardness(1.0F).setUnlocalizedName("DecorationParkingLotsEast").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkingLotsNorth = new DecorationParkingLotsNorth(207).setHardness(1.0F).setUnlocalizedName("DecorationParkingLotsNorth").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkingLotsSouth = new DecorationParkingLotsSouth(208).setHardness(1.0F).setUnlocalizedName("DecorationParkingLotsSouth").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkingLotsWest = new DecorationParkingLotsWest(209).setHardness(1.0F).setUnlocalizedName("DecorationParkingLotsWest").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkNorth = new DecorationParkNorth(210).setHardness(1.0F).setUnlocalizedName("DecorationParkNorth").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkSouth = new DecorationParkSouth(211).setHardness(1.0F).setUnlocalizedName("DecorationParkSouth").setCreativeTab(IMSM.Decoration); - public static Block DecorationParkWest = new DecorationParkWest(212).setHardness(1.0F).setUnlocalizedName("DecorationParkWest").setCreativeTab(IMSM.Decoration); - public static Block DecorationPlazaFountainNorthEastSouthWest = new DecorationPlazaFountainNorthEastSouthWest(213).setHardness(1.0F).setUnlocalizedName("DecorationPlazaFountainNorthEastSouthWest").setCreativeTab(IMSM.Decoration); - public static Block DecorationPlazaNorthEastSouthWest = new DecorationPlazaNorthEastSouthWest(214).setHardness(1.0F).setUnlocalizedName("DecorationPlazaNorthEastSouthWest").setCreativeTab(IMSM.Decoration); - public static Block DecorationSoccerStadiumEastWest = new DecorationSoccerStadiumEastWest(215).setHardness(1.0F).setUnlocalizedName("DecorationSoccerStadiumEastWest").setCreativeTab(IMSM.Decoration); - public static Block DecorationSoccerStadiumNorthSouth = new DecorationSoccerStadiumNorthSouth(216).setHardness(1.0F).setUnlocalizedName("DecorationSoccerStadiumNorthSouth").setCreativeTab(IMSM.Decoration); - public static Block DecorationSquareNorthEastSouthWest = new DecorationSquareNorthEastSouthWest(217).setHardness(1.0F).setUnlocalizedName("DecorationSquareNorthEastSouthWest").setCreativeTab(IMSM.Decoration); - public static Block DecorationSquareTreeEast = new DecorationSquareTreeEast(218).setHardness(1.0F).setUnlocalizedName("DecorationSquareTreeEast").setCreativeTab(IMSM.Decoration); - public static Block DecorationSquareTreeNorth = new DecorationSquareTreeNorth(219).setHardness(1.0F).setUnlocalizedName("DecorationSquareTreeNorth").setCreativeTab(IMSM.Decoration); - public static Block DecorationSquareTreeSouth = new DecorationSquareTreeSouth(220).setHardness(1.0F).setUnlocalizedName("DecorationSquareTreeSouth").setCreativeTab(IMSM.Decoration); - public static Block DecorationSquareTreeWest = new DecorationSquareTreeWest(221).setHardness(1.0F).setUnlocalizedName("DecorationSquareTreeWest").setCreativeTab(IMSM.Decoration); - public static Block FoodCarrotsEastWest = new FoodCarrotsEastWest(222).setHardness(1.0F).setUnlocalizedName("FoodCarrotsEastWest").setCreativeTab(IMSM.Food); - public static Block FoodCarrotsNorthSouth = new FoodCarrotsNorthSouth(223).setHardness(1.0F).setUnlocalizedName("FoodCarrotsNorthSouth").setCreativeTab(IMSM.Food); - public static Block FoodFarmEast = new FoodFarmEast(224).setHardness(1.0F).setUnlocalizedName("FoodFarmEast").setCreativeTab(IMSM.Food); - public static Block FoodFarmNorth = new FoodFarmNorth(225).setHardness(1.0F).setUnlocalizedName("FoodFarmNorth").setCreativeTab(IMSM.Food); - public static Block FoodFarmSouth = new FoodFarmSouth(226).setHardness(1.0F).setUnlocalizedName("FoodFarmSouth").setCreativeTab(IMSM.Food); - public static Block FoodFarmWest = new FoodFarmWest(227).setHardness(1.0F).setUnlocalizedName("FoodFarmWest").setCreativeTab(IMSM.Food); - public static Block FoodPotatoesNorthEastSouthWest = new FoodPotatoesNorthEastSouthWest(228).setHardness(1.0F).setUnlocalizedName("FoodPotatoesNorthEastSouthWest").setCreativeTab(IMSM.Food); - public static Block FoodStableEastWest = new FoodStableEastWest(229).setHardness(1.0F).setUnlocalizedName("FoodStableEastWest").setCreativeTab(IMSM.Food); - public static Block FoodStableNorthSouth = new FoodStableNorthSouth(230).setHardness(1.0F).setUnlocalizedName("FoodStableNorthSouth").setCreativeTab(IMSM.Food); - public static Block FoodWheatNorthEastSouthWest = new FoodWheatNorthEastSouthWest(231).setHardness(1.0F).setUnlocalizedName("FoodWheatNorthEastSouthWest").setCreativeTab(IMSM.Food); - public static Block IndustryHigh_DensityBlueEast = new IndustryHigh_DensityBlueEast(232).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityBlueEast").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityBlueNorth = new IndustryHigh_DensityBlueNorth(233).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityBlueNorth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityBlueSouth = new IndustryHigh_DensityBlueSouth(234).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityBlueSouth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityBlueWest = new IndustryHigh_DensityBlueWest(235).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityBlueWest").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityBrickEast = new IndustryHigh_DensityBrickEast(236).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityBrickEast").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityBrickNorth = new IndustryHigh_DensityBrickNorth(237).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityBrickNorth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityBrickSouth = new IndustryHigh_DensityBrickSouth(238).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityBrickSouth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityBrickWest = new IndustryHigh_DensityBrickWest(239).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityBrickWest").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityChimneyEast = new IndustryHigh_DensityChimneyEast(240).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityChimneyEast").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityChimneyNorth = new IndustryHigh_DensityChimneyNorth(241).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityChimneyNorth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityChimneySouth = new IndustryHigh_DensityChimneySouth(242).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityChimneySouth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityChimneyWest = new IndustryHigh_DensityChimneyWest(243).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityChimneyWest").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityComputerChipEast = new IndustryHigh_DensityComputerChipEast(244).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityComputerChipEast").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityComputerChipNorth = new IndustryHigh_DensityComputerChipNorth(245).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityComputerChipNorth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityComputerChipSouth = new IndustryHigh_DensityComputerChipSouth(246).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityComputerChipSouth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityComputerChipWest = new IndustryHigh_DensityComputerChipWest(247).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityComputerChipWest").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityGreenEast = new IndustryHigh_DensityGreenEast(248).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityGreenEast").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityGreenNorth = new IndustryHigh_DensityGreenNorth(249).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityGreenNorth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityGreenSouth = new IndustryHigh_DensityGreenSouth(250).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityGreenSouth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityGreenWest = new IndustryHigh_DensityGreenWest(251).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityGreenWest").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityLightBlueEast = new IndustryHigh_DensityLightBlueEast(252).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityLightBlueEast").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityLightBlueNorth = new IndustryHigh_DensityLightBlueNorth(253).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityLightBlueNorth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityLightBlueSouth = new IndustryHigh_DensityLightBlueSouth(254).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityLightBlueSouth").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryHigh_DensityLightBlueWest = new IndustryHigh_DensityLightBlueWest(255).setHardness(1.0F).setUnlocalizedName("IndustryHigh_DensityLightBlueWest").setCreativeTab(IMSM.IndustryHigh_Density); - public static Block IndustryLow_Density3DPrintingEast = new IndustryLow_Density3DPrintingEast(256).setHardness(1.0F).setUnlocalizedName("IndustryLow_Density3DPrintingEast").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_Density3DPrintingNorth = new IndustryLow_Density3DPrintingNorth(257).setHardness(1.0F).setUnlocalizedName("IndustryLow_Density3DPrintingNorth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_Density3DPrintingSouth = new IndustryLow_Density3DPrintingSouth(258).setHardness(1.0F).setUnlocalizedName("IndustryLow_Density3DPrintingSouth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_Density3DPrintingWest = new IndustryLow_Density3DPrintingWest(259).setHardness(1.0F).setUnlocalizedName("IndustryLow_Density3DPrintingWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBlueEast = new IndustryLow_DensityBlueEast(260).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBlueEast").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBlueNorth = new IndustryLow_DensityBlueNorth(261).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBlueNorth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBlueSouth = new IndustryLow_DensityBlueSouth(262).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBlueSouth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBlueWest = new IndustryLow_DensityBlueWest(263).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBlueWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrickEast = new IndustryLow_DensityBrickEast(264).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrickEast").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrickEastWest = new IndustryLow_DensityBrickEastWest(265).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrickEastWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrickNorth = new IndustryLow_DensityBrickNorth(266).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrickNorth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrickNorthSouth = new IndustryLow_DensityBrickNorthSouth(267).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrickNorthSouth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrickSouth = new IndustryLow_DensityBrickSouth(268).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrickSouth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrickWest = new IndustryLow_DensityBrickWest(269).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrickWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrownEast2 = new IndustryLow_DensityBrownEast2(270).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrownEast2").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrownEast = new IndustryLow_DensityBrownEast(271).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrownEast").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrownNorth2 = new IndustryLow_DensityBrownNorth2(272).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrownNorth2").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrownNorth = new IndustryLow_DensityBrownNorth(273).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrownNorth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrownSouth2 = new IndustryLow_DensityBrownSouth2(274).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrownSouth2").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrownSouth = new IndustryLow_DensityBrownSouth(275).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrownSouth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrownWest2 = new IndustryLow_DensityBrownWest2(276).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrownWest2").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityBrownWest = new IndustryLow_DensityBrownWest(277).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityBrownWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityChimneyEast = new IndustryLow_DensityChimneyEast(278).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityChimneyEast").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityChimneyNorth = new IndustryLow_DensityChimneyNorth(279).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityChimneyNorth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityChimneySouth = new IndustryLow_DensityChimneySouth(280).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityChimneySouth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityChimneyWest = new IndustryLow_DensityChimneyWest(281).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityChimneyWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityGreenEast = new IndustryLow_DensityGreenEast(282).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityGreenEast").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityGreenNorth = new IndustryLow_DensityGreenNorth(283).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityGreenNorth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityGreenSouth = new IndustryLow_DensityGreenSouth(284).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityGreenSouth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityGreenWest = new IndustryLow_DensityGreenWest(285).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityGreenWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityIronEast = new IndustryLow_DensityIronEast(286).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityIronEast").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityIronNorth = new IndustryLow_DensityIronNorth(287).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityIronNorth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityIronSouth = new IndustryLow_DensityIronSouth(288).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityIronSouth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityIronWest = new IndustryLow_DensityIronWest(289).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityIronWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityParabolicAntennaEast = new IndustryLow_DensityParabolicAntennaEast(290).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityParabolicAntennaEast").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityParabolicAntennaNorth = new IndustryLow_DensityParabolicAntennaNorth(291).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityParabolicAntennaNorth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityParabolicAntennaSouth = new IndustryLow_DensityParabolicAntennaSouth(292).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityParabolicAntennaSouth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityParabolicAntennaWest = new IndustryLow_DensityParabolicAntennaWest(293).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityParabolicAntennaWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityTankNorthEastSouthWest = new IndustryLow_DensityTankNorthEastSouthWest(294).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityTankNorthEastSouthWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityTelescopeEast = new IndustryLow_DensityTelescopeEast(295).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityTelescopeEast").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityTelescopeNorth = new IndustryLow_DensityTelescopeNorth(296).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityTelescopeNorth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityTelescopeSouth = new IndustryLow_DensityTelescopeSouth(297).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityTelescopeSouth").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryLow_DensityTelescopeWest = new IndustryLow_DensityTelescopeWest(298).setHardness(1.0F).setUnlocalizedName("IndustryLow_DensityTelescopeWest").setCreativeTab(IMSM.IndustryLow_Density); - public static Block IndustryMedium_DensityBlueEast = new IndustryMedium_DensityBlueEast(299).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBlueEast").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBlueNorth = new IndustryMedium_DensityBlueNorth(300).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBlueNorth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBlueSouth = new IndustryMedium_DensityBlueSouth(301).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBlueSouth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBlueWest = new IndustryMedium_DensityBlueWest(302).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBlueWest").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBrickEast = new IndustryMedium_DensityBrickEast(303).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBrickEast").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBrickNorth = new IndustryMedium_DensityBrickNorth(304).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBrickNorth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBrickSouth = new IndustryMedium_DensityBrickSouth(305).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBrickSouth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBrickWest = new IndustryMedium_DensityBrickWest(306).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBrickWest").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBrownEast = new IndustryMedium_DensityBrownEast(307).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBrownEast").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBrownNorth = new IndustryMedium_DensityBrownNorth(308).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBrownNorth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBrownSouth = new IndustryMedium_DensityBrownSouth(309).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBrownSouth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityBrownWest = new IndustryMedium_DensityBrownWest(310).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityBrownWest").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityChemicalPressEastWest = new IndustryMedium_DensityChemicalPressEastWest(311).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityChemicalPressEastWest").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityChemicalPressNorthSouth = new IndustryMedium_DensityChemicalPressNorthSouth(312).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityChemicalPressNorthSouth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityChimneyEast = new IndustryMedium_DensityChimneyEast(313).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityChimneyEast").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityChimneyNorth = new IndustryMedium_DensityChimneyNorth(314).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityChimneyNorth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityChimneySouth = new IndustryMedium_DensityChimneySouth(315).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityChimneySouth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityChimneyWest = new IndustryMedium_DensityChimneyWest(316).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityChimneyWest").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityGreenEast = new IndustryMedium_DensityGreenEast(317).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityGreenEast").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityGreenNorth = new IndustryMedium_DensityGreenNorth(318).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityGreenNorth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityGreenSouth = new IndustryMedium_DensityGreenSouth(319).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityGreenSouth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityGreenWest = new IndustryMedium_DensityGreenWest(320).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityGreenWest").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityIceEast = new IndustryMedium_DensityIceEast(321).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityIceEast").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityIceNorth = new IndustryMedium_DensityIceNorth(322).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityIceNorth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityIceSouth = new IndustryMedium_DensityIceSouth(323).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityIceSouth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityIceWest = new IndustryMedium_DensityIceWest(324).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityIceWest").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensitySandstoneEast = new IndustryMedium_DensitySandstoneEast(325).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensitySandstoneEast").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensitySandstoneNorth = new IndustryMedium_DensitySandstoneNorth(326).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensitySandstoneNorth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensitySandstoneSouth = new IndustryMedium_DensitySandstoneSouth(327).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensitySandstoneSouth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensitySandstoneWest = new IndustryMedium_DensitySandstoneWest(328).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensitySandstoneWest").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityTankEast = new IndustryMedium_DensityTankEast(329).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityTankEast").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityTankNorth = new IndustryMedium_DensityTankNorth(330).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityTankNorth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityTankSouth = new IndustryMedium_DensityTankSouth(331).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityTankSouth").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block IndustryMedium_DensityTankWest = new IndustryMedium_DensityTankWest(332).setHardness(1.0F).setUnlocalizedName("IndustryMedium_DensityTankWest").setCreativeTab(IMSM.IndustryMedium_Density); - public static Block OfficeHigh_DensityBrickEastWest = new OfficeHigh_DensityBrickEastWest(333).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityBrickEastWest").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityBrickNorthSouth = new OfficeHigh_DensityBrickNorthSouth(334).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityBrickNorthSouth").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityCyanEast = new OfficeHigh_DensityCyanEast(335).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityCyanEast").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityCyanNorth = new OfficeHigh_DensityCyanNorth(336).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityCyanNorth").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityCyanSouth = new OfficeHigh_DensityCyanSouth(337).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityCyanSouth").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityCyanWest = new OfficeHigh_DensityCyanWest(338).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityCyanWest").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityHoleOnTopEast = new OfficeHigh_DensityHoleOnTopEast(339).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityHoleOnTopEast").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityHoleOnTopNorth = new OfficeHigh_DensityHoleOnTopNorth(340).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityHoleOnTopNorth").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityHoleOnTopSouth = new OfficeHigh_DensityHoleOnTopSouth(341).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityHoleOnTopSouth").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityHoleOnTopWest = new OfficeHigh_DensityHoleOnTopWest(342).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityHoleOnTopWest").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityLightBlueEastWest = new OfficeHigh_DensityLightBlueEastWest(343).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityLightBlueEastWest").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensityLightBlueNorthSouth = new OfficeHigh_DensityLightBlueNorthSouth(344).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensityLightBlueNorthSouth").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensitySpirolBuildingEast = new OfficeHigh_DensitySpirolBuildingEast(345).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensitySpirolBuildingEast").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensitySpirolBuildingNorth = new OfficeHigh_DensitySpirolBuildingNorth(346).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensitySpirolBuildingNorth").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensitySpirolBuildingSouth = new OfficeHigh_DensitySpirolBuildingSouth(347).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensitySpirolBuildingSouth").setCreativeTab(IMSM.Office); - public static Block OfficeHigh_DensitySpirolBuildingWest = new OfficeHigh_DensitySpirolBuildingWest(348).setHardness(1.0F).setUnlocalizedName("OfficeHigh_DensitySpirolBuildingWest").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityBlueEast = new OfficeLow_DensityBlueEast(349).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityBlueEast").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityBlueNorth = new OfficeLow_DensityBlueNorth(350).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityBlueNorth").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityBlueSouth = new OfficeLow_DensityBlueSouth(351).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityBlueSouth").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityBlueWest = new OfficeLow_DensityBlueWest(352).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityBlueWest").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityGreenEast = new OfficeLow_DensityGreenEast(353).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityGreenEast").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityGreenNorth = new OfficeLow_DensityGreenNorth(354).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityGreenNorth").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityGreenSouth = new OfficeLow_DensityGreenSouth(355).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityGreenSouth").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityGreenWest = new OfficeLow_DensityGreenWest(356).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityGreenWest").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityWhiteEast = new OfficeLow_DensityWhiteEast(357).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityWhiteEast").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityWhiteNorth = new OfficeLow_DensityWhiteNorth(358).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityWhiteNorth").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityWhiteSouth = new OfficeLow_DensityWhiteSouth(359).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityWhiteSouth").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityWhiteWest = new OfficeLow_DensityWhiteWest(360).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityWhiteWest").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityYellowEast = new OfficeLow_DensityYellowEast(361).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityYellowEast").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityYellowNorth = new OfficeLow_DensityYellowNorth(362).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityYellowNorth").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityYellowSouth = new OfficeLow_DensityYellowSouth(363).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityYellowSouth").setCreativeTab(IMSM.Office); - public static Block OfficeLow_DensityYellowWest = new OfficeLow_DensityYellowWest(364).setHardness(1.0F).setUnlocalizedName("OfficeLow_DensityYellowWest").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityCyanEast = new OfficeMedium_DensityCyanEast(365).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityCyanEast").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityCyanNorth = new OfficeMedium_DensityCyanNorth(366).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityCyanNorth").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityCyanSouth = new OfficeMedium_DensityCyanSouth(367).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityCyanSouth").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityCyanWest = new OfficeMedium_DensityCyanWest(368).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityCyanWest").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityLightBlueEast = new OfficeMedium_DensityLightBlueEast(369).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityLightBlueEast").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityLightBlueNorth = new OfficeMedium_DensityLightBlueNorth(370).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityLightBlueNorth").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityLightBlueSouth = new OfficeMedium_DensityLightBlueSouth(371).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityLightBlueSouth").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityLightBlueWest = new OfficeMedium_DensityLightBlueWest(372).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityLightBlueWest").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityPinkEast = new OfficeMedium_DensityPinkEast(373).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityPinkEast").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityPinkNorth = new OfficeMedium_DensityPinkNorth(374).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityPinkNorth").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityPinkSouth = new OfficeMedium_DensityPinkSouth(375).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityPinkSouth").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensityPinkWest = new OfficeMedium_DensityPinkWest(376).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensityPinkWest").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensitySandstoneEast = new OfficeMedium_DensitySandstoneEast(377).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensitySandstoneEast").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensitySandstoneNorth = new OfficeMedium_DensitySandstoneNorth(378).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensitySandstoneNorth").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensitySandstoneSouth = new OfficeMedium_DensitySandstoneSouth(379).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensitySandstoneSouth").setCreativeTab(IMSM.Office); - public static Block OfficeMedium_DensitySandstoneWest = new OfficeMedium_DensitySandstoneWest(380).setHardness(1.0F).setUnlocalizedName("OfficeMedium_DensitySandstoneWest").setCreativeTab(IMSM.Office); - public static Block PublicFireServiceBigEast = new PublicFireServiceBigEast(381).setHardness(1.0F).setUnlocalizedName("PublicFireServiceBigEast").setCreativeTab(IMSM.Public); - public static Block PublicFireServiceBigNorth = new PublicFireServiceBigNorth(382).setHardness(1.0F).setUnlocalizedName("PublicFireServiceBigNorth").setCreativeTab(IMSM.Public); - public static Block PublicFireServiceBigSouth = new PublicFireServiceBigSouth(383).setHardness(1.0F).setUnlocalizedName("PublicFireServiceBigSouth").setCreativeTab(IMSM.Public); - public static Block PublicFireServiceBigWest = new PublicFireServiceBigWest(384).setHardness(1.0F).setUnlocalizedName("PublicFireServiceBigWest").setCreativeTab(IMSM.Public); - public static Block PublicFireServiceSmallEast = new PublicFireServiceSmallEast(385).setHardness(1.0F).setUnlocalizedName("PublicFireServiceSmallEast").setCreativeTab(IMSM.Public); - public static Block PublicFireServiceSmallNorth = new PublicFireServiceSmallNorth(386).setHardness(1.0F).setUnlocalizedName("PublicFireServiceSmallNorth").setCreativeTab(IMSM.Public); - public static Block PublicFireServiceSmallSouth = new PublicFireServiceSmallSouth(387).setHardness(1.0F).setUnlocalizedName("PublicFireServiceSmallSouth").setCreativeTab(IMSM.Public); - public static Block PublicFireServiceSmallWest = new PublicFireServiceSmallWest(388).setHardness(1.0F).setUnlocalizedName("PublicFireServiceSmallWest").setCreativeTab(IMSM.Public); - public static Block PublicHospitalBigEast = new PublicHospitalBigEast(389).setHardness(1.0F).setUnlocalizedName("PublicHospitalBigEast").setCreativeTab(IMSM.Public); - public static Block PublicHospitalBigNorth = new PublicHospitalBigNorth(390).setHardness(1.0F).setUnlocalizedName("PublicHospitalBigNorth").setCreativeTab(IMSM.Public); - public static Block PublicHospitalBigSouth = new PublicHospitalBigSouth(391).setHardness(1.0F).setUnlocalizedName("PublicHospitalBigSouth").setCreativeTab(IMSM.Public); - public static Block PublicHospitalBigWest = new PublicHospitalBigWest(392).setHardness(1.0F).setUnlocalizedName("PublicHospitalBigWest").setCreativeTab(IMSM.Public); - public static Block PublicHospitalSmallEast = new PublicHospitalSmallEast(393).setHardness(1.0F).setUnlocalizedName("PublicHospitalSmallEast").setCreativeTab(IMSM.Public); - public static Block PublicHospitalSmallNorth = new PublicHospitalSmallNorth(394).setHardness(1.0F).setUnlocalizedName("PublicHospitalSmallNorth").setCreativeTab(IMSM.Public); - public static Block PublicHospitalSmallSouth = new PublicHospitalSmallSouth(395).setHardness(1.0F).setUnlocalizedName("PublicHospitalSmallSouth").setCreativeTab(IMSM.Public); - public static Block PublicHospitalSmallWest = new PublicHospitalSmallWest(396).setHardness(1.0F).setUnlocalizedName("PublicHospitalSmallWest").setCreativeTab(IMSM.Public); - public static Block PublicLibraryEastWest = new PublicLibraryEastWest(397).setHardness(1.0F).setUnlocalizedName("PublicLibraryEastWest").setCreativeTab(IMSM.Public); - public static Block PublicLibraryNorthSouth = new PublicLibraryNorthSouth(398).setHardness(1.0F).setUnlocalizedName("PublicLibraryNorthSouth").setCreativeTab(IMSM.Public); - public static Block PublicPoliceBigEast = new PublicPoliceBigEast(399).setHardness(1.0F).setUnlocalizedName("PublicPoliceBigEast").setCreativeTab(IMSM.Public); - public static Block PublicPoliceBigNorth = new PublicPoliceBigNorth(400).setHardness(1.0F).setUnlocalizedName("PublicPoliceBigNorth").setCreativeTab(IMSM.Public); - public static Block PublicPoliceBigSouth = new PublicPoliceBigSouth(401).setHardness(1.0F).setUnlocalizedName("PublicPoliceBigSouth").setCreativeTab(IMSM.Public); - public static Block PublicPoliceBigWest = new PublicPoliceBigWest(402).setHardness(1.0F).setUnlocalizedName("PublicPoliceBigWest").setCreativeTab(IMSM.Public); - public static Block PublicPoliceSmallEast = new PublicPoliceSmallEast(403).setHardness(1.0F).setUnlocalizedName("PublicPoliceSmallEast").setCreativeTab(IMSM.Public); - public static Block PublicPoliceSmallNorth = new PublicPoliceSmallNorth(404).setHardness(1.0F).setUnlocalizedName("PublicPoliceSmallNorth").setCreativeTab(IMSM.Public); - public static Block PublicPoliceSmallSouth = new PublicPoliceSmallSouth(405).setHardness(1.0F).setUnlocalizedName("PublicPoliceSmallSouth").setCreativeTab(IMSM.Public); - public static Block PublicPoliceSmallWest = new PublicPoliceSmallWest(406).setHardness(1.0F).setUnlocalizedName("PublicPoliceSmallWest").setCreativeTab(IMSM.Public); - public static Block PublicSchoolBigNorthEast = new PublicSchoolBigNorthEast(407).setHardness(1.0F).setUnlocalizedName("PublicSchoolBigNorthEast").setCreativeTab(IMSM.Public); - public static Block PublicSchoolBigNorthWest = new PublicSchoolBigNorthWest(408).setHardness(1.0F).setUnlocalizedName("PublicSchoolBigNorthWest").setCreativeTab(IMSM.Public); - public static Block PublicSchoolBigSouthEast = new PublicSchoolBigSouthEast(409).setHardness(1.0F).setUnlocalizedName("PublicSchoolBigSouthEast").setCreativeTab(IMSM.Public); - public static Block PublicSchoolBigSouthWest = new PublicSchoolBigSouthWest(410).setHardness(1.0F).setUnlocalizedName("PublicSchoolBigSouthWest").setCreativeTab(IMSM.Public); - public static Block PublicSchoolSmallNorthEast = new PublicSchoolSmallNorthEast(411).setHardness(1.0F).setUnlocalizedName("PublicSchoolSmallNorthEast").setCreativeTab(IMSM.Public); - public static Block PublicSchoolSmallNorthWest = new PublicSchoolSmallNorthWest(412).setHardness(1.0F).setUnlocalizedName("PublicSchoolSmallNorthWest").setCreativeTab(IMSM.Public); - public static Block PublicSchoolSmallSouthEast = new PublicSchoolSmallSouthEast(413).setHardness(1.0F).setUnlocalizedName("PublicSchoolSmallSouthEast").setCreativeTab(IMSM.Public); - public static Block PublicSchoolSmallSouthWest = new PublicSchoolSmallSouthWest(414).setHardness(1.0F).setUnlocalizedName("PublicSchoolSmallSouthWest").setCreativeTab(IMSM.Public); - public static Block PublicTownhallBigEastWest = new PublicTownhallBigEastWest(415).setHardness(1.0F).setUnlocalizedName("PublicTownhallBigEastWest").setCreativeTab(IMSM.Public); - public static Block PublicTownhallBigNorthSouth = new PublicTownhallBigNorthSouth(416).setHardness(1.0F).setUnlocalizedName("PublicTownhallBigNorthSouth").setCreativeTab(IMSM.Public); - public static Block PublicTownhallSmallEast = new PublicTownhallSmallEast(417).setHardness(1.0F).setUnlocalizedName("PublicTownhallSmallEast").setCreativeTab(IMSM.Public); - public static Block PublicTownhallSmallNorth = new PublicTownhallSmallNorth(418).setHardness(1.0F).setUnlocalizedName("PublicTownhallSmallNorth").setCreativeTab(IMSM.Public); - public static Block PublicTownhallSmallSouth = new PublicTownhallSmallSouth(419).setHardness(1.0F).setUnlocalizedName("PublicTownhallSmallSouth").setCreativeTab(IMSM.Public); - public static Block PublicTownhallSmallWest = new PublicTownhallSmallWest(420).setHardness(1.0F).setUnlocalizedName("PublicTownhallSmallWest").setCreativeTab(IMSM.Public); - public static Block PublicUniversityEast = new PublicUniversityEast(421).setHardness(1.0F).setUnlocalizedName("PublicUniversityEast").setCreativeTab(IMSM.Public); - public static Block PublicUniversityNorth = new PublicUniversityNorth(422).setHardness(1.0F).setUnlocalizedName("PublicUniversityNorth").setCreativeTab(IMSM.Public); - public static Block PublicUniversitySouth = new PublicUniversitySouth(423).setHardness(1.0F).setUnlocalizedName("PublicUniversitySouth").setCreativeTab(IMSM.Public); - public static Block PublicUniversityWest = new PublicUniversityWest(424).setHardness(1.0F).setUnlocalizedName("PublicUniversityWest").setCreativeTab(IMSM.Public); - public static Block ResidentalEnormous_DensityBlockNorthEastSouthWest = new ResidentalEnormous_DensityBlockNorthEastSouthWest(425).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityBlockNorthEastSouthWest").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityBrickBigEast = new ResidentalEnormous_DensityBrickBigEast(426).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityBrickBigEast").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityBrickBigNorth = new ResidentalEnormous_DensityBrickBigNorth(427).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityBrickBigNorth").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityBrickBigSouth = new ResidentalEnormous_DensityBrickBigSouth(428).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityBrickBigSouth").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityBrickBigWest = new ResidentalEnormous_DensityBrickBigWest(429).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityBrickBigWest").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityBrickSmallNorthEastSouthWest = new ResidentalEnormous_DensityBrickSmallNorthEastSouthWest(430).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityBrickSmallNorthEastSouthWest").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityGreyEast = new ResidentalEnormous_DensityGreyEast(431).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityGreyEast").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityGreyNorth = new ResidentalEnormous_DensityGreyNorth(432).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityGreyNorth").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityGreySouth = new ResidentalEnormous_DensityGreySouth(433).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityGreySouth").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityGreyWest = new ResidentalEnormous_DensityGreyWest(434).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityGreyWest").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityModernEast = new ResidentalEnormous_DensityModernEast(435).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityModernEast").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityModernNorth = new ResidentalEnormous_DensityModernNorth(436).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityModernNorth").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityModernSouth = new ResidentalEnormous_DensityModernSouth(437).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityModernSouth").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityModernWest = new ResidentalEnormous_DensityModernWest(438).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityModernWest").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityRedEastWest = new ResidentalEnormous_DensityRedEastWest(439).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityRedEastWest").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityRedNorthSouth = new ResidentalEnormous_DensityRedNorthSouth(440).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityRedNorthSouth").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityRoundNorthEastSouthWest = new ResidentalEnormous_DensityRoundNorthEastSouthWest(441).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityRoundNorthEastSouthWest").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityStoneEast2 = new ResidentalEnormous_DensityStoneEast2(442).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityStoneEast2").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityStoneEast = new ResidentalEnormous_DensityStoneEast(443).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityStoneEast").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityStoneNorth2 = new ResidentalEnormous_DensityStoneNorth2(444).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityStoneNorth2").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityStoneNorth = new ResidentalEnormous_DensityStoneNorth(445).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityStoneNorth").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityStoneSouth2 = new ResidentalEnormous_DensityStoneSouth2(446).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityStoneSouth2").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityStoneSouth = new ResidentalEnormous_DensityStoneSouth(447).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityStoneSouth").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityStoneWest2 = new ResidentalEnormous_DensityStoneWest2(448).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityStoneWest2").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityStoneWest = new ResidentalEnormous_DensityStoneWest(449).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityStoneWest").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalEnormous_DensityYellowNorthEastSouthWest = new ResidentalEnormous_DensityYellowNorthEastSouthWest(450).setHardness(1.0F).setUnlocalizedName("ResidentalEnormous_DensityYellowNorthEastSouthWest").setCreativeTab(IMSM.ResidentalEnormous_Density); - public static Block ResidentalHigh_DensityBlueEast = new ResidentalHigh_DensityBlueEast(451).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBlueEast").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBlueEastWest = new ResidentalHigh_DensityBlueEastWest(452).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBlueEastWest").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBlueNorth = new ResidentalHigh_DensityBlueNorth(453).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBlueNorth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBlueNorthSouth = new ResidentalHigh_DensityBlueNorthSouth(454).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBlueNorthSouth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBlueSouth = new ResidentalHigh_DensityBlueSouth(455).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBlueSouth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBlueWest = new ResidentalHigh_DensityBlueWest(456).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBlueWest").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBrickEast = new ResidentalHigh_DensityBrickEast(457).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBrickEast").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBrickEastWest = new ResidentalHigh_DensityBrickEastWest(458).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBrickEastWest").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBrickNorth = new ResidentalHigh_DensityBrickNorth(459).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBrickNorth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBrickNorthSouth = new ResidentalHigh_DensityBrickNorthSouth(460).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBrickNorthSouth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBrickSouth = new ResidentalHigh_DensityBrickSouth(461).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBrickSouth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityBrickWest = new ResidentalHigh_DensityBrickWest(462).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityBrickWest").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityGreenGreyEast = new ResidentalHigh_DensityGreenGreyEast(463).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityGreenGreyEast").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityGreenGreyNorth = new ResidentalHigh_DensityGreenGreyNorth(464).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityGreenGreyNorth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityGreenGreySouth = new ResidentalHigh_DensityGreenGreySouth(465).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityGreenGreySouth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityGreenGreyWest = new ResidentalHigh_DensityGreenGreyWest(466).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityGreenGreyWest").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityRedCornerNorthEast = new ResidentalHigh_DensityRedCornerNorthEast(467).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityRedCornerNorthEast").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityRedCornerNorthWest = new ResidentalHigh_DensityRedCornerNorthWest(468).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityRedCornerNorthWest").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityRedCornerSouthEast = new ResidentalHigh_DensityRedCornerSouthEast(469).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityRedCornerSouthEast").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityRedCornerSouthWest = new ResidentalHigh_DensityRedCornerSouthWest(470).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityRedCornerSouthWest").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityRedYellowEast = new ResidentalHigh_DensityRedYellowEast(471).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityRedYellowEast").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityRedYellowNorth = new ResidentalHigh_DensityRedYellowNorth(472).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityRedYellowNorth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityRedYellowSouth = new ResidentalHigh_DensityRedYellowSouth(473).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityRedYellowSouth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityRedYellowWest = new ResidentalHigh_DensityRedYellowWest(474).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityRedYellowWest").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityStoneEast2 = new ResidentalHigh_DensityStoneEast2(475).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityStoneEast2").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityStoneEast = new ResidentalHigh_DensityStoneEast(476).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityStoneEast").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityStoneNorth2 = new ResidentalHigh_DensityStoneNorth2(477).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityStoneNorth2").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityStoneNorth = new ResidentalHigh_DensityStoneNorth(478).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityStoneNorth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityStoneSouth2 = new ResidentalHigh_DensityStoneSouth2(479).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityStoneSouth2").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityStoneSouth = new ResidentalHigh_DensityStoneSouth(480).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityStoneSouth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityStoneWest2 = new ResidentalHigh_DensityStoneWest2(481).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityStoneWest2").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityStoneWest = new ResidentalHigh_DensityStoneWest(482).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityStoneWest").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityYellowEast = new ResidentalHigh_DensityYellowEast(483).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityYellowEast").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityYellowNorth = new ResidentalHigh_DensityYellowNorth(484).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityYellowNorth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityYellowSouth = new ResidentalHigh_DensityYellowSouth(485).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityYellowSouth").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalHigh_DensityYellowWest = new ResidentalHigh_DensityYellowWest(486).setHardness(1.0F).setUnlocalizedName("ResidentalHigh_DensityYellowWest").setCreativeTab(IMSM.ResidentalHigh_Density); - public static Block ResidentalLow_DensityBeigeEast = new ResidentalLow_DensityBeigeEast(487).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityBeigeEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityBeigeNorth = new ResidentalLow_DensityBeigeNorth(488).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityBeigeNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityBeigeSouth = new ResidentalLow_DensityBeigeSouth(489).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityBeigeSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityBeigeWest = new ResidentalLow_DensityBeigeWest(490).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityBeigeWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityCyanEast = new ResidentalLow_DensityCyanEast(491).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityCyanEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityCyanNorth = new ResidentalLow_DensityCyanNorth(492).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityCyanNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityCyanSouth = new ResidentalLow_DensityCyanSouth(493).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityCyanSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityCyanWest = new ResidentalLow_DensityCyanWest(494).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityCyanWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityGreenEast2 = new ResidentalLow_DensityGreenEast2(495).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityGreenEast2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityGreenEast = new ResidentalLow_DensityGreenEast(496).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityGreenEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityGreenNorth2 = new ResidentalLow_DensityGreenNorth2(497).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityGreenNorth2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityGreenNorth = new ResidentalLow_DensityGreenNorth(498).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityGreenNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityGreenSouth2 = new ResidentalLow_DensityGreenSouth2(499).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityGreenSouth2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityGreenSouth = new ResidentalLow_DensityGreenSouth(500).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityGreenSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityGreenWest2 = new ResidentalLow_DensityGreenWest2(501).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityGreenWest2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityGreenWest = new ResidentalLow_DensityGreenWest(502).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityGreenWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightBlueEast2 = new ResidentalLow_DensityLightBlueEast2(503).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightBlueEast2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightBlueEast = new ResidentalLow_DensityLightBlueEast(504).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightBlueEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightBlueNorth2 = new ResidentalLow_DensityLightBlueNorth2(505).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightBlueNorth2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightBlueNorth = new ResidentalLow_DensityLightBlueNorth(506).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightBlueNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightBlueSouth2 = new ResidentalLow_DensityLightBlueSouth2(507).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightBlueSouth2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightBlueSouth = new ResidentalLow_DensityLightBlueSouth(508).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightBlueSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightBlueWest2 = new ResidentalLow_DensityLightBlueWest2(509).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightBlueWest2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightBlueWest = new ResidentalLow_DensityLightBlueWest(510).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightBlueWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightGreyEast = new ResidentalLow_DensityLightGreyEast(511).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightGreyEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightGreyNorth = new ResidentalLow_DensityLightGreyNorth(512).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightGreyNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightGreySouth = new ResidentalLow_DensityLightGreySouth(513).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightGreySouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityLightGreyWest = new ResidentalLow_DensityLightGreyWest(514).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityLightGreyWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityModernEast = new ResidentalLow_DensityModernEast(515).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityModernEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityModernNorth = new ResidentalLow_DensityModernNorth(516).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityModernNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityModernSouth = new ResidentalLow_DensityModernSouth(517).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityModernSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityModernWest = new ResidentalLow_DensityModernWest(518).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityModernWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityOrangeEast = new ResidentalLow_DensityOrangeEast(519).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityOrangeEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityOrangeNorth = new ResidentalLow_DensityOrangeNorth(520).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityOrangeNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityOrangeSouth = new ResidentalLow_DensityOrangeSouth(521).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityOrangeSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityOrangeWest = new ResidentalLow_DensityOrangeWest(522).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityOrangeWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityRedEast = new ResidentalLow_DensityRedEast(523).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityRedEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityRedNorth = new ResidentalLow_DensityRedNorth(524).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityRedNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityRedSouth = new ResidentalLow_DensityRedSouth(525).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityRedSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityRedWest = new ResidentalLow_DensityRedWest(526).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityRedWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityStoneEast = new ResidentalLow_DensityStoneEast(527).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityStoneEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityStoneNorth = new ResidentalLow_DensityStoneNorth(528).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityStoneNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityStoneSouth = new ResidentalLow_DensityStoneSouth(529).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityStoneSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityStoneWest = new ResidentalLow_DensityStoneWest(530).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityStoneWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityWhiteEast = new ResidentalLow_DensityWhiteEast(531).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityWhiteEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityWhiteNorth = new ResidentalLow_DensityWhiteNorth(532).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityWhiteNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityWhiteSouth = new ResidentalLow_DensityWhiteSouth(533).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityWhiteSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityWhiteWest = new ResidentalLow_DensityWhiteWest(534).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityWhiteWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityWoodEast = new ResidentalLow_DensityWoodEast(535).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityWoodEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityWoodNorth = new ResidentalLow_DensityWoodNorth(536).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityWoodNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityWoodSouth = new ResidentalLow_DensityWoodSouth(537).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityWoodSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityWoodWest = new ResidentalLow_DensityWoodWest(538).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityWoodWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityYellowEast2 = new ResidentalLow_DensityYellowEast2(539).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityYellowEast2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityYellowEast = new ResidentalLow_DensityYellowEast(540).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityYellowEast").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityYellowNorth2 = new ResidentalLow_DensityYellowNorth2(541).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityYellowNorth2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityYellowNorth = new ResidentalLow_DensityYellowNorth(542).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityYellowNorth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityYellowSouth2 = new ResidentalLow_DensityYellowSouth2(543).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityYellowSouth2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityYellowSouth = new ResidentalLow_DensityYellowSouth(544).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityYellowSouth").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityYellowWest2 = new ResidentalLow_DensityYellowWest2(545).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityYellowWest2").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalLow_DensityYellowWest = new ResidentalLow_DensityYellowWest(546).setHardness(1.0F).setUnlocalizedName("ResidentalLow_DensityYellowWest").setCreativeTab(IMSM.ResidentalLow_Density); - public static Block ResidentalMedium_DensityBlueGreenEast = new ResidentalMedium_DensityBlueGreenEast(547).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBlueGreenEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBlueGreenNorth = new ResidentalMedium_DensityBlueGreenNorth(548).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBlueGreenNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBlueGreenSouth = new ResidentalMedium_DensityBlueGreenSouth(549).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBlueGreenSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBlueGreenWest = new ResidentalMedium_DensityBlueGreenWest(550).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBlueGreenWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBlueRedEast = new ResidentalMedium_DensityBlueRedEast(551).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBlueRedEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBlueRedNorth = new ResidentalMedium_DensityBlueRedNorth(552).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBlueRedNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBlueRedSouth = new ResidentalMedium_DensityBlueRedSouth(553).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBlueRedSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBlueRedWest = new ResidentalMedium_DensityBlueRedWest(554).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBlueRedWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBrickEast = new ResidentalMedium_DensityBrickEast(555).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBrickEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBrickNorth = new ResidentalMedium_DensityBrickNorth(556).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBrickNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBrickSouth = new ResidentalMedium_DensityBrickSouth(557).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBrickSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityBrickWest = new ResidentalMedium_DensityBrickWest(558).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityBrickWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityHorizontalEast = new ResidentalMedium_DensityHorizontalEast(559).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityHorizontalEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityHorizontalNorth = new ResidentalMedium_DensityHorizontalNorth(560).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityHorizontalNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityHorizontalSouth = new ResidentalMedium_DensityHorizontalSouth(561).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityHorizontalSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityHorizontalWest = new ResidentalMedium_DensityHorizontalWest(562).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityHorizontalWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityOrangeGreenEast = new ResidentalMedium_DensityOrangeGreenEast(563).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityOrangeGreenEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityOrangeGreenNorth = new ResidentalMedium_DensityOrangeGreenNorth(564).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityOrangeGreenNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityOrangeGreenSouth = new ResidentalMedium_DensityOrangeGreenSouth(565).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityOrangeGreenSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityOrangeGreenWest = new ResidentalMedium_DensityOrangeGreenWest(566).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityOrangeGreenWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityQuartzEast = new ResidentalMedium_DensityQuartzEast(567).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityQuartzEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityQuartzNorth = new ResidentalMedium_DensityQuartzNorth(568).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityQuartzNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityQuartzSouth = new ResidentalMedium_DensityQuartzSouth(569).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityQuartzSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityQuartzWest = new ResidentalMedium_DensityQuartzWest(570).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityQuartzWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityRedGreenEast = new ResidentalMedium_DensityRedGreenEast(571).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityRedGreenEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityRedGreenNorth = new ResidentalMedium_DensityRedGreenNorth(572).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityRedGreenNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityRedGreenSouth = new ResidentalMedium_DensityRedGreenSouth(573).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityRedGreenSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityRedGreenWest = new ResidentalMedium_DensityRedGreenWest(574).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityRedGreenWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityRoofEast = new ResidentalMedium_DensityRoofEast(575).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityRoofEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityRoofNorth = new ResidentalMedium_DensityRoofNorth(576).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityRoofNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityRoofSouth = new ResidentalMedium_DensityRoofSouth(577).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityRoofSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityRoofWest = new ResidentalMedium_DensityRoofWest(578).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityRoofWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStone1EastWest = new ResidentalMedium_DensityStone1EastWest(579).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStone1EastWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStone1NorthSouth = new ResidentalMedium_DensityStone1NorthSouth(580).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStone1NorthSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStone2EastWest = new ResidentalMedium_DensityStone2EastWest(581).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStone2EastWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStone2NorthSouth = new ResidentalMedium_DensityStone2NorthSouth(582).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStone2NorthSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneCornerNorthEast = new ResidentalMedium_DensityStoneCornerNorthEast(583).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneCornerNorthEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneCornerNorthWest = new ResidentalMedium_DensityStoneCornerNorthWest(584).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneCornerNorthWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneCornerSouthEast = new ResidentalMedium_DensityStoneCornerSouthEast(585).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneCornerSouthEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneCornerSouthWest = new ResidentalMedium_DensityStoneCornerSouthWest(586).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneCornerSouthWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneEast = new ResidentalMedium_DensityStoneEast(587).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneEndNorthEastWest = new ResidentalMedium_DensityStoneEndNorthEastWest(588).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneEndNorthEastWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneEndNorthSouthEast = new ResidentalMedium_DensityStoneEndNorthSouthEast(589).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneEndNorthSouthEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneEndNorthSouthWest = new ResidentalMedium_DensityStoneEndNorthSouthWest(590).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneEndNorthSouthWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneEndSouthEastWest = new ResidentalMedium_DensityStoneEndSouthEastWest(591).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneEndSouthEastWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneNorth = new ResidentalMedium_DensityStoneNorth(592).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneSouth = new ResidentalMedium_DensityStoneSouth(593).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityStoneWest = new ResidentalMedium_DensityStoneWest(594).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityStoneWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityVerticalEast = new ResidentalMedium_DensityVerticalEast(595).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityVerticalEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityVerticalNorth = new ResidentalMedium_DensityVerticalNorth(596).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityVerticalNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityVerticalSouth = new ResidentalMedium_DensityVerticalSouth(597).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityVerticalSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityVerticalWest = new ResidentalMedium_DensityVerticalWest(598).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityVerticalWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityYellowRedEast = new ResidentalMedium_DensityYellowRedEast(599).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityYellowRedEast").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityYellowRedNorth = new ResidentalMedium_DensityYellowRedNorth(600).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityYellowRedNorth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityYellowRedSouth = new ResidentalMedium_DensityYellowRedSouth(601).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityYellowRedSouth").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ResidentalMedium_DensityYellowRedWest = new ResidentalMedium_DensityYellowRedWest(602).setHardness(1.0F).setUnlocalizedName("ResidentalMedium_DensityYellowRedWest").setCreativeTab(IMSM.ResidentalMedium_Density); - public static Block ShoppingHigh_DensityQuartzEastWest = new ShoppingHigh_DensityQuartzEastWest(603).setHardness(1.0F).setUnlocalizedName("ShoppingHigh_DensityQuartzEastWest").setCreativeTab(IMSM.Shopping); - public static Block ShoppingHigh_DensityQuartzNorthSouth = new ShoppingHigh_DensityQuartzNorthSouth(604).setHardness(1.0F).setUnlocalizedName("ShoppingHigh_DensityQuartzNorthSouth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityBrickEast = new ShoppingLow_DensityBrickEast(605).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityBrickEast").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityBrickNorth = new ShoppingLow_DensityBrickNorth(606).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityBrickNorth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityBrickSouth = new ShoppingLow_DensityBrickSouth(607).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityBrickSouth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityBrickWest = new ShoppingLow_DensityBrickWest(608).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityBrickWest").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityGreenEast = new ShoppingLow_DensityGreenEast(609).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityGreenEast").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityGreenNorth = new ShoppingLow_DensityGreenNorth(610).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityGreenNorth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityGreenSouth = new ShoppingLow_DensityGreenSouth(611).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityGreenSouth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityGreenWest = new ShoppingLow_DensityGreenWest(612).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityGreenWest").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityOrangeEast = new ShoppingLow_DensityOrangeEast(613).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityOrangeEast").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityOrangeNorth = new ShoppingLow_DensityOrangeNorth(614).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityOrangeNorth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityOrangeSouth = new ShoppingLow_DensityOrangeSouth(615).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityOrangeSouth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityOrangeWest = new ShoppingLow_DensityOrangeWest(616).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityOrangeWest").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityPinkEast = new ShoppingLow_DensityPinkEast(617).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityPinkEast").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityPinkNorth = new ShoppingLow_DensityPinkNorth(618).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityPinkNorth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityPinkSouth = new ShoppingLow_DensityPinkSouth(619).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityPinkSouth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingLow_DensityPinkWest = new ShoppingLow_DensityPinkWest(620).setHardness(1.0F).setUnlocalizedName("ShoppingLow_DensityPinkWest").setCreativeTab(IMSM.Shopping); - public static Block ShoppingMedium_DensityModernEast = new ShoppingMedium_DensityModernEast(621).setHardness(1.0F).setUnlocalizedName("ShoppingMedium_DensityModernEast").setCreativeTab(IMSM.Shopping); - public static Block ShoppingMedium_DensityModernNorth = new ShoppingMedium_DensityModernNorth(622).setHardness(1.0F).setUnlocalizedName("ShoppingMedium_DensityModernNorth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingMedium_DensityModernSouth = new ShoppingMedium_DensityModernSouth(623).setHardness(1.0F).setUnlocalizedName("ShoppingMedium_DensityModernSouth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingMedium_DensityModernWest = new ShoppingMedium_DensityModernWest(624).setHardness(1.0F).setUnlocalizedName("ShoppingMedium_DensityModernWest").setCreativeTab(IMSM.Shopping); - public static Block ShoppingMedium_DensityQuartzEast = new ShoppingMedium_DensityQuartzEast(625).setHardness(1.0F).setUnlocalizedName("ShoppingMedium_DensityQuartzEast").setCreativeTab(IMSM.Shopping); - public static Block ShoppingMedium_DensityQuartzNorth = new ShoppingMedium_DensityQuartzNorth(626).setHardness(1.0F).setUnlocalizedName("ShoppingMedium_DensityQuartzNorth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingMedium_DensityQuartzSouth = new ShoppingMedium_DensityQuartzSouth(627).setHardness(1.0F).setUnlocalizedName("ShoppingMedium_DensityQuartzSouth").setCreativeTab(IMSM.Shopping); - public static Block ShoppingMedium_DensityQuartzWest = new ShoppingMedium_DensityQuartzWest(628).setHardness(1.0F).setUnlocalizedName("ShoppingMedium_DensityQuartzWest").setCreativeTab(IMSM.Shopping); - public static Block TransportAirportRunway_EastWestBuilding_North = new TransportAirportRunway_EastWestBuilding_North(629).setHardness(1.0F).setUnlocalizedName("TransportAirportRunway_EastWestBuilding_North").setCreativeTab(IMSM.TransportPublic); - public static Block TransportAirportRunway_EastWestBuilding_South = new TransportAirportRunway_EastWestBuilding_South(630).setHardness(1.0F).setUnlocalizedName("TransportAirportRunway_EastWestBuilding_South").setCreativeTab(IMSM.TransportPublic); - public static Block TransportAirportRunway_NorthSouthBuilding_East = new TransportAirportRunway_NorthSouthBuilding_East(631).setHardness(1.0F).setUnlocalizedName("TransportAirportRunway_NorthSouthBuilding_East").setCreativeTab(IMSM.TransportPublic); - public static Block TransportAirportRunway_NorthSouthBuilding_West = new TransportAirportRunway_NorthSouthBuilding_West(632).setHardness(1.0F).setUnlocalizedName("TransportAirportRunway_NorthSouthBuilding_West").setCreativeTab(IMSM.TransportPublic); - public static Block TransportAvenue1EastWest = new TransportAvenue1EastWest(633).setHardness(1.0F).setUnlocalizedName("TransportAvenue1EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenue1NorthSouth = new TransportAvenue1NorthSouth(634).setHardness(1.0F).setUnlocalizedName("TransportAvenue1NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenue2EastWest = new TransportAvenue2EastWest(635).setHardness(1.0F).setUnlocalizedName("TransportAvenue2EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenue2NorthSouth = new TransportAvenue2NorthSouth(636).setHardness(1.0F).setUnlocalizedName("TransportAvenue2NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueEEast = new TransportAvenueEEast(637).setHardness(1.0F).setUnlocalizedName("TransportAvenueEEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueENorth = new TransportAvenueENorth(638).setHardness(1.0F).setUnlocalizedName("TransportAvenueENorth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueESouth = new TransportAvenueESouth(639).setHardness(1.0F).setUnlocalizedName("TransportAvenueESouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueEWest = new TransportAvenueEWest(640).setHardness(1.0F).setUnlocalizedName("TransportAvenueEWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueLNorthEast = new TransportAvenueLNorthEast(641).setHardness(1.0F).setUnlocalizedName("TransportAvenueLNorthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueLNorthWest = new TransportAvenueLNorthWest(642).setHardness(1.0F).setUnlocalizedName("TransportAvenueLNorthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueLSouthEast = new TransportAvenueLSouthEast(643).setHardness(1.0F).setUnlocalizedName("TransportAvenueLSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueLSouthWest = new TransportAvenueLSouthWest(644).setHardness(1.0F).setUnlocalizedName("TransportAvenueLSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueTNorthEastWest = new TransportAvenueTNorthEastWest(645).setHardness(1.0F).setUnlocalizedName("TransportAvenueTNorthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueTNorthSouthEast = new TransportAvenueTNorthSouthEast(646).setHardness(1.0F).setUnlocalizedName("TransportAvenueTNorthSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueTNorthSouthWest = new TransportAvenueTNorthSouthWest(647).setHardness(1.0F).setUnlocalizedName("TransportAvenueTNorthSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueTSouthEastWest = new TransportAvenueTSouthEastWest(648).setHardness(1.0F).setUnlocalizedName("TransportAvenueTSouthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportAvenueXNorthSouthEastWest = new TransportAvenueXNorthSouthEastWest(649).setHardness(1.0F).setUnlocalizedName("TransportAvenueXNorthSouthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenue1EastWest = new TransportBridgeAvenue1EastWest(650).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenue1EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenue1NorthSouth = new TransportBridgeAvenue1NorthSouth(651).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenue1NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenue2NorthSouth = new TransportBridgeAvenue2NorthSouth(652).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenue2NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenue2SouthWest = new TransportBridgeAvenue2SouthWest(653).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenue2SouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenue3EastWest = new TransportBridgeAvenue3EastWest(654).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenue3EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenue3NorthSouth = new TransportBridgeAvenue3NorthSouth(655).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenue3NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenue4EastWest = new TransportBridgeAvenue4EastWest(656).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenue4EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenue4NorthSouth = new TransportBridgeAvenue4NorthSouth(657).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenue4NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenueLNorthEast = new TransportBridgeAvenueLNorthEast(658).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenueLNorthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenueLNorthWest = new TransportBridgeAvenueLNorthWest(659).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenueLNorthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenueLSouthEast = new TransportBridgeAvenueLSouthEast(660).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenueLSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeAvenueLSouthWest = new TransportBridgeAvenueLSouthWest(661).setHardness(1.0F).setUnlocalizedName("TransportBridgeAvenueLSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighway1EastWest = new TransportBridgeHighway1EastWest(662).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighway1EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighway1NorthSouth = new TransportBridgeHighway1NorthSouth(663).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighway1NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighway2EastWest = new TransportBridgeHighway2EastWest(664).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighway2EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighway2NorthSouth = new TransportBridgeHighway2NorthSouth(665).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighway2NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighway3EastWest = new TransportBridgeHighway3EastWest(666).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighway3EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighway3NorthSouth = new TransportBridgeHighway3NorthSouth(667).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighway3NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighway4EastWest = new TransportBridgeHighway4EastWest(668).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighway4EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighway4NorthSouth = new TransportBridgeHighway4NorthSouth(669).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighway4NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighwayLNorthEast = new TransportBridgeHighwayLNorthEast(670).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighwayLNorthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighwayLNorthWest = new TransportBridgeHighwayLNorthWest(671).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighwayLNorthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighwayLSouthEast = new TransportBridgeHighwayLSouthEast(672).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighwayLSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeHighwayLSouthWest = new TransportBridgeHighwayLSouthWest(673).setHardness(1.0F).setUnlocalizedName("TransportBridgeHighwayLSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeRoad1EastWest = new TransportBridgeRoad1EastWest(674).setHardness(1.0F).setUnlocalizedName("TransportBridgeRoad1EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeRoad1NorthSouth = new TransportBridgeRoad1NorthSouth(675).setHardness(1.0F).setUnlocalizedName("TransportBridgeRoad1NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeRoad2EastWest = new TransportBridgeRoad2EastWest(676).setHardness(1.0F).setUnlocalizedName("TransportBridgeRoad2EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeRoad2NorthSouth = new TransportBridgeRoad2NorthSouth(677).setHardness(1.0F).setUnlocalizedName("TransportBridgeRoad2NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeRoadLNorthEast = new TransportBridgeRoadLNorthEast(678).setHardness(1.0F).setUnlocalizedName("TransportBridgeRoadLNorthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeRoadLNorthWest = new TransportBridgeRoadLNorthWest(679).setHardness(1.0F).setUnlocalizedName("TransportBridgeRoadLNorthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeRoadLSouthEast = new TransportBridgeRoadLSouthEast(680).setHardness(1.0F).setUnlocalizedName("TransportBridgeRoadLSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeRoadLSouthWest = new TransportBridgeRoadLSouthWest(681).setHardness(1.0F).setUnlocalizedName("TransportBridgeRoadLSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeStreet1EastWest = new TransportBridgeStreet1EastWest(682).setHardness(1.0F).setUnlocalizedName("TransportBridgeStreet1EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeStreet1NorthSouth = new TransportBridgeStreet1NorthSouth(683).setHardness(1.0F).setUnlocalizedName("TransportBridgeStreet1NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeStreet2EastWest = new TransportBridgeStreet2EastWest(684).setHardness(1.0F).setUnlocalizedName("TransportBridgeStreet2EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeStreet2NorthSouth = new TransportBridgeStreet2NorthSouth(685).setHardness(1.0F).setUnlocalizedName("TransportBridgeStreet2NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeStreetLNorthEast = new TransportBridgeStreetLNorthEast(686).setHardness(1.0F).setUnlocalizedName("TransportBridgeStreetLNorthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeStreetLNorthWest = new TransportBridgeStreetLNorthWest(687).setHardness(1.0F).setUnlocalizedName("TransportBridgeStreetLNorthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeStreetLSouthEast = new TransportBridgeStreetLSouthEast(688).setHardness(1.0F).setUnlocalizedName("TransportBridgeStreetLSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportBridgeStreetLSouthWest = new TransportBridgeStreetLSouthWest(689).setHardness(1.0F).setUnlocalizedName("TransportBridgeStreetLSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside = new TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside(690).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside = new TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside(691).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside = new TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside(692).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside = new TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside(693).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside = new TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside(694).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside = new TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside(695).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside = new TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside(696).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside = new TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside(697).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetLAvenue_EastStreet_North = new TransportConnectorAvenue_StreetLAvenue_EastStreet_North(698).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetLAvenue_EastStreet_North").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetLAvenue_EastStreet_South = new TransportConnectorAvenue_StreetLAvenue_EastStreet_South(699).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetLAvenue_EastStreet_South").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetLAvenue_NorthStreet_East = new TransportConnectorAvenue_StreetLAvenue_NorthStreet_East(700).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetLAvenue_NorthStreet_East").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetLAvenue_NorthStreet_West = new TransportConnectorAvenue_StreetLAvenue_NorthStreet_West(701).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetLAvenue_NorthStreet_West").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetLAvenue_SouthStreet_East = new TransportConnectorAvenue_StreetLAvenue_SouthStreet_East(702).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetLAvenue_SouthStreet_East").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetLAvenue_SouthStreet_West = new TransportConnectorAvenue_StreetLAvenue_SouthStreet_West(703).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetLAvenue_SouthStreet_West").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetLAvenue_WestStreet_North = new TransportConnectorAvenue_StreetLAvenue_WestStreet_North(704).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetLAvenue_WestStreet_North").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetLAvenue_WestStreet_South = new TransportConnectorAvenue_StreetLAvenue_WestStreet_South(705).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetLAvenue_WestStreet_South").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth = new TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth(706).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North = new TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North(707).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South = new TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South(708).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East = new TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East(709).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West = new TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West(710).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest = new TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest(711).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest = new TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest(712).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth = new TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth(713).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth = new TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth(714).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest = new TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest(715).setHardness(1.0F).setUnlocalizedName("TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_AvenueBridge_EastAvenue_West = new TransportConnectorBridge_AvenueBridge_EastAvenue_West(716).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_AvenueBridge_EastAvenue_West").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_AvenueBridge_NorthAvenue_South = new TransportConnectorBridge_AvenueBridge_NorthAvenue_South(717).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_AvenueBridge_NorthAvenue_South").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_AvenueBridge_SouthAvenue_North = new TransportConnectorBridge_AvenueBridge_SouthAvenue_North(718).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_AvenueBridge_SouthAvenue_North").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_AvenueBridge_WestAvenue_East = new TransportConnectorBridge_AvenueBridge_WestAvenue_East(719).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_AvenueBridge_WestAvenue_East").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_RoadBridge_EastRoad_West = new TransportConnectorBridge_RoadBridge_EastRoad_West(720).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_RoadBridge_EastRoad_West").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_RoadBridge_NorthRoad_South = new TransportConnectorBridge_RoadBridge_NorthRoad_South(721).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_RoadBridge_NorthRoad_South").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_RoadBridge_SouthRoad_North = new TransportConnectorBridge_RoadBridge_SouthRoad_North(722).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_RoadBridge_SouthRoad_North").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_RoadBridge_WestRoad_East = new TransportConnectorBridge_RoadBridge_WestRoad_East(723).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_RoadBridge_WestRoad_East").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_StreetBridge_EastStreet_West = new TransportConnectorBridge_StreetBridge_EastStreet_West(724).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_StreetBridge_EastStreet_West").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_StreetBridge_NorthStreet_South = new TransportConnectorBridge_StreetBridge_NorthStreet_South(725).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_StreetBridge_NorthStreet_South").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_StreetBridge_SouthStreet_North = new TransportConnectorBridge_StreetBridge_SouthStreet_North(726).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_StreetBridge_SouthStreet_North").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorBridge_StreetBridge_WestStreet_East = new TransportConnectorBridge_StreetBridge_WestStreet_East(727).setHardness(1.0F).setUnlocalizedName("TransportConnectorBridge_StreetBridge_WestStreet_East").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighway_AvenueHighway_EastAvenue_West = new TransportConnectorHighway_AvenueHighway_EastAvenue_West(728).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighway_AvenueHighway_EastAvenue_West").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighway_AvenueHighway_NorthAvenue_South = new TransportConnectorHighway_AvenueHighway_NorthAvenue_South(729).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighway_AvenueHighway_NorthAvenue_South").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighway_AvenueHighway_SouthAvenue_North = new TransportConnectorHighway_AvenueHighway_SouthAvenue_North(730).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighway_AvenueHighway_SouthAvenue_North").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighway_AvenueHighway_WestAvenue_East = new TransportConnectorHighway_AvenueHighway_WestAvenue_East(731).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighway_AvenueHighway_WestAvenue_East").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West = new TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West(732).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South = new TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South(733).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North = new TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North(734).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East = new TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East(735).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West = new TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West(736).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South = new TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South(737).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North = new TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North(738).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North").setCreativeTab(IMSM.TransportRoads); - public static Block TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East = new TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East(739).setHardness(1.0F).setUnlocalizedName("TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHarbourBigEast = new TransportHarbourBigEast(740).setHardness(1.0F).setUnlocalizedName("TransportHarbourBigEast").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourBigNorth = new TransportHarbourBigNorth(741).setHardness(1.0F).setUnlocalizedName("TransportHarbourBigNorth").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourBigSouth = new TransportHarbourBigSouth(742).setHardness(1.0F).setUnlocalizedName("TransportHarbourBigSouth").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourBigWest = new TransportHarbourBigWest(743).setHardness(1.0F).setUnlocalizedName("TransportHarbourBigWest").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide1CornerNorthEast = new TransportHarbourSide1CornerNorthEast(744).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide1CornerNorthEast").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide1CornerNorthWest = new TransportHarbourSide1CornerNorthWest(745).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide1CornerNorthWest").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide1CornerSouthEast = new TransportHarbourSide1CornerSouthEast(746).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide1CornerSouthEast").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide1CornerSouthWest = new TransportHarbourSide1CornerSouthWest(747).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide1CornerSouthWest").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide2CornerCraneEast = new TransportHarbourSide2CornerCraneEast(748).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide2CornerCraneEast").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide2CornerCraneNorth = new TransportHarbourSide2CornerCraneNorth(749).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide2CornerCraneNorth").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide2CornerCraneSouth = new TransportHarbourSide2CornerCraneSouth(750).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide2CornerCraneSouth").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide2CornerCraneWest = new TransportHarbourSide2CornerCraneWest(751).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide2CornerCraneWest").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide2CornerEast = new TransportHarbourSide2CornerEast(752).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide2CornerEast").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide2CornerNorth = new TransportHarbourSide2CornerNorth(753).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide2CornerNorth").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide2CornerSouth = new TransportHarbourSide2CornerSouth(754).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide2CornerSouth").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide2CornerWest = new TransportHarbourSide2CornerWest(755).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide2CornerWest").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast = new TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast(756).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest = new TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest(757).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest = new TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest(758).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest = new TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest(759).setHardness(1.0F).setUnlocalizedName("TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSmallEast = new TransportHarbourSmallEast(760).setHardness(1.0F).setUnlocalizedName("TransportHarbourSmallEast").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSmallNorth = new TransportHarbourSmallNorth(761).setHardness(1.0F).setUnlocalizedName("TransportHarbourSmallNorth").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSmallSouth = new TransportHarbourSmallSouth(762).setHardness(1.0F).setUnlocalizedName("TransportHarbourSmallSouth").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHarbourSmallWest = new TransportHarbourSmallWest(763).setHardness(1.0F).setUnlocalizedName("TransportHarbourSmallWest").setCreativeTab(IMSM.TransportHarbour); - public static Block TransportHighway05EastWestNorthside = new TransportHighway05EastWestNorthside(764).setHardness(1.0F).setUnlocalizedName("TransportHighway05EastWestNorthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighway05EastWestSouthside = new TransportHighway05EastWestSouthside(765).setHardness(1.0F).setUnlocalizedName("TransportHighway05EastWestSouthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighway05NorthSouthEastside = new TransportHighway05NorthSouthEastside(766).setHardness(1.0F).setUnlocalizedName("TransportHighway05NorthSouthEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighway05NorthSouthWestside = new TransportHighway05NorthSouthWestside(767).setHardness(1.0F).setUnlocalizedName("TransportHighway05NorthSouthWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighway1EastWest = new TransportHighway1EastWest(768).setHardness(1.0F).setUnlocalizedName("TransportHighway1EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighway1NorthSouth = new TransportHighway1NorthSouth(769).setHardness(1.0F).setUnlocalizedName("TransportHighway1NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighway2EastWest = new TransportHighway2EastWest(770).setHardness(1.0F).setUnlocalizedName("TransportHighway2EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighway2NorthSouth = new TransportHighway2NorthSouth(771).setHardness(1.0F).setUnlocalizedName("TransportHighway2NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayDrivewayEastWestEastside = new TransportHighwayDrivewayEastWestEastside(772).setHardness(1.0F).setUnlocalizedName("TransportHighwayDrivewayEastWestEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayDrivewayEastWestWestside = new TransportHighwayDrivewayEastWestWestside(773).setHardness(1.0F).setUnlocalizedName("TransportHighwayDrivewayEastWestWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayDrivewayExitEastWestEastside = new TransportHighwayDrivewayExitEastWestEastside(774).setHardness(1.0F).setUnlocalizedName("TransportHighwayDrivewayExitEastWestEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayDrivewayExitEastWestWestside = new TransportHighwayDrivewayExitEastWestWestside(775).setHardness(1.0F).setUnlocalizedName("TransportHighwayDrivewayExitEastWestWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayDrivewayExitNorthSouthNorthside = new TransportHighwayDrivewayExitNorthSouthNorthside(776).setHardness(1.0F).setUnlocalizedName("TransportHighwayDrivewayExitNorthSouthNorthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayDrivewayExitNorthSouthSouthside = new TransportHighwayDrivewayExitNorthSouthSouthside(777).setHardness(1.0F).setUnlocalizedName("TransportHighwayDrivewayExitNorthSouthSouthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayDrivewayNorthSouthNorthside = new TransportHighwayDrivewayNorthSouthNorthside(778).setHardness(1.0F).setUnlocalizedName("TransportHighwayDrivewayNorthSouthNorthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayDrivewayNorthSouthSouthside = new TransportHighwayDrivewayNorthSouthSouthside(779).setHardness(1.0F).setUnlocalizedName("TransportHighwayDrivewayNorthSouthSouthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayExitEastWestEastside = new TransportHighwayExitEastWestEastside(780).setHardness(1.0F).setUnlocalizedName("TransportHighwayExitEastWestEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayExitEastWestWestside = new TransportHighwayExitEastWestWestside(781).setHardness(1.0F).setUnlocalizedName("TransportHighwayExitEastWestWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayExitNorthSouthNorthside = new TransportHighwayExitNorthSouthNorthside(782).setHardness(1.0F).setUnlocalizedName("TransportHighwayExitNorthSouthNorthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayExitNorthSouthSouthside = new TransportHighwayExitNorthSouthSouthside(783).setHardness(1.0F).setUnlocalizedName("TransportHighwayExitNorthSouthSouthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloor05EastWestNorthside = new TransportHighwayFloor05EastWestNorthside(784).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloor05EastWestNorthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloor05EastWestSouthside = new TransportHighwayFloor05EastWestSouthside(785).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloor05EastWestSouthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloor05NorthSouthEastside = new TransportHighwayFloor05NorthSouthEastside(786).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloor05NorthSouthEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloor05NorthSouthWestside = new TransportHighwayFloor05NorthSouthWestside(787).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloor05NorthSouthWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloor1EastWest = new TransportHighwayFloor1EastWest(788).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloor1EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloor1NorthSouth = new TransportHighwayFloor1NorthSouth(789).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloor1NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloor2EastWest = new TransportHighwayFloor2EastWest(790).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloor2EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloor2NorthSouth = new TransportHighwayFloor2NorthSouth(791).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloor2NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorDrivewayEastWestEastside = new TransportHighwayFloorDrivewayEastWestEastside(792).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorDrivewayEastWestEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorDrivewayEastWestWestside = new TransportHighwayFloorDrivewayEastWestWestside(793).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorDrivewayEastWestWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorDrivewayExitEastWestEastside = new TransportHighwayFloorDrivewayExitEastWestEastside(794).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorDrivewayExitEastWestEastside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorDrivewayExitEastWestWestside = new TransportHighwayFloorDrivewayExitEastWestWestside(795).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorDrivewayExitEastWestWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorDrivewayExitNorthSouthNorthside = new TransportHighwayFloorDrivewayExitNorthSouthNorthside(796).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorDrivewayExitNorthSouthNorthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorDrivewayExitNorthSouthSouthside = new TransportHighwayFloorDrivewayExitNorthSouthSouthside(797).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorDrivewayExitNorthSouthSouthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorDrivewayNorthSouthNorthside = new TransportHighwayFloorDrivewayNorthSouthNorthside(798).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorDrivewayNorthSouthNorthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorDrivewayNorthSouthSouthside = new TransportHighwayFloorDrivewayNorthSouthSouthside(799).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorDrivewayNorthSouthSouthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorExitEastWestEast = new TransportHighwayFloorExitEastWestEast(800).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorExitEastWestEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorExitEastWestWestside = new TransportHighwayFloorExitEastWestWestside(801).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorExitEastWestWestside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorExitNorthSouthNorthside = new TransportHighwayFloorExitNorthSouthNorthside(802).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorExitNorthSouthNorthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorExitNorthSouthSouthside = new TransportHighwayFloorExitNorthSouthSouthside(803).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorExitNorthSouthSouthside").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorLNorthEast = new TransportHighwayFloorLNorthEast(804).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorLNorthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorLNorthWest = new TransportHighwayFloorLNorthWest(805).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorLNorthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorLSouthEast = new TransportHighwayFloorLSouthEast(806).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorLSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorLSouthWest = new TransportHighwayFloorLSouthWest(807).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorLSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorTNorthEastWest = new TransportHighwayFloorTNorthEastWest(808).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorTNorthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorTNorthSouthEast = new TransportHighwayFloorTNorthSouthEast(809).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorTNorthSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorTNorthSouthWest = new TransportHighwayFloorTNorthSouthWest(810).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorTNorthSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorTSouthEastWest = new TransportHighwayFloorTSouthEastWest(811).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorTSouthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayFloorXNorthEastSouthWest = new TransportHighwayFloorXNorthEastSouthWest(812).setHardness(1.0F).setUnlocalizedName("TransportHighwayFloorXNorthEastSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayLNorthEast = new TransportHighwayLNorthEast(813).setHardness(1.0F).setUnlocalizedName("TransportHighwayLNorthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayLNorthWest = new TransportHighwayLNorthWest(814).setHardness(1.0F).setUnlocalizedName("TransportHighwayLNorthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayLSouthEast = new TransportHighwayLSouthEast(815).setHardness(1.0F).setUnlocalizedName("TransportHighwayLSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayLSouthWest = new TransportHighwayLSouthWest(816).setHardness(1.0F).setUnlocalizedName("TransportHighwayLSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayTNorthEastWest = new TransportHighwayTNorthEastWest(817).setHardness(1.0F).setUnlocalizedName("TransportHighwayTNorthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayTNorthSouthEast = new TransportHighwayTNorthSouthEast(818).setHardness(1.0F).setUnlocalizedName("TransportHighwayTNorthSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayTNorthSouthWest = new TransportHighwayTNorthSouthWest(819).setHardness(1.0F).setUnlocalizedName("TransportHighwayTNorthSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayTSouthEastWest = new TransportHighwayTSouthEastWest(820).setHardness(1.0F).setUnlocalizedName("TransportHighwayTSouthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportHighwayXNorthEastSouthWest = new TransportHighwayXNorthEastSouthWest(821).setHardness(1.0F).setUnlocalizedName("TransportHighwayXNorthEastSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportPublicConnectorHightram_TramHightram_EastTram_West = new TransportPublicConnectorHightram_TramHightram_EastTram_West(822).setHardness(1.0F).setUnlocalizedName("TransportPublicConnectorHightram_TramHightram_EastTram_West").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicConnectorHightram_TramHightram_NorthTram_South = new TransportPublicConnectorHightram_TramHightram_NorthTram_South(823).setHardness(1.0F).setUnlocalizedName("TransportPublicConnectorHightram_TramHightram_NorthTram_South").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicConnectorHightram_TramHightram_SouthTram_North = new TransportPublicConnectorHightram_TramHightram_SouthTram_North(824).setHardness(1.0F).setUnlocalizedName("TransportPublicConnectorHightram_TramHightram_SouthTram_North").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicConnectorHightram_TramHightram_WestTram_East = new TransportPublicConnectorHightram_TramHightram_WestTram_East(825).setHardness(1.0F).setUnlocalizedName("TransportPublicConnectorHightram_TramHightram_WestTram_East").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightram1EastWest = new TransportPublicHightram1EastWest(826).setHardness(1.0F).setUnlocalizedName("TransportPublicHightram1EastWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightram1NorthSouth = new TransportPublicHightram1NorthSouth(827).setHardness(1.0F).setUnlocalizedName("TransportPublicHightram1NorthSouth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramEEast = new TransportPublicHightramEEast(828).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramEEast").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramENorth = new TransportPublicHightramENorth(829).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramENorth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramESouth = new TransportPublicHightramESouth(830).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramESouth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramEWest = new TransportPublicHightramEWest(831).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramEWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramLNorthEast = new TransportPublicHightramLNorthEast(832).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramLNorthEast").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramLNorthWest = new TransportPublicHightramLNorthWest(833).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramLNorthWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramLSouthEast = new TransportPublicHightramLSouthEast(834).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramLSouthEast").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramLSouthWest = new TransportPublicHightramLSouthWest(835).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramLSouthWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramStationEastWest = new TransportPublicHightramStationEastWest(836).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramStationEastWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramStationNorthSouth = new TransportPublicHightramStationNorthSouth(837).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramStationNorthSouth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicHightramXNorthEastSouthWest = new TransportPublicHightramXNorthEastSouthWest(838).setHardness(1.0F).setUnlocalizedName("TransportPublicHightramXNorthEastSouthWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram1EastWest = new TransportPublicTram1EastWest(839).setHardness(1.0F).setUnlocalizedName("TransportPublicTram1EastWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram1NorthSouth = new TransportPublicTram1NorthSouth(840).setHardness(1.0F).setUnlocalizedName("TransportPublicTram1NorthSouth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramEEast = new TransportPublicTramEEast(841).setHardness(1.0F).setUnlocalizedName("TransportPublicTramEEast").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramENorth = new TransportPublicTramENorth(842).setHardness(1.0F).setUnlocalizedName("TransportPublicTramENorth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramESouth = new TransportPublicTramESouth(843).setHardness(1.0F).setUnlocalizedName("TransportPublicTramESouth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramEWest = new TransportPublicTramEWest(844).setHardness(1.0F).setUnlocalizedName("TransportPublicTramEWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramLNorthEast = new TransportPublicTramLNorthEast(845).setHardness(1.0F).setUnlocalizedName("TransportPublicTramLNorthEast").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramLNorthWest = new TransportPublicTramLNorthWest(846).setHardness(1.0F).setUnlocalizedName("TransportPublicTramLNorthWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramLSouthEast = new TransportPublicTramLSouthEast(847).setHardness(1.0F).setUnlocalizedName("TransportPublicTramLSouthEast").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramLSouthWest = new TransportPublicTramLSouthWest(848).setHardness(1.0F).setUnlocalizedName("TransportPublicTramLSouthWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram_on_road1EastWest = new TransportPublicTram_on_road1EastWest(849).setHardness(1.0F).setUnlocalizedName("TransportPublicTram_on_road1EastWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram_on_road1NorthSouth = new TransportPublicTram_on_road1NorthSouth(850).setHardness(1.0F).setUnlocalizedName("TransportPublicTram_on_road1NorthSouth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram_on_roadEEast = new TransportPublicTram_on_roadEEast(851).setHardness(1.0F).setUnlocalizedName("TransportPublicTram_on_roadEEast").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram_on_roadENorth = new TransportPublicTram_on_roadENorth(852).setHardness(1.0F).setUnlocalizedName("TransportPublicTram_on_roadENorth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram_on_roadESouth = new TransportPublicTram_on_roadESouth(853).setHardness(1.0F).setUnlocalizedName("TransportPublicTram_on_roadESouth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram_on_roadEWest = new TransportPublicTram_on_roadEWest(854).setHardness(1.0F).setUnlocalizedName("TransportPublicTram_on_roadEWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram_on_roadLNorthEast = new TransportPublicTram_on_roadLNorthEast(855).setHardness(1.0F).setUnlocalizedName("TransportPublicTram_on_roadLNorthEast").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram_on_roadLNorthWest = new TransportPublicTram_on_roadLNorthWest(856).setHardness(1.0F).setUnlocalizedName("TransportPublicTram_on_roadLNorthWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram_on_roadLSouthEast = new TransportPublicTram_on_roadLSouthEast(857).setHardness(1.0F).setUnlocalizedName("TransportPublicTram_on_roadLSouthEast").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTram_on_roadLSouthWest = new TransportPublicTram_on_roadLSouthWest(858).setHardness(1.0F).setUnlocalizedName("TransportPublicTram_on_roadLSouthWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramStationEastWest = new TransportPublicTramStationEastWest(859).setHardness(1.0F).setUnlocalizedName("TransportPublicTramStationEastWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramStationNorthSouth = new TransportPublicTramStationNorthSouth(860).setHardness(1.0F).setUnlocalizedName("TransportPublicTramStationNorthSouth").setCreativeTab(IMSM.TransportPublic); - public static Block TransportPublicTramXNorthEastSouthWest = new TransportPublicTramXNorthEastSouthWest(861).setHardness(1.0F).setUnlocalizedName("TransportPublicTramXNorthEastSouthWest").setCreativeTab(IMSM.TransportPublic); - public static Block TransportRoad1EastWest = new TransportRoad1EastWest(862).setHardness(1.0F).setUnlocalizedName("TransportRoad1EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoad1NorthSouth = new TransportRoad1NorthSouth(863).setHardness(1.0F).setUnlocalizedName("TransportRoad1NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadEEast = new TransportRoadEEast(864).setHardness(1.0F).setUnlocalizedName("TransportRoadEEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadENorth = new TransportRoadENorth(865).setHardness(1.0F).setUnlocalizedName("TransportRoadENorth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadESouth = new TransportRoadESouth(866).setHardness(1.0F).setUnlocalizedName("TransportRoadESouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadEWest = new TransportRoadEWest(867).setHardness(1.0F).setUnlocalizedName("TransportRoadEWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadLNorthEast = new TransportRoadLNorthEast(868).setHardness(1.0F).setUnlocalizedName("TransportRoadLNorthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadLNorthWest = new TransportRoadLNorthWest(869).setHardness(1.0F).setUnlocalizedName("TransportRoadLNorthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadLSouthEast = new TransportRoadLSouthEast(870).setHardness(1.0F).setUnlocalizedName("TransportRoadLSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadLSouthWest = new TransportRoadLSouthWest(871).setHardness(1.0F).setUnlocalizedName("TransportRoadLSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadTNorthEastWest = new TransportRoadTNorthEastWest(872).setHardness(1.0F).setUnlocalizedName("TransportRoadTNorthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadTNorthSouthEast = new TransportRoadTNorthSouthEast(873).setHardness(1.0F).setUnlocalizedName("TransportRoadTNorthSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadTNorthSouthWest = new TransportRoadTNorthSouthWest(874).setHardness(1.0F).setUnlocalizedName("TransportRoadTNorthSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadTSouthEastWest = new TransportRoadTSouthEastWest(875).setHardness(1.0F).setUnlocalizedName("TransportRoadTSouthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportRoadXNorthEastSouthWest = new TransportRoadXNorthEastSouthWest(876).setHardness(1.0F).setUnlocalizedName("TransportRoadXNorthEastSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreet1EastWest = new TransportStreet1EastWest(877).setHardness(1.0F).setUnlocalizedName("TransportStreet1EastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreet1NorthSouth = new TransportStreet1NorthSouth(878).setHardness(1.0F).setUnlocalizedName("TransportStreet1NorthSouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetEEast = new TransportStreetEEast(879).setHardness(1.0F).setUnlocalizedName("TransportStreetEEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetENorth = new TransportStreetENorth(880).setHardness(1.0F).setUnlocalizedName("TransportStreetENorth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetESouth = new TransportStreetESouth(881).setHardness(1.0F).setUnlocalizedName("TransportStreetESouth").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetEWest = new TransportStreetEWest(882).setHardness(1.0F).setUnlocalizedName("TransportStreetEWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetLNorthEast = new TransportStreetLNorthEast(883).setHardness(1.0F).setUnlocalizedName("TransportStreetLNorthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetLNorthWest = new TransportStreetLNorthWest(884).setHardness(1.0F).setUnlocalizedName("TransportStreetLNorthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetLSouthEast = new TransportStreetLSouthEast(885).setHardness(1.0F).setUnlocalizedName("TransportStreetLSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetLSouthWest = new TransportStreetLSouthWest(886).setHardness(1.0F).setUnlocalizedName("TransportStreetLSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetRoundaboutNorthEastSouthWest = new TransportStreetRoundaboutNorthEastSouthWest(887).setHardness(1.0F).setUnlocalizedName("TransportStreetRoundaboutNorthEastSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetTNorthEastWest = new TransportStreetTNorthEastWest(888).setHardness(1.0F).setUnlocalizedName("TransportStreetTNorthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetTNorthSouthEast = new TransportStreetTNorthSouthEast(889).setHardness(1.0F).setUnlocalizedName("TransportStreetTNorthSouthEast").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetTNorthSouthWest = new TransportStreetTNorthSouthWest(890).setHardness(1.0F).setUnlocalizedName("TransportStreetTNorthSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetTSouthEastWest = new TransportStreetTSouthEastWest(891).setHardness(1.0F).setUnlocalizedName("TransportStreetTSouthEastWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportStreetXNorthEastSouthWest = new TransportStreetXNorthEastSouthWest(892).setHardness(1.0F).setUnlocalizedName("TransportStreetXNorthEastSouthWest").setCreativeTab(IMSM.TransportRoads); - public static Block TransportWater1CornerNorthEast = new TransportWater1CornerNorthEast(893).setHardness(1.0F).setUnlocalizedName("TransportWater1CornerNorthEast").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater1CornerNorthWest = new TransportWater1CornerNorthWest(894).setHardness(1.0F).setUnlocalizedName("TransportWater1CornerNorthWest").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater1CornerSouthEast = new TransportWater1CornerSouthEast(895).setHardness(1.0F).setUnlocalizedName("TransportWater1CornerSouthEast").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater1CornerSouthWest = new TransportWater1CornerSouthWest(896).setHardness(1.0F).setUnlocalizedName("TransportWater1CornerSouthWest").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater2CornerEast = new TransportWater2CornerEast(897).setHardness(1.0F).setUnlocalizedName("TransportWater2CornerEast").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater2CornerNorth = new TransportWater2CornerNorth(898).setHardness(1.0F).setUnlocalizedName("TransportWater2CornerNorth").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater2CornerSouth = new TransportWater2CornerSouth(899).setHardness(1.0F).setUnlocalizedName("TransportWater2CornerSouth").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater2CornerWest = new TransportWater2CornerWest(900).setHardness(1.0F).setUnlocalizedName("TransportWater2CornerWest").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater3CornerNorthEast_NorthWest_SouthEast = new TransportWater3CornerNorthEast_NorthWest_SouthEast(901).setHardness(1.0F).setUnlocalizedName("TransportWater3CornerNorthEast_NorthWest_SouthEast").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater3CornerNorthEast_NorthWest_SouthWest = new TransportWater3CornerNorthEast_NorthWest_SouthWest(902).setHardness(1.0F).setUnlocalizedName("TransportWater3CornerNorthEast_NorthWest_SouthWest").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater3CornerSouthEast_SouthWest_NorthEast = new TransportWater3CornerSouthEast_SouthWest_NorthEast(903).setHardness(1.0F).setUnlocalizedName("TransportWater3CornerSouthEast_SouthWest_NorthEast").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater3CornerSouthEast_SouthWest_NorthWest = new TransportWater3CornerSouthEast_SouthWest_NorthWest(904).setHardness(1.0F).setUnlocalizedName("TransportWater3CornerSouthEast_SouthWest_NorthWest").setCreativeTab(IMSM.TransportWater); - public static Block TransportWater4CornerNorthSouthEastWest = new TransportWater4CornerNorthSouthEastWest(905).setHardness(1.0F).setUnlocalizedName("TransportWater4CornerNorthSouthEastWest").setCreativeTab(IMSM.TransportWater); - public static Block UtilityPower_NuclearEast = new UtilityPower_NuclearEast(906).setHardness(1.0F).setUnlocalizedName("UtilityPower_NuclearEast").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_NuclearNorth = new UtilityPower_NuclearNorth(907).setHardness(1.0F).setUnlocalizedName("UtilityPower_NuclearNorth").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_NuclearSouth = new UtilityPower_NuclearSouth(908).setHardness(1.0F).setUnlocalizedName("UtilityPower_NuclearSouth").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_NuclearWest = new UtilityPower_NuclearWest(909).setHardness(1.0F).setUnlocalizedName("UtilityPower_NuclearWest").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_OilCoalEast = new UtilityPower_OilCoalEast(910).setHardness(1.0F).setUnlocalizedName("UtilityPower_OilCoalEast").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_OilCoalNorth = new UtilityPower_OilCoalNorth(911).setHardness(1.0F).setUnlocalizedName("UtilityPower_OilCoalNorth").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_OilCoalSouth = new UtilityPower_OilCoalSouth(912).setHardness(1.0F).setUnlocalizedName("UtilityPower_OilCoalSouth").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_OilCoalWest = new UtilityPower_OilCoalWest(913).setHardness(1.0F).setUnlocalizedName("UtilityPower_OilCoalWest").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_SunNorthEastSouthWest = new UtilityPower_SunNorthEastSouthWest(914).setHardness(1.0F).setUnlocalizedName("UtilityPower_SunNorthEastSouthWest").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_WindEast = new UtilityPower_WindEast(915).setHardness(1.0F).setUnlocalizedName("UtilityPower_WindEast").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_WindNorth = new UtilityPower_WindNorth(916).setHardness(1.0F).setUnlocalizedName("UtilityPower_WindNorth").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_WindSouth = new UtilityPower_WindSouth(917).setHardness(1.0F).setUnlocalizedName("UtilityPower_WindSouth").setCreativeTab(IMSM.Utility); - public static Block UtilityPower_WindWest = new UtilityPower_WindWest(918).setHardness(1.0F).setUnlocalizedName("UtilityPower_WindWest").setCreativeTab(IMSM.Utility); - public static Block UtilityPumpjackEastWest = new UtilityPumpjackEastWest(919).setHardness(1.0F).setUnlocalizedName("UtilityPumpjackEastWest").setCreativeTab(IMSM.Utility); - public static Block UtilityPumpjackNorthSouth = new UtilityPumpjackNorthSouth(920).setHardness(1.0F).setUnlocalizedName("UtilityPumpjackNorthSouth").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_BurningEast = new UtilityScrap_BurningEast(921).setHardness(1.0F).setUnlocalizedName("UtilityScrap_BurningEast").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_BurningNorth = new UtilityScrap_BurningNorth(922).setHardness(1.0F).setUnlocalizedName("UtilityScrap_BurningNorth").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_BurningSouth = new UtilityScrap_BurningSouth(923).setHardness(1.0F).setUnlocalizedName("UtilityScrap_BurningSouth").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_BurningWest = new UtilityScrap_BurningWest(924).setHardness(1.0F).setUnlocalizedName("UtilityScrap_BurningWest").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_HeapEast = new UtilityScrap_HeapEast(925).setHardness(1.0F).setUnlocalizedName("UtilityScrap_HeapEast").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_HeapNorth = new UtilityScrap_HeapNorth(926).setHardness(1.0F).setUnlocalizedName("UtilityScrap_HeapNorth").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_HeapSouth = new UtilityScrap_HeapSouth(927).setHardness(1.0F).setUnlocalizedName("UtilityScrap_HeapSouth").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_HeapWest = new UtilityScrap_HeapWest(928).setHardness(1.0F).setUnlocalizedName("UtilityScrap_HeapWest").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_RecycleEast = new UtilityScrap_RecycleEast(929).setHardness(1.0F).setUnlocalizedName("UtilityScrap_RecycleEast").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_RecycleNorth = new UtilityScrap_RecycleNorth(930).setHardness(1.0F).setUnlocalizedName("UtilityScrap_RecycleNorth").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_RecycleSouth = new UtilityScrap_RecycleSouth(931).setHardness(1.0F).setUnlocalizedName("UtilityScrap_RecycleSouth").setCreativeTab(IMSM.Utility); - public static Block UtilityScrap_RecycleWest = new UtilityScrap_RecycleWest(932).setHardness(1.0F).setUnlocalizedName("UtilityScrap_RecycleWest").setCreativeTab(IMSM.Utility); - public static Block UtilityWater_PumpEast = new UtilityWater_PumpEast(933).setHardness(1.0F).setUnlocalizedName("UtilityWater_PumpEast").setCreativeTab(IMSM.Utility); - public static Block UtilityWater_PumpNorth = new UtilityWater_PumpNorth(934).setHardness(1.0F).setUnlocalizedName("UtilityWater_PumpNorth").setCreativeTab(IMSM.Utility); - public static Block UtilityWater_PumpSouth = new UtilityWater_PumpSouth(935).setHardness(1.0F).setUnlocalizedName("UtilityWater_PumpSouth").setCreativeTab(IMSM.Utility); - public static Block UtilityWater_PumpWest = new UtilityWater_PumpWest(936).setHardness(1.0F).setUnlocalizedName("UtilityWater_PumpWest").setCreativeTab(IMSM.Utility); - public static Block UtilityWater_TowerNorthEastSouthWest = new UtilityWater_TowerNorthEastSouthWest(937).setHardness(1.0F).setUnlocalizedName("UtilityWater_TowerNorthEastSouthWest").setCreativeTab(IMSM.Utility); - public static Block UtilityWater_TreatmentEast = new UtilityWater_TreatmentEast(938).setHardness(1.0F).setUnlocalizedName("UtilityWater_TreatmentEast").setCreativeTab(IMSM.Utility); - public static Block UtilityWater_TreatmentNorth = new UtilityWater_TreatmentNorth(939).setHardness(1.0F).setUnlocalizedName("UtilityWater_TreatmentNorth").setCreativeTab(IMSM.Utility); - public static Block UtilityWater_TreatmentSouth = new UtilityWater_TreatmentSouth(940).setHardness(1.0F).setUnlocalizedName("UtilityWater_TreatmentSouth").setCreativeTab(IMSM.Utility); - public static Block UtilityWater_TreatmentWest = new UtilityWater_TreatmentWest(941).setHardness(1.0F).setUnlocalizedName("UtilityWater_TreatmentWest").setCreativeTab(IMSM.Utility); + public static Block DecorationGrassNorthEastSouthWest = new DecorationGrassNorthEastSouthWest(200).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkEast = new DecorationParkEast(201).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkingGarageEast = new DecorationParkingGarageEast(202).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkingGarageNorth = new DecorationParkingGarageNorth(203).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkingGarageSouth = new DecorationParkingGarageSouth(204).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkingGarageWest = new DecorationParkingGarageWest(205).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkingLotsEast = new DecorationParkingLotsEast(206).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkingLotsNorth = new DecorationParkingLotsNorth(207).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkingLotsSouth = new DecorationParkingLotsSouth(208).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkingLotsWest = new DecorationParkingLotsWest(209).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkNorth = new DecorationParkNorth(210).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkSouth = new DecorationParkSouth(211).setCreativeTab(IMSM.Decoration); + public static Block DecorationParkWest = new DecorationParkWest(212).setCreativeTab(IMSM.Decoration); + public static Block DecorationPlazaFountainNorthEastSouthWest = new DecorationPlazaFountainNorthEastSouthWest(213).setCreativeTab(IMSM.Decoration); + public static Block DecorationPlazaNorthEastSouthWest = new DecorationPlazaNorthEastSouthWest(214).setCreativeTab(IMSM.Decoration); + public static Block DecorationSoccerStadiumEastWest = new DecorationSoccerStadiumEastWest(215).setCreativeTab(IMSM.Decoration); + public static Block DecorationSoccerStadiumNorthSouth = new DecorationSoccerStadiumNorthSouth(216).setCreativeTab(IMSM.Decoration); + public static Block DecorationSquareNorthEastSouthWest = new DecorationSquareNorthEastSouthWest(217).setCreativeTab(IMSM.Decoration); + public static Block DecorationSquareTreeEast = new DecorationSquareTreeEast(218).setCreativeTab(IMSM.Decoration); + public static Block DecorationSquareTreeNorth = new DecorationSquareTreeNorth(219).setCreativeTab(IMSM.Decoration); + public static Block DecorationSquareTreeSouth = new DecorationSquareTreeSouth(220).setCreativeTab(IMSM.Decoration); + public static Block DecorationSquareTreeWest = new DecorationSquareTreeWest(221).setCreativeTab(IMSM.Decoration); + public static Block FoodCarrotsEastWest = new FoodCarrotsEastWest(222).setCreativeTab(IMSM.Food); + public static Block FoodCarrotsNorthSouth = new FoodCarrotsNorthSouth(223).setCreativeTab(IMSM.Food); + public static Block FoodFarmEast = new FoodFarmEast(224).setCreativeTab(IMSM.Food); + public static Block FoodFarmNorth = new FoodFarmNorth(225).setCreativeTab(IMSM.Food); + public static Block FoodFarmSouth = new FoodFarmSouth(226).setCreativeTab(IMSM.Food); + public static Block FoodFarmWest = new FoodFarmWest(227).setCreativeTab(IMSM.Food); + public static Block FoodPotatoesNorthEastSouthWest = new FoodPotatoesNorthEastSouthWest(228).setCreativeTab(IMSM.Food); + public static Block FoodStableEastWest = new FoodStableEastWest(229).setCreativeTab(IMSM.Food); + public static Block FoodStableNorthSouth = new FoodStableNorthSouth(230).setCreativeTab(IMSM.Food); + public static Block FoodWheatNorthEastSouthWest = new FoodWheatNorthEastSouthWest(231).setCreativeTab(IMSM.Food); + public static Block IndustryHigh_DensityBlueEast = new IndustryHigh_DensityBlueEast(232).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityBlueNorth = new IndustryHigh_DensityBlueNorth(233).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityBlueSouth = new IndustryHigh_DensityBlueSouth(234).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityBlueWest = new IndustryHigh_DensityBlueWest(235).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityBrickEast = new IndustryHigh_DensityBrickEast(236).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityBrickNorth = new IndustryHigh_DensityBrickNorth(237).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityBrickSouth = new IndustryHigh_DensityBrickSouth(238).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityBrickWest = new IndustryHigh_DensityBrickWest(239).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityChimneyEast = new IndustryHigh_DensityChimneyEast(240).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityChimneyNorth = new IndustryHigh_DensityChimneyNorth(241).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityChimneySouth = new IndustryHigh_DensityChimneySouth(242).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityChimneyWest = new IndustryHigh_DensityChimneyWest(243).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityComputerChipEast = new IndustryHigh_DensityComputerChipEast(244).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityComputerChipNorth = new IndustryHigh_DensityComputerChipNorth(245).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityComputerChipSouth = new IndustryHigh_DensityComputerChipSouth(246).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityComputerChipWest = new IndustryHigh_DensityComputerChipWest(247).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityGreenEast = new IndustryHigh_DensityGreenEast(248).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityGreenNorth = new IndustryHigh_DensityGreenNorth(249).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityGreenSouth = new IndustryHigh_DensityGreenSouth(250).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityGreenWest = new IndustryHigh_DensityGreenWest(251).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityLightBlueEast = new IndustryHigh_DensityLightBlueEast(252).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityLightBlueNorth = new IndustryHigh_DensityLightBlueNorth(253).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityLightBlueSouth = new IndustryHigh_DensityLightBlueSouth(254).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryHigh_DensityLightBlueWest = new IndustryHigh_DensityLightBlueWest(255).setCreativeTab(IMSM.IndustryHigh_Density); + public static Block IndustryLow_Density3DPrintingEast = new IndustryLow_Density3DPrintingEast(256).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_Density3DPrintingNorth = new IndustryLow_Density3DPrintingNorth(257).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_Density3DPrintingSouth = new IndustryLow_Density3DPrintingSouth(258).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_Density3DPrintingWest = new IndustryLow_Density3DPrintingWest(259).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBlueEast = new IndustryLow_DensityBlueEast(260).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBlueNorth = new IndustryLow_DensityBlueNorth(261).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBlueSouth = new IndustryLow_DensityBlueSouth(262).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBlueWest = new IndustryLow_DensityBlueWest(263).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrickEast = new IndustryLow_DensityBrickEast(264).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrickEastWest = new IndustryLow_DensityBrickEastWest(265).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrickNorth = new IndustryLow_DensityBrickNorth(266).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrickNorthSouth = new IndustryLow_DensityBrickNorthSouth(267).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrickSouth = new IndustryLow_DensityBrickSouth(268).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrickWest = new IndustryLow_DensityBrickWest(269).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrownEast2 = new IndustryLow_DensityBrownEast2(270).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrownEast = new IndustryLow_DensityBrownEast(271).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrownNorth2 = new IndustryLow_DensityBrownNorth2(272).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrownNorth = new IndustryLow_DensityBrownNorth(273).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrownSouth2 = new IndustryLow_DensityBrownSouth2(274).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrownSouth = new IndustryLow_DensityBrownSouth(275).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrownWest2 = new IndustryLow_DensityBrownWest2(276).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityBrownWest = new IndustryLow_DensityBrownWest(277).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityChimneyEast = new IndustryLow_DensityChimneyEast(278).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityChimneyNorth = new IndustryLow_DensityChimneyNorth(279).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityChimneySouth = new IndustryLow_DensityChimneySouth(280).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityChimneyWest = new IndustryLow_DensityChimneyWest(281).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityGreenEast = new IndustryLow_DensityGreenEast(282).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityGreenNorth = new IndustryLow_DensityGreenNorth(283).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityGreenSouth = new IndustryLow_DensityGreenSouth(284).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityGreenWest = new IndustryLow_DensityGreenWest(285).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityIronEast = new IndustryLow_DensityIronEast(286).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityIronNorth = new IndustryLow_DensityIronNorth(287).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityIronSouth = new IndustryLow_DensityIronSouth(288).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityIronWest = new IndustryLow_DensityIronWest(289).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityParabolicAntennaEast = new IndustryLow_DensityParabolicAntennaEast(290).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityParabolicAntennaNorth = new IndustryLow_DensityParabolicAntennaNorth(291).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityParabolicAntennaSouth = new IndustryLow_DensityParabolicAntennaSouth(292).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityParabolicAntennaWest = new IndustryLow_DensityParabolicAntennaWest(293).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityTankNorthEastSouthWest = new IndustryLow_DensityTankNorthEastSouthWest(294).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityTelescopeEast = new IndustryLow_DensityTelescopeEast(295).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityTelescopeNorth = new IndustryLow_DensityTelescopeNorth(296).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityTelescopeSouth = new IndustryLow_DensityTelescopeSouth(297).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryLow_DensityTelescopeWest = new IndustryLow_DensityTelescopeWest(298).setCreativeTab(IMSM.IndustryLow_Density); + public static Block IndustryMedium_DensityBlueEast = new IndustryMedium_DensityBlueEast(299).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBlueNorth = new IndustryMedium_DensityBlueNorth(300).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBlueSouth = new IndustryMedium_DensityBlueSouth(301).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBlueWest = new IndustryMedium_DensityBlueWest(302).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBrickEast = new IndustryMedium_DensityBrickEast(303).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBrickNorth = new IndustryMedium_DensityBrickNorth(304).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBrickSouth = new IndustryMedium_DensityBrickSouth(305).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBrickWest = new IndustryMedium_DensityBrickWest(306).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBrownEast = new IndustryMedium_DensityBrownEast(307).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBrownNorth = new IndustryMedium_DensityBrownNorth(308).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBrownSouth = new IndustryMedium_DensityBrownSouth(309).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityBrownWest = new IndustryMedium_DensityBrownWest(310).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityChemicalPressEastWest = new IndustryMedium_DensityChemicalPressEastWest(311).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityChemicalPressNorthSouth = new IndustryMedium_DensityChemicalPressNorthSouth(312).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityChimneyEast = new IndustryMedium_DensityChimneyEast(313).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityChimneyNorth = new IndustryMedium_DensityChimneyNorth(314).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityChimneySouth = new IndustryMedium_DensityChimneySouth(315).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityChimneyWest = new IndustryMedium_DensityChimneyWest(316).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityGreenEast = new IndustryMedium_DensityGreenEast(317).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityGreenNorth = new IndustryMedium_DensityGreenNorth(318).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityGreenSouth = new IndustryMedium_DensityGreenSouth(319).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityGreenWest = new IndustryMedium_DensityGreenWest(320).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityIceEast = new IndustryMedium_DensityIceEast(321).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityIceNorth = new IndustryMedium_DensityIceNorth(322).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityIceSouth = new IndustryMedium_DensityIceSouth(323).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityIceWest = new IndustryMedium_DensityIceWest(324).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensitySandstoneEast = new IndustryMedium_DensitySandstoneEast(325).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensitySandstoneNorth = new IndustryMedium_DensitySandstoneNorth(326).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensitySandstoneSouth = new IndustryMedium_DensitySandstoneSouth(327).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensitySandstoneWest = new IndustryMedium_DensitySandstoneWest(328).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityTankEast = new IndustryMedium_DensityTankEast(329).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityTankNorth = new IndustryMedium_DensityTankNorth(330).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityTankSouth = new IndustryMedium_DensityTankSouth(331).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block IndustryMedium_DensityTankWest = new IndustryMedium_DensityTankWest(332).setCreativeTab(IMSM.IndustryMedium_Density); + public static Block OfficeHigh_DensityBrickEastWest = new OfficeHigh_DensityBrickEastWest(333).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityBrickNorthSouth = new OfficeHigh_DensityBrickNorthSouth(334).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityCyanEast = new OfficeHigh_DensityCyanEast(335).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityCyanNorth = new OfficeHigh_DensityCyanNorth(336).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityCyanSouth = new OfficeHigh_DensityCyanSouth(337).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityCyanWest = new OfficeHigh_DensityCyanWest(338).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityHoleOnTopEast = new OfficeHigh_DensityHoleOnTopEast(339).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityHoleOnTopNorth = new OfficeHigh_DensityHoleOnTopNorth(340).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityHoleOnTopSouth = new OfficeHigh_DensityHoleOnTopSouth(341).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityHoleOnTopWest = new OfficeHigh_DensityHoleOnTopWest(342).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityLightBlueEastWest = new OfficeHigh_DensityLightBlueEastWest(343).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensityLightBlueNorthSouth = new OfficeHigh_DensityLightBlueNorthSouth(344).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensitySpirolBuildingEast = new OfficeHigh_DensitySpirolBuildingEast(345).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensitySpirolBuildingNorth = new OfficeHigh_DensitySpirolBuildingNorth(346).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensitySpirolBuildingSouth = new OfficeHigh_DensitySpirolBuildingSouth(347).setCreativeTab(IMSM.Office); + public static Block OfficeHigh_DensitySpirolBuildingWest = new OfficeHigh_DensitySpirolBuildingWest(348).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityBlueEast = new OfficeLow_DensityBlueEast(349).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityBlueNorth = new OfficeLow_DensityBlueNorth(350).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityBlueSouth = new OfficeLow_DensityBlueSouth(351).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityBlueWest = new OfficeLow_DensityBlueWest(352).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityGreenEast = new OfficeLow_DensityGreenEast(353).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityGreenNorth = new OfficeLow_DensityGreenNorth(354).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityGreenSouth = new OfficeLow_DensityGreenSouth(355).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityGreenWest = new OfficeLow_DensityGreenWest(356).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityWhiteEast = new OfficeLow_DensityWhiteEast(357).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityWhiteNorth = new OfficeLow_DensityWhiteNorth(358).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityWhiteSouth = new OfficeLow_DensityWhiteSouth(359).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityWhiteWest = new OfficeLow_DensityWhiteWest(360).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityYellowEast = new OfficeLow_DensityYellowEast(361).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityYellowNorth = new OfficeLow_DensityYellowNorth(362).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityYellowSouth = new OfficeLow_DensityYellowSouth(363).setCreativeTab(IMSM.Office); + public static Block OfficeLow_DensityYellowWest = new OfficeLow_DensityYellowWest(364).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityCyanEast = new OfficeMedium_DensityCyanEast(365).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityCyanNorth = new OfficeMedium_DensityCyanNorth(366).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityCyanSouth = new OfficeMedium_DensityCyanSouth(367).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityCyanWest = new OfficeMedium_DensityCyanWest(368).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityLightBlueEast = new OfficeMedium_DensityLightBlueEast(369).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityLightBlueNorth = new OfficeMedium_DensityLightBlueNorth(370).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityLightBlueSouth = new OfficeMedium_DensityLightBlueSouth(371).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityLightBlueWest = new OfficeMedium_DensityLightBlueWest(372).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityPinkEast = new OfficeMedium_DensityPinkEast(373).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityPinkNorth = new OfficeMedium_DensityPinkNorth(374).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityPinkSouth = new OfficeMedium_DensityPinkSouth(375).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensityPinkWest = new OfficeMedium_DensityPinkWest(376).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensitySandstoneEast = new OfficeMedium_DensitySandstoneEast(377).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensitySandstoneNorth = new OfficeMedium_DensitySandstoneNorth(378).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensitySandstoneSouth = new OfficeMedium_DensitySandstoneSouth(379).setCreativeTab(IMSM.Office); + public static Block OfficeMedium_DensitySandstoneWest = new OfficeMedium_DensitySandstoneWest(380).setCreativeTab(IMSM.Office); + public static Block PublicFireServiceBigEast = new PublicFireServiceBigEast(381).setCreativeTab(IMSM.Public); + public static Block PublicFireServiceBigNorth = new PublicFireServiceBigNorth(382).setCreativeTab(IMSM.Public); + public static Block PublicFireServiceBigSouth = new PublicFireServiceBigSouth(383).setCreativeTab(IMSM.Public); + public static Block PublicFireServiceBigWest = new PublicFireServiceBigWest(384).setCreativeTab(IMSM.Public); + public static Block PublicFireServiceSmallEast = new PublicFireServiceSmallEast(385).setCreativeTab(IMSM.Public); + public static Block PublicFireServiceSmallNorth = new PublicFireServiceSmallNorth(386).setCreativeTab(IMSM.Public); + public static Block PublicFireServiceSmallSouth = new PublicFireServiceSmallSouth(387).setCreativeTab(IMSM.Public); + public static Block PublicFireServiceSmallWest = new PublicFireServiceSmallWest(388).setCreativeTab(IMSM.Public); + public static Block PublicHospitalBigEast = new PublicHospitalBigEast(389).setCreativeTab(IMSM.Public); + public static Block PublicHospitalBigNorth = new PublicHospitalBigNorth(390).setCreativeTab(IMSM.Public); + public static Block PublicHospitalBigSouth = new PublicHospitalBigSouth(391).setCreativeTab(IMSM.Public); + public static Block PublicHospitalBigWest = new PublicHospitalBigWest(392).setCreativeTab(IMSM.Public); + public static Block PublicHospitalSmallEast = new PublicHospitalSmallEast(393).setCreativeTab(IMSM.Public); + public static Block PublicHospitalSmallNorth = new PublicHospitalSmallNorth(394).setCreativeTab(IMSM.Public); + public static Block PublicHospitalSmallSouth = new PublicHospitalSmallSouth(395).setCreativeTab(IMSM.Public); + public static Block PublicHospitalSmallWest = new PublicHospitalSmallWest(396).setCreativeTab(IMSM.Public); + public static Block PublicLibraryEastWest = new PublicLibraryEastWest(397).setCreativeTab(IMSM.Public); + public static Block PublicLibraryNorthSouth = new PublicLibraryNorthSouth(398).setCreativeTab(IMSM.Public); + public static Block PublicPoliceBigEast = new PublicPoliceBigEast(399).setCreativeTab(IMSM.Public); + public static Block PublicPoliceBigNorth = new PublicPoliceBigNorth(400).setCreativeTab(IMSM.Public); + public static Block PublicPoliceBigSouth = new PublicPoliceBigSouth(401).setCreativeTab(IMSM.Public); + public static Block PublicPoliceBigWest = new PublicPoliceBigWest(402).setCreativeTab(IMSM.Public); + public static Block PublicPoliceSmallEast = new PublicPoliceSmallEast(403).setCreativeTab(IMSM.Public); + public static Block PublicPoliceSmallNorth = new PublicPoliceSmallNorth(404).setCreativeTab(IMSM.Public); + public static Block PublicPoliceSmallSouth = new PublicPoliceSmallSouth(405).setCreativeTab(IMSM.Public); + public static Block PublicPoliceSmallWest = new PublicPoliceSmallWest(406).setCreativeTab(IMSM.Public); + public static Block PublicSchoolBigNorthEast = new PublicSchoolBigNorthEast(407).setCreativeTab(IMSM.Public); + public static Block PublicSchoolBigNorthWest = new PublicSchoolBigNorthWest(408).setCreativeTab(IMSM.Public); + public static Block PublicSchoolBigSouthEast = new PublicSchoolBigSouthEast(409).setCreativeTab(IMSM.Public); + public static Block PublicSchoolBigSouthWest = new PublicSchoolBigSouthWest(410).setCreativeTab(IMSM.Public); + public static Block PublicSchoolSmallNorthEast = new PublicSchoolSmallNorthEast(411).setCreativeTab(IMSM.Public); + public static Block PublicSchoolSmallNorthWest = new PublicSchoolSmallNorthWest(412).setCreativeTab(IMSM.Public); + public static Block PublicSchoolSmallSouthEast = new PublicSchoolSmallSouthEast(413).setCreativeTab(IMSM.Public); + public static Block PublicSchoolSmallSouthWest = new PublicSchoolSmallSouthWest(414).setCreativeTab(IMSM.Public); + public static Block PublicTownhallBigEastWest = new PublicTownhallBigEastWest(415).setCreativeTab(IMSM.Public); + public static Block PublicTownhallBigNorthSouth = new PublicTownhallBigNorthSouth(416).setCreativeTab(IMSM.Public); + public static Block PublicTownhallSmallEast = new PublicTownhallSmallEast(417).setCreativeTab(IMSM.Public); + public static Block PublicTownhallSmallNorth = new PublicTownhallSmallNorth(418).setCreativeTab(IMSM.Public); + public static Block PublicTownhallSmallSouth = new PublicTownhallSmallSouth(419).setCreativeTab(IMSM.Public); + public static Block PublicTownhallSmallWest = new PublicTownhallSmallWest(420).setCreativeTab(IMSM.Public); + public static Block PublicUniversityEast = new PublicUniversityEast(421).setCreativeTab(IMSM.Public); + public static Block PublicUniversityNorth = new PublicUniversityNorth(422).setCreativeTab(IMSM.Public); + public static Block PublicUniversitySouth = new PublicUniversitySouth(423).setCreativeTab(IMSM.Public); + public static Block PublicUniversityWest = new PublicUniversityWest(424).setCreativeTab(IMSM.Public); + public static Block ResidentalEnormous_DensityBlockNorthEastSouthWest = new ResidentalEnormous_DensityBlockNorthEastSouthWest(425).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityBrickBigEast = new ResidentalEnormous_DensityBrickBigEast(426).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityBrickBigNorth = new ResidentalEnormous_DensityBrickBigNorth(427).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityBrickBigSouth = new ResidentalEnormous_DensityBrickBigSouth(428).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityBrickBigWest = new ResidentalEnormous_DensityBrickBigWest(429).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityBrickSmallNorthEastSouthWest = new ResidentalEnormous_DensityBrickSmallNorthEastSouthWest(430).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityGreyEast = new ResidentalEnormous_DensityGreyEast(431).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityGreyNorth = new ResidentalEnormous_DensityGreyNorth(432).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityGreySouth = new ResidentalEnormous_DensityGreySouth(433).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityGreyWest = new ResidentalEnormous_DensityGreyWest(434).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityModernEast = new ResidentalEnormous_DensityModernEast(435).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityModernNorth = new ResidentalEnormous_DensityModernNorth(436).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityModernSouth = new ResidentalEnormous_DensityModernSouth(437).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityModernWest = new ResidentalEnormous_DensityModernWest(438).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityRedEastWest = new ResidentalEnormous_DensityRedEastWest(439).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityRedNorthSouth = new ResidentalEnormous_DensityRedNorthSouth(440).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityRoundNorthEastSouthWest = new ResidentalEnormous_DensityRoundNorthEastSouthWest(441).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityStoneEast2 = new ResidentalEnormous_DensityStoneEast2(442).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityStoneEast = new ResidentalEnormous_DensityStoneEast(443).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityStoneNorth2 = new ResidentalEnormous_DensityStoneNorth2(444).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityStoneNorth = new ResidentalEnormous_DensityStoneNorth(445).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityStoneSouth2 = new ResidentalEnormous_DensityStoneSouth2(446).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityStoneSouth = new ResidentalEnormous_DensityStoneSouth(447).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityStoneWest2 = new ResidentalEnormous_DensityStoneWest2(448).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityStoneWest = new ResidentalEnormous_DensityStoneWest(449).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalEnormous_DensityYellowNorthEastSouthWest = new ResidentalEnormous_DensityYellowNorthEastSouthWest(450).setCreativeTab(IMSM.ResidentalEnormous_Density); + public static Block ResidentalHigh_DensityBlueEast = new ResidentalHigh_DensityBlueEast(451).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBlueEastWest = new ResidentalHigh_DensityBlueEastWest(452).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBlueNorth = new ResidentalHigh_DensityBlueNorth(453).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBlueNorthSouth = new ResidentalHigh_DensityBlueNorthSouth(454).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBlueSouth = new ResidentalHigh_DensityBlueSouth(455).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBlueWest = new ResidentalHigh_DensityBlueWest(456).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBrickEast = new ResidentalHigh_DensityBrickEast(457).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBrickEastWest = new ResidentalHigh_DensityBrickEastWest(458).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBrickNorth = new ResidentalHigh_DensityBrickNorth(459).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBrickNorthSouth = new ResidentalHigh_DensityBrickNorthSouth(460).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBrickSouth = new ResidentalHigh_DensityBrickSouth(461).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityBrickWest = new ResidentalHigh_DensityBrickWest(462).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityGreenGreyEast = new ResidentalHigh_DensityGreenGreyEast(463).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityGreenGreyNorth = new ResidentalHigh_DensityGreenGreyNorth(464).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityGreenGreySouth = new ResidentalHigh_DensityGreenGreySouth(465).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityGreenGreyWest = new ResidentalHigh_DensityGreenGreyWest(466).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityRedCornerNorthEast = new ResidentalHigh_DensityRedCornerNorthEast(467).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityRedCornerNorthWest = new ResidentalHigh_DensityRedCornerNorthWest(468).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityRedCornerSouthEast = new ResidentalHigh_DensityRedCornerSouthEast(469).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityRedCornerSouthWest = new ResidentalHigh_DensityRedCornerSouthWest(470).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityRedYellowEast = new ResidentalHigh_DensityRedYellowEast(471).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityRedYellowNorth = new ResidentalHigh_DensityRedYellowNorth(472).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityRedYellowSouth = new ResidentalHigh_DensityRedYellowSouth(473).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityRedYellowWest = new ResidentalHigh_DensityRedYellowWest(474).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityStoneEast2 = new ResidentalHigh_DensityStoneEast2(475).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityStoneEast = new ResidentalHigh_DensityStoneEast(476).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityStoneNorth2 = new ResidentalHigh_DensityStoneNorth2(477).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityStoneNorth = new ResidentalHigh_DensityStoneNorth(478).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityStoneSouth2 = new ResidentalHigh_DensityStoneSouth2(479).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityStoneSouth = new ResidentalHigh_DensityStoneSouth(480).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityStoneWest2 = new ResidentalHigh_DensityStoneWest2(481).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityStoneWest = new ResidentalHigh_DensityStoneWest(482).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityYellowEast = new ResidentalHigh_DensityYellowEast(483).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityYellowNorth = new ResidentalHigh_DensityYellowNorth(484).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityYellowSouth = new ResidentalHigh_DensityYellowSouth(485).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalHigh_DensityYellowWest = new ResidentalHigh_DensityYellowWest(486).setCreativeTab(IMSM.ResidentalHigh_Density); + public static Block ResidentalLow_DensityBeigeEast = new ResidentalLow_DensityBeigeEast(487).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityBeigeNorth = new ResidentalLow_DensityBeigeNorth(488).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityBeigeSouth = new ResidentalLow_DensityBeigeSouth(489).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityBeigeWest = new ResidentalLow_DensityBeigeWest(490).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityCyanEast = new ResidentalLow_DensityCyanEast(491).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityCyanNorth = new ResidentalLow_DensityCyanNorth(492).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityCyanSouth = new ResidentalLow_DensityCyanSouth(493).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityCyanWest = new ResidentalLow_DensityCyanWest(494).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityGreenEast2 = new ResidentalLow_DensityGreenEast2(495).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityGreenEast = new ResidentalLow_DensityGreenEast(496).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityGreenNorth2 = new ResidentalLow_DensityGreenNorth2(497).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityGreenNorth = new ResidentalLow_DensityGreenNorth(498).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityGreenSouth2 = new ResidentalLow_DensityGreenSouth2(499).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityGreenSouth = new ResidentalLow_DensityGreenSouth(500).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityGreenWest2 = new ResidentalLow_DensityGreenWest2(501).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityGreenWest = new ResidentalLow_DensityGreenWest(502).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightBlueEast2 = new ResidentalLow_DensityLightBlueEast2(503).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightBlueEast = new ResidentalLow_DensityLightBlueEast(504).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightBlueNorth2 = new ResidentalLow_DensityLightBlueNorth2(505).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightBlueNorth = new ResidentalLow_DensityLightBlueNorth(506).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightBlueSouth2 = new ResidentalLow_DensityLightBlueSouth2(507).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightBlueSouth = new ResidentalLow_DensityLightBlueSouth(508).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightBlueWest2 = new ResidentalLow_DensityLightBlueWest2(509).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightBlueWest = new ResidentalLow_DensityLightBlueWest(510).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightGreyEast = new ResidentalLow_DensityLightGreyEast(511).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightGreyNorth = new ResidentalLow_DensityLightGreyNorth(512).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightGreySouth = new ResidentalLow_DensityLightGreySouth(513).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityLightGreyWest = new ResidentalLow_DensityLightGreyWest(514).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityModernEast = new ResidentalLow_DensityModernEast(515).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityModernNorth = new ResidentalLow_DensityModernNorth(516).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityModernSouth = new ResidentalLow_DensityModernSouth(517).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityModernWest = new ResidentalLow_DensityModernWest(518).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityOrangeEast = new ResidentalLow_DensityOrangeEast(519).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityOrangeNorth = new ResidentalLow_DensityOrangeNorth(520).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityOrangeSouth = new ResidentalLow_DensityOrangeSouth(521).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityOrangeWest = new ResidentalLow_DensityOrangeWest(522).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityRedEast = new ResidentalLow_DensityRedEast(523).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityRedNorth = new ResidentalLow_DensityRedNorth(524).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityRedSouth = new ResidentalLow_DensityRedSouth(525).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityRedWest = new ResidentalLow_DensityRedWest(526).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityStoneEast = new ResidentalLow_DensityStoneEast(527).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityStoneNorth = new ResidentalLow_DensityStoneNorth(528).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityStoneSouth = new ResidentalLow_DensityStoneSouth(529).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityStoneWest = new ResidentalLow_DensityStoneWest(530).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityWhiteEast = new ResidentalLow_DensityWhiteEast(531).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityWhiteNorth = new ResidentalLow_DensityWhiteNorth(532).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityWhiteSouth = new ResidentalLow_DensityWhiteSouth(533).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityWhiteWest = new ResidentalLow_DensityWhiteWest(534).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityWoodEast = new ResidentalLow_DensityWoodEast(535).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityWoodNorth = new ResidentalLow_DensityWoodNorth(536).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityWoodSouth = new ResidentalLow_DensityWoodSouth(537).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityWoodWest = new ResidentalLow_DensityWoodWest(538).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityYellowEast2 = new ResidentalLow_DensityYellowEast2(539).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityYellowEast = new ResidentalLow_DensityYellowEast(540).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityYellowNorth2 = new ResidentalLow_DensityYellowNorth2(541).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityYellowNorth = new ResidentalLow_DensityYellowNorth(542).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityYellowSouth2 = new ResidentalLow_DensityYellowSouth2(543).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityYellowSouth = new ResidentalLow_DensityYellowSouth(544).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityYellowWest2 = new ResidentalLow_DensityYellowWest2(545).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalLow_DensityYellowWest = new ResidentalLow_DensityYellowWest(546).setCreativeTab(IMSM.ResidentalLow_Density); + public static Block ResidentalMedium_DensityBlueGreenEast = new ResidentalMedium_DensityBlueGreenEast(547).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBlueGreenNorth = new ResidentalMedium_DensityBlueGreenNorth(548).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBlueGreenSouth = new ResidentalMedium_DensityBlueGreenSouth(549).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBlueGreenWest = new ResidentalMedium_DensityBlueGreenWest(550).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBlueRedEast = new ResidentalMedium_DensityBlueRedEast(551).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBlueRedNorth = new ResidentalMedium_DensityBlueRedNorth(552).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBlueRedSouth = new ResidentalMedium_DensityBlueRedSouth(553).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBlueRedWest = new ResidentalMedium_DensityBlueRedWest(554).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBrickEast = new ResidentalMedium_DensityBrickEast(555).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBrickNorth = new ResidentalMedium_DensityBrickNorth(556).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBrickSouth = new ResidentalMedium_DensityBrickSouth(557).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityBrickWest = new ResidentalMedium_DensityBrickWest(558).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityHorizontalEast = new ResidentalMedium_DensityHorizontalEast(559).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityHorizontalNorth = new ResidentalMedium_DensityHorizontalNorth(560).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityHorizontalSouth = new ResidentalMedium_DensityHorizontalSouth(561).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityHorizontalWest = new ResidentalMedium_DensityHorizontalWest(562).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityOrangeGreenEast = new ResidentalMedium_DensityOrangeGreenEast(563).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityOrangeGreenNorth = new ResidentalMedium_DensityOrangeGreenNorth(564).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityOrangeGreenSouth = new ResidentalMedium_DensityOrangeGreenSouth(565).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityOrangeGreenWest = new ResidentalMedium_DensityOrangeGreenWest(566).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityQuartzEast = new ResidentalMedium_DensityQuartzEast(567).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityQuartzNorth = new ResidentalMedium_DensityQuartzNorth(568).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityQuartzSouth = new ResidentalMedium_DensityQuartzSouth(569).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityQuartzWest = new ResidentalMedium_DensityQuartzWest(570).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityRedGreenEast = new ResidentalMedium_DensityRedGreenEast(571).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityRedGreenNorth = new ResidentalMedium_DensityRedGreenNorth(572).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityRedGreenSouth = new ResidentalMedium_DensityRedGreenSouth(573).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityRedGreenWest = new ResidentalMedium_DensityRedGreenWest(574).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityRoofEast = new ResidentalMedium_DensityRoofEast(575).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityRoofNorth = new ResidentalMedium_DensityRoofNorth(576).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityRoofSouth = new ResidentalMedium_DensityRoofSouth(577).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityRoofWest = new ResidentalMedium_DensityRoofWest(578).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStone1EastWest = new ResidentalMedium_DensityStone1EastWest(579).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStone1NorthSouth = new ResidentalMedium_DensityStone1NorthSouth(580).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStone2EastWest = new ResidentalMedium_DensityStone2EastWest(581).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStone2NorthSouth = new ResidentalMedium_DensityStone2NorthSouth(582).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneCornerNorthEast = new ResidentalMedium_DensityStoneCornerNorthEast(583).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneCornerNorthWest = new ResidentalMedium_DensityStoneCornerNorthWest(584).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneCornerSouthEast = new ResidentalMedium_DensityStoneCornerSouthEast(585).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneCornerSouthWest = new ResidentalMedium_DensityStoneCornerSouthWest(586).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneEast = new ResidentalMedium_DensityStoneEast(587).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneEndNorthEastWest = new ResidentalMedium_DensityStoneEndNorthEastWest(588).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneEndNorthSouthEast = new ResidentalMedium_DensityStoneEndNorthSouthEast(589).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneEndNorthSouthWest = new ResidentalMedium_DensityStoneEndNorthSouthWest(590).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneEndSouthEastWest = new ResidentalMedium_DensityStoneEndSouthEastWest(591).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneNorth = new ResidentalMedium_DensityStoneNorth(592).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneSouth = new ResidentalMedium_DensityStoneSouth(593).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityStoneWest = new ResidentalMedium_DensityStoneWest(594).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityVerticalEast = new ResidentalMedium_DensityVerticalEast(595).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityVerticalNorth = new ResidentalMedium_DensityVerticalNorth(596).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityVerticalSouth = new ResidentalMedium_DensityVerticalSouth(597).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityVerticalWest = new ResidentalMedium_DensityVerticalWest(598).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityYellowRedEast = new ResidentalMedium_DensityYellowRedEast(599).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityYellowRedNorth = new ResidentalMedium_DensityYellowRedNorth(600).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityYellowRedSouth = new ResidentalMedium_DensityYellowRedSouth(601).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ResidentalMedium_DensityYellowRedWest = new ResidentalMedium_DensityYellowRedWest(602).setCreativeTab(IMSM.ResidentalMedium_Density); + public static Block ShoppingHigh_DensityQuartzEastWest = new ShoppingHigh_DensityQuartzEastWest(603).setCreativeTab(IMSM.Shopping); + public static Block ShoppingHigh_DensityQuartzNorthSouth = new ShoppingHigh_DensityQuartzNorthSouth(604).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityBrickEast = new ShoppingLow_DensityBrickEast(605).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityBrickNorth = new ShoppingLow_DensityBrickNorth(606).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityBrickSouth = new ShoppingLow_DensityBrickSouth(607).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityBrickWest = new ShoppingLow_DensityBrickWest(608).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityGreenEast = new ShoppingLow_DensityGreenEast(609).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityGreenNorth = new ShoppingLow_DensityGreenNorth(610).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityGreenSouth = new ShoppingLow_DensityGreenSouth(611).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityGreenWest = new ShoppingLow_DensityGreenWest(612).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityOrangeEast = new ShoppingLow_DensityOrangeEast(613).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityOrangeNorth = new ShoppingLow_DensityOrangeNorth(614).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityOrangeSouth = new ShoppingLow_DensityOrangeSouth(615).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityOrangeWest = new ShoppingLow_DensityOrangeWest(616).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityPinkEast = new ShoppingLow_DensityPinkEast(617).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityPinkNorth = new ShoppingLow_DensityPinkNorth(618).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityPinkSouth = new ShoppingLow_DensityPinkSouth(619).setCreativeTab(IMSM.Shopping); + public static Block ShoppingLow_DensityPinkWest = new ShoppingLow_DensityPinkWest(620).setCreativeTab(IMSM.Shopping); + public static Block ShoppingMedium_DensityModernEast = new ShoppingMedium_DensityModernEast(621).setCreativeTab(IMSM.Shopping); + public static Block ShoppingMedium_DensityModernNorth = new ShoppingMedium_DensityModernNorth(622).setCreativeTab(IMSM.Shopping); + public static Block ShoppingMedium_DensityModernSouth = new ShoppingMedium_DensityModernSouth(623).setCreativeTab(IMSM.Shopping); + public static Block ShoppingMedium_DensityModernWest = new ShoppingMedium_DensityModernWest(624).setCreativeTab(IMSM.Shopping); + public static Block ShoppingMedium_DensityQuartzEast = new ShoppingMedium_DensityQuartzEast(625).setCreativeTab(IMSM.Shopping); + public static Block ShoppingMedium_DensityQuartzNorth = new ShoppingMedium_DensityQuartzNorth(626).setCreativeTab(IMSM.Shopping); + public static Block ShoppingMedium_DensityQuartzSouth = new ShoppingMedium_DensityQuartzSouth(627).setCreativeTab(IMSM.Shopping); + public static Block ShoppingMedium_DensityQuartzWest = new ShoppingMedium_DensityQuartzWest(628).setCreativeTab(IMSM.Shopping); + public static Block TransportAirportRunway_EastWestBuilding_North = new TransportAirportRunway_EastWestBuilding_North(629).setCreativeTab(IMSM.TransportPublic); + public static Block TransportAirportRunway_EastWestBuilding_South = new TransportAirportRunway_EastWestBuilding_South(630).setCreativeTab(IMSM.TransportPublic); + public static Block TransportAirportRunway_NorthSouthBuilding_East = new TransportAirportRunway_NorthSouthBuilding_East(631).setCreativeTab(IMSM.TransportPublic); + public static Block TransportAirportRunway_NorthSouthBuilding_West = new TransportAirportRunway_NorthSouthBuilding_West(632).setCreativeTab(IMSM.TransportPublic); + public static Block TransportAvenue1EastWest = new TransportAvenue1EastWest(633).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenue1NorthSouth = new TransportAvenue1NorthSouth(634).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenue2EastWest = new TransportAvenue2EastWest(635).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenue2NorthSouth = new TransportAvenue2NorthSouth(636).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueEEast = new TransportAvenueEEast(637).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueENorth = new TransportAvenueENorth(638).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueESouth = new TransportAvenueESouth(639).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueEWest = new TransportAvenueEWest(640).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueLNorthEast = new TransportAvenueLNorthEast(641).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueLNorthWest = new TransportAvenueLNorthWest(642).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueLSouthEast = new TransportAvenueLSouthEast(643).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueLSouthWest = new TransportAvenueLSouthWest(644).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueTNorthEastWest = new TransportAvenueTNorthEastWest(645).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueTNorthSouthEast = new TransportAvenueTNorthSouthEast(646).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueTNorthSouthWest = new TransportAvenueTNorthSouthWest(647).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueTSouthEastWest = new TransportAvenueTSouthEastWest(648).setCreativeTab(IMSM.TransportRoads); + public static Block TransportAvenueXNorthSouthEastWest = new TransportAvenueXNorthSouthEastWest(649).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenue1EastWest = new TransportBridgeAvenue1EastWest(650).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenue1NorthSouth = new TransportBridgeAvenue1NorthSouth(651).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenue2NorthSouth = new TransportBridgeAvenue2NorthSouth(652).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenue2SouthWest = new TransportBridgeAvenue2SouthWest(653).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenue3EastWest = new TransportBridgeAvenue3EastWest(654).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenue3NorthSouth = new TransportBridgeAvenue3NorthSouth(655).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenue4EastWest = new TransportBridgeAvenue4EastWest(656).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenue4NorthSouth = new TransportBridgeAvenue4NorthSouth(657).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenueLNorthEast = new TransportBridgeAvenueLNorthEast(658).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenueLNorthWest = new TransportBridgeAvenueLNorthWest(659).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenueLSouthEast = new TransportBridgeAvenueLSouthEast(660).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeAvenueLSouthWest = new TransportBridgeAvenueLSouthWest(661).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighway1EastWest = new TransportBridgeHighway1EastWest(662).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighway1NorthSouth = new TransportBridgeHighway1NorthSouth(663).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighway2EastWest = new TransportBridgeHighway2EastWest(664).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighway2NorthSouth = new TransportBridgeHighway2NorthSouth(665).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighway3EastWest = new TransportBridgeHighway3EastWest(666).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighway3NorthSouth = new TransportBridgeHighway3NorthSouth(667).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighway4EastWest = new TransportBridgeHighway4EastWest(668).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighway4NorthSouth = new TransportBridgeHighway4NorthSouth(669).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighwayLNorthEast = new TransportBridgeHighwayLNorthEast(670).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighwayLNorthWest = new TransportBridgeHighwayLNorthWest(671).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighwayLSouthEast = new TransportBridgeHighwayLSouthEast(672).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeHighwayLSouthWest = new TransportBridgeHighwayLSouthWest(673).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeRoad1EastWest = new TransportBridgeRoad1EastWest(674).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeRoad1NorthSouth = new TransportBridgeRoad1NorthSouth(675).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeRoad2EastWest = new TransportBridgeRoad2EastWest(676).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeRoad2NorthSouth = new TransportBridgeRoad2NorthSouth(677).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeRoadLNorthEast = new TransportBridgeRoadLNorthEast(678).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeRoadLNorthWest = new TransportBridgeRoadLNorthWest(679).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeRoadLSouthEast = new TransportBridgeRoadLSouthEast(680).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeRoadLSouthWest = new TransportBridgeRoadLSouthWest(681).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeStreet1EastWest = new TransportBridgeStreet1EastWest(682).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeStreet1NorthSouth = new TransportBridgeStreet1NorthSouth(683).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeStreet2EastWest = new TransportBridgeStreet2EastWest(684).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeStreet2NorthSouth = new TransportBridgeStreet2NorthSouth(685).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeStreetLNorthEast = new TransportBridgeStreetLNorthEast(686).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeStreetLNorthWest = new TransportBridgeStreetLNorthWest(687).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeStreetLSouthEast = new TransportBridgeStreetLSouthEast(688).setCreativeTab(IMSM.TransportRoads); + public static Block TransportBridgeStreetLSouthWest = new TransportBridgeStreetLSouthWest(689).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside = new TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside(690).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside = new TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside(691).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside = new TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside(692).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside = new TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside(693).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside = new TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside(694).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside = new TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside(695).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside = new TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside(696).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside = new TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside(697).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetLAvenue_EastStreet_North = new TransportConnectorAvenue_StreetLAvenue_EastStreet_North(698).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetLAvenue_EastStreet_South = new TransportConnectorAvenue_StreetLAvenue_EastStreet_South(699).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetLAvenue_NorthStreet_East = new TransportConnectorAvenue_StreetLAvenue_NorthStreet_East(700).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetLAvenue_NorthStreet_West = new TransportConnectorAvenue_StreetLAvenue_NorthStreet_West(701).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetLAvenue_SouthStreet_East = new TransportConnectorAvenue_StreetLAvenue_SouthStreet_East(702).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetLAvenue_SouthStreet_West = new TransportConnectorAvenue_StreetLAvenue_SouthStreet_West(703).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetLAvenue_WestStreet_North = new TransportConnectorAvenue_StreetLAvenue_WestStreet_North(704).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetLAvenue_WestStreet_South = new TransportConnectorAvenue_StreetLAvenue_WestStreet_South(705).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth = new TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth(706).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North = new TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North(707).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South = new TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South(708).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East = new TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East(709).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West = new TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West(710).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest = new TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest(711).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest = new TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest(712).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth = new TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth(713).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth = new TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth(714).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest = new TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest(715).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_AvenueBridge_EastAvenue_West = new TransportConnectorBridge_AvenueBridge_EastAvenue_West(716).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_AvenueBridge_NorthAvenue_South = new TransportConnectorBridge_AvenueBridge_NorthAvenue_South(717).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_AvenueBridge_SouthAvenue_North = new TransportConnectorBridge_AvenueBridge_SouthAvenue_North(718).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_AvenueBridge_WestAvenue_East = new TransportConnectorBridge_AvenueBridge_WestAvenue_East(719).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_RoadBridge_EastRoad_West = new TransportConnectorBridge_RoadBridge_EastRoad_West(720).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_RoadBridge_NorthRoad_South = new TransportConnectorBridge_RoadBridge_NorthRoad_South(721).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_RoadBridge_SouthRoad_North = new TransportConnectorBridge_RoadBridge_SouthRoad_North(722).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_RoadBridge_WestRoad_East = new TransportConnectorBridge_RoadBridge_WestRoad_East(723).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_StreetBridge_EastStreet_West = new TransportConnectorBridge_StreetBridge_EastStreet_West(724).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_StreetBridge_NorthStreet_South = new TransportConnectorBridge_StreetBridge_NorthStreet_South(725).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_StreetBridge_SouthStreet_North = new TransportConnectorBridge_StreetBridge_SouthStreet_North(726).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorBridge_StreetBridge_WestStreet_East = new TransportConnectorBridge_StreetBridge_WestStreet_East(727).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighway_AvenueHighway_EastAvenue_West = new TransportConnectorHighway_AvenueHighway_EastAvenue_West(728).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighway_AvenueHighway_NorthAvenue_South = new TransportConnectorHighway_AvenueHighway_NorthAvenue_South(729).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighway_AvenueHighway_SouthAvenue_North = new TransportConnectorHighway_AvenueHighway_SouthAvenue_North(730).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighway_AvenueHighway_WestAvenue_East = new TransportConnectorHighway_AvenueHighway_WestAvenue_East(731).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West = new TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West(732).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South = new TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South(733).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North = new TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North(734).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East = new TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East(735).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West = new TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West(736).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South = new TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South(737).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North = new TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North(738).setCreativeTab(IMSM.TransportRoads); + public static Block TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East = new TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East(739).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHarbourBigEast = new TransportHarbourBigEast(740).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourBigNorth = new TransportHarbourBigNorth(741).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourBigSouth = new TransportHarbourBigSouth(742).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourBigWest = new TransportHarbourBigWest(743).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide1CornerNorthEast = new TransportHarbourSide1CornerNorthEast(744).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide1CornerNorthWest = new TransportHarbourSide1CornerNorthWest(745).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide1CornerSouthEast = new TransportHarbourSide1CornerSouthEast(746).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide1CornerSouthWest = new TransportHarbourSide1CornerSouthWest(747).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide2CornerCraneEast = new TransportHarbourSide2CornerCraneEast(748).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide2CornerCraneNorth = new TransportHarbourSide2CornerCraneNorth(749).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide2CornerCraneSouth = new TransportHarbourSide2CornerCraneSouth(750).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide2CornerCraneWest = new TransportHarbourSide2CornerCraneWest(751).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide2CornerEast = new TransportHarbourSide2CornerEast(752).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide2CornerNorth = new TransportHarbourSide2CornerNorth(753).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide2CornerSouth = new TransportHarbourSide2CornerSouth(754).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide2CornerWest = new TransportHarbourSide2CornerWest(755).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast = new TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast(756).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest = new TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest(757).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest = new TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest(758).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest = new TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest(759).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSmallEast = new TransportHarbourSmallEast(760).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSmallNorth = new TransportHarbourSmallNorth(761).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSmallSouth = new TransportHarbourSmallSouth(762).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHarbourSmallWest = new TransportHarbourSmallWest(763).setCreativeTab(IMSM.TransportHarbour); + public static Block TransportHighway05EastWestNorthside = new TransportHighway05EastWestNorthside(764).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighway05EastWestSouthside = new TransportHighway05EastWestSouthside(765).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighway05NorthSouthEastside = new TransportHighway05NorthSouthEastside(766).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighway05NorthSouthWestside = new TransportHighway05NorthSouthWestside(767).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighway1EastWest = new TransportHighway1EastWest(768).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighway1NorthSouth = new TransportHighway1NorthSouth(769).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighway2EastWest = new TransportHighway2EastWest(770).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighway2NorthSouth = new TransportHighway2NorthSouth(771).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayDrivewayEastWestEastside = new TransportHighwayDrivewayEastWestEastside(772).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayDrivewayEastWestWestside = new TransportHighwayDrivewayEastWestWestside(773).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayDrivewayExitEastWestEastside = new TransportHighwayDrivewayExitEastWestEastside(774).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayDrivewayExitEastWestWestside = new TransportHighwayDrivewayExitEastWestWestside(775).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayDrivewayExitNorthSouthNorthside = new TransportHighwayDrivewayExitNorthSouthNorthside(776).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayDrivewayExitNorthSouthSouthside = new TransportHighwayDrivewayExitNorthSouthSouthside(777).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayDrivewayNorthSouthNorthside = new TransportHighwayDrivewayNorthSouthNorthside(778).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayDrivewayNorthSouthSouthside = new TransportHighwayDrivewayNorthSouthSouthside(779).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayExitEastWestEastside = new TransportHighwayExitEastWestEastside(780).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayExitEastWestWestside = new TransportHighwayExitEastWestWestside(781).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayExitNorthSouthNorthside = new TransportHighwayExitNorthSouthNorthside(782).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayExitNorthSouthSouthside = new TransportHighwayExitNorthSouthSouthside(783).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloor05EastWestNorthside = new TransportHighwayFloor05EastWestNorthside(784).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloor05EastWestSouthside = new TransportHighwayFloor05EastWestSouthside(785).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloor05NorthSouthEastside = new TransportHighwayFloor05NorthSouthEastside(786).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloor05NorthSouthWestside = new TransportHighwayFloor05NorthSouthWestside(787).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloor1EastWest = new TransportHighwayFloor1EastWest(788).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloor1NorthSouth = new TransportHighwayFloor1NorthSouth(789).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloor2EastWest = new TransportHighwayFloor2EastWest(790).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloor2NorthSouth = new TransportHighwayFloor2NorthSouth(791).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorDrivewayEastWestEastside = new TransportHighwayFloorDrivewayEastWestEastside(792).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorDrivewayEastWestWestside = new TransportHighwayFloorDrivewayEastWestWestside(793).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorDrivewayExitEastWestEastside = new TransportHighwayFloorDrivewayExitEastWestEastside(794).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorDrivewayExitEastWestWestside = new TransportHighwayFloorDrivewayExitEastWestWestside(795).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorDrivewayExitNorthSouthNorthside = new TransportHighwayFloorDrivewayExitNorthSouthNorthside(796).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorDrivewayExitNorthSouthSouthside = new TransportHighwayFloorDrivewayExitNorthSouthSouthside(797).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorDrivewayNorthSouthNorthside = new TransportHighwayFloorDrivewayNorthSouthNorthside(798).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorDrivewayNorthSouthSouthside = new TransportHighwayFloorDrivewayNorthSouthSouthside(799).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorExitEastWestEast = new TransportHighwayFloorExitEastWestEast(800).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorExitEastWestWestside = new TransportHighwayFloorExitEastWestWestside(801).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorExitNorthSouthNorthside = new TransportHighwayFloorExitNorthSouthNorthside(802).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorExitNorthSouthSouthside = new TransportHighwayFloorExitNorthSouthSouthside(803).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorLNorthEast = new TransportHighwayFloorLNorthEast(804).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorLNorthWest = new TransportHighwayFloorLNorthWest(805).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorLSouthEast = new TransportHighwayFloorLSouthEast(806).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorLSouthWest = new TransportHighwayFloorLSouthWest(807).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorTNorthEastWest = new TransportHighwayFloorTNorthEastWest(808).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorTNorthSouthEast = new TransportHighwayFloorTNorthSouthEast(809).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorTNorthSouthWest = new TransportHighwayFloorTNorthSouthWest(810).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorTSouthEastWest = new TransportHighwayFloorTSouthEastWest(811).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayFloorXNorthEastSouthWest = new TransportHighwayFloorXNorthEastSouthWest(812).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayLNorthEast = new TransportHighwayLNorthEast(813).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayLNorthWest = new TransportHighwayLNorthWest(814).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayLSouthEast = new TransportHighwayLSouthEast(815).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayLSouthWest = new TransportHighwayLSouthWest(816).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayTNorthEastWest = new TransportHighwayTNorthEastWest(817).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayTNorthSouthEast = new TransportHighwayTNorthSouthEast(818).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayTNorthSouthWest = new TransportHighwayTNorthSouthWest(819).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayTSouthEastWest = new TransportHighwayTSouthEastWest(820).setCreativeTab(IMSM.TransportRoads); + public static Block TransportHighwayXNorthEastSouthWest = new TransportHighwayXNorthEastSouthWest(821).setCreativeTab(IMSM.TransportRoads); + public static Block TransportPublicConnectorHightram_TramHightram_EastTram_West = new TransportPublicConnectorHightram_TramHightram_EastTram_West(822).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicConnectorHightram_TramHightram_NorthTram_South = new TransportPublicConnectorHightram_TramHightram_NorthTram_South(823).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicConnectorHightram_TramHightram_SouthTram_North = new TransportPublicConnectorHightram_TramHightram_SouthTram_North(824).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicConnectorHightram_TramHightram_WestTram_East = new TransportPublicConnectorHightram_TramHightram_WestTram_East(825).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightram1EastWest = new TransportPublicHightram1EastWest(826).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightram1NorthSouth = new TransportPublicHightram1NorthSouth(827).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramEEast = new TransportPublicHightramEEast(828).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramENorth = new TransportPublicHightramENorth(829).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramESouth = new TransportPublicHightramESouth(830).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramEWest = new TransportPublicHightramEWest(831).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramLNorthEast = new TransportPublicHightramLNorthEast(832).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramLNorthWest = new TransportPublicHightramLNorthWest(833).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramLSouthEast = new TransportPublicHightramLSouthEast(834).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramLSouthWest = new TransportPublicHightramLSouthWest(835).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramStationEastWest = new TransportPublicHightramStationEastWest(836).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramStationNorthSouth = new TransportPublicHightramStationNorthSouth(837).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicHightramXNorthEastSouthWest = new TransportPublicHightramXNorthEastSouthWest(838).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram1EastWest = new TransportPublicTram1EastWest(839).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram1NorthSouth = new TransportPublicTram1NorthSouth(840).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramEEast = new TransportPublicTramEEast(841).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramENorth = new TransportPublicTramENorth(842).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramESouth = new TransportPublicTramESouth(843).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramEWest = new TransportPublicTramEWest(844).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramLNorthEast = new TransportPublicTramLNorthEast(845).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramLNorthWest = new TransportPublicTramLNorthWest(846).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramLSouthEast = new TransportPublicTramLSouthEast(847).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramLSouthWest = new TransportPublicTramLSouthWest(848).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram_on_road1EastWest = new TransportPublicTram_on_road1EastWest(849).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram_on_road1NorthSouth = new TransportPublicTram_on_road1NorthSouth(850).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram_on_roadEEast = new TransportPublicTram_on_roadEEast(851).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram_on_roadENorth = new TransportPublicTram_on_roadENorth(852).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram_on_roadESouth = new TransportPublicTram_on_roadESouth(853).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram_on_roadEWest = new TransportPublicTram_on_roadEWest(854).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram_on_roadLNorthEast = new TransportPublicTram_on_roadLNorthEast(855).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram_on_roadLNorthWest = new TransportPublicTram_on_roadLNorthWest(856).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram_on_roadLSouthEast = new TransportPublicTram_on_roadLSouthEast(857).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTram_on_roadLSouthWest = new TransportPublicTram_on_roadLSouthWest(858).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramStationEastWest = new TransportPublicTramStationEastWest(859).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramStationNorthSouth = new TransportPublicTramStationNorthSouth(860).setCreativeTab(IMSM.TransportPublic); + public static Block TransportPublicTramXNorthEastSouthWest = new TransportPublicTramXNorthEastSouthWest(861).setCreativeTab(IMSM.TransportPublic); + public static Block TransportRoad1EastWest = new TransportRoad1EastWest(862).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoad1NorthSouth = new TransportRoad1NorthSouth(863).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadEEast = new TransportRoadEEast(864).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadENorth = new TransportRoadENorth(865).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadESouth = new TransportRoadESouth(866).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadEWest = new TransportRoadEWest(867).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadLNorthEast = new TransportRoadLNorthEast(868).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadLNorthWest = new TransportRoadLNorthWest(869).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadLSouthEast = new TransportRoadLSouthEast(870).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadLSouthWest = new TransportRoadLSouthWest(871).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadTNorthEastWest = new TransportRoadTNorthEastWest(872).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadTNorthSouthEast = new TransportRoadTNorthSouthEast(873).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadTNorthSouthWest = new TransportRoadTNorthSouthWest(874).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadTSouthEastWest = new TransportRoadTSouthEastWest(875).setCreativeTab(IMSM.TransportRoads); + public static Block TransportRoadXNorthEastSouthWest = new TransportRoadXNorthEastSouthWest(876).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreet1EastWest = new TransportStreet1EastWest(877).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreet1NorthSouth = new TransportStreet1NorthSouth(878).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetEEast = new TransportStreetEEast(879).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetENorth = new TransportStreetENorth(880).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetESouth = new TransportStreetESouth(881).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetEWest = new TransportStreetEWest(882).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetLNorthEast = new TransportStreetLNorthEast(883).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetLNorthWest = new TransportStreetLNorthWest(884).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetLSouthEast = new TransportStreetLSouthEast(885).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetLSouthWest = new TransportStreetLSouthWest(886).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetRoundaboutNorthEastSouthWest = new TransportStreetRoundaboutNorthEastSouthWest(887).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetTNorthEastWest = new TransportStreetTNorthEastWest(888).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetTNorthSouthEast = new TransportStreetTNorthSouthEast(889).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetTNorthSouthWest = new TransportStreetTNorthSouthWest(890).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetTSouthEastWest = new TransportStreetTSouthEastWest(891).setCreativeTab(IMSM.TransportRoads); + public static Block TransportStreetXNorthEastSouthWest = new TransportStreetXNorthEastSouthWest(892).setCreativeTab(IMSM.TransportRoads); + public static Block TransportWater1CornerNorthEast = new TransportWater1CornerNorthEast(893).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater1CornerNorthWest = new TransportWater1CornerNorthWest(894).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater1CornerSouthEast = new TransportWater1CornerSouthEast(895).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater1CornerSouthWest = new TransportWater1CornerSouthWest(896).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater2CornerEast = new TransportWater2CornerEast(897).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater2CornerNorth = new TransportWater2CornerNorth(898).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater2CornerSouth = new TransportWater2CornerSouth(899).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater2CornerWest = new TransportWater2CornerWest(900).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater3CornerNorthEast_NorthWest_SouthEast = new TransportWater3CornerNorthEast_NorthWest_SouthEast(901).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater3CornerNorthEast_NorthWest_SouthWest = new TransportWater3CornerNorthEast_NorthWest_SouthWest(902).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater3CornerSouthEast_SouthWest_NorthEast = new TransportWater3CornerSouthEast_SouthWest_NorthEast(903).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater3CornerSouthEast_SouthWest_NorthWest = new TransportWater3CornerSouthEast_SouthWest_NorthWest(904).setCreativeTab(IMSM.TransportWater); + public static Block TransportWater4CornerNorthSouthEastWest = new TransportWater4CornerNorthSouthEastWest(905).setCreativeTab(IMSM.TransportWater); + public static Block UtilityPower_NuclearEast = new UtilityPower_NuclearEast(906).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_NuclearNorth = new UtilityPower_NuclearNorth(907).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_NuclearSouth = new UtilityPower_NuclearSouth(908).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_NuclearWest = new UtilityPower_NuclearWest(909).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_OilCoalEast = new UtilityPower_OilCoalEast(910).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_OilCoalNorth = new UtilityPower_OilCoalNorth(911).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_OilCoalSouth = new UtilityPower_OilCoalSouth(912).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_OilCoalWest = new UtilityPower_OilCoalWest(913).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_SunNorthEastSouthWest = new UtilityPower_SunNorthEastSouthWest(914).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_WindEast = new UtilityPower_WindEast(915).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_WindNorth = new UtilityPower_WindNorth(916).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_WindSouth = new UtilityPower_WindSouth(917).setCreativeTab(IMSM.Utility); + public static Block UtilityPower_WindWest = new UtilityPower_WindWest(918).setCreativeTab(IMSM.Utility); + public static Block UtilityPumpjackEastWest = new UtilityPumpjackEastWest(919).setCreativeTab(IMSM.Utility); + public static Block UtilityPumpjackNorthSouth = new UtilityPumpjackNorthSouth(920).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_BurningEast = new UtilityScrap_BurningEast(921).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_BurningNorth = new UtilityScrap_BurningNorth(922).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_BurningSouth = new UtilityScrap_BurningSouth(923).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_BurningWest = new UtilityScrap_BurningWest(924).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_HeapEast = new UtilityScrap_HeapEast(925).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_HeapNorth = new UtilityScrap_HeapNorth(926).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_HeapSouth = new UtilityScrap_HeapSouth(927).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_HeapWest = new UtilityScrap_HeapWest(928).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_RecycleEast = new UtilityScrap_RecycleEast(929).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_RecycleNorth = new UtilityScrap_RecycleNorth(930).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_RecycleSouth = new UtilityScrap_RecycleSouth(931).setCreativeTab(IMSM.Utility); + public static Block UtilityScrap_RecycleWest = new UtilityScrap_RecycleWest(932).setCreativeTab(IMSM.Utility); + public static Block UtilityWater_PumpEast = new UtilityWater_PumpEast(933).setCreativeTab(IMSM.Utility); + public static Block UtilityWater_PumpNorth = new UtilityWater_PumpNorth(934).setCreativeTab(IMSM.Utility); + public static Block UtilityWater_PumpSouth = new UtilityWater_PumpSouth(935).setCreativeTab(IMSM.Utility); + public static Block UtilityWater_PumpWest = new UtilityWater_PumpWest(936).setCreativeTab(IMSM.Utility); + public static Block UtilityWater_TowerNorthEastSouthWest = new UtilityWater_TowerNorthEastSouthWest(937).setCreativeTab(IMSM.Utility); + public static Block UtilityWater_TreatmentEast = new UtilityWater_TreatmentEast(938).setCreativeTab(IMSM.Utility); + public static Block UtilityWater_TreatmentNorth = new UtilityWater_TreatmentNorth(939).setCreativeTab(IMSM.Utility); + public static Block UtilityWater_TreatmentSouth = new UtilityWater_TreatmentSouth(940).setCreativeTab(IMSM.Utility); + public static Block UtilityWater_TreatmentWest = new UtilityWater_TreatmentWest(941).setCreativeTab(IMSM.Utility); - public static Block BlockAirBalloon = new BlockAirBalloon(942).setHardness(1.0F).setUnlocalizedName("BlockAirBalloon").setCreativeTab(IMSM.Structures); - public static Block BlockAirplane = new BlockAirplane(943).setHardness(1.0F).setUnlocalizedName("BlockAirplane").setCreativeTab(IMSM.Structures); - //public static Block BlockApplepie = new BlockApplepie(944).setHardness(1.0F).setUnlocalizedName("BlockApplepie").setCreativeTab(IMSM.Structures); - public static Block BlockArena1 = new BlockArena1(945).setHardness(1.0F).setUnlocalizedName("BlockArena1").setCreativeTab(IMSM.Structures); - public static Block BlockArena2 = new BlockArena2(946).setHardness(1.0F).setUnlocalizedName("BlockArena2").setCreativeTab(IMSM.Structures); - public static Block BlockBigPyramid = new BlockBigPyramid(947).setHardness(1.0F).setUnlocalizedName("BlockBigPyramid").setCreativeTab(IMSM.Other); - public static Block BlockBoat = new BlockBoat(948).setHardness(1.0F).setUnlocalizedName("BlockBoat").setCreativeTab(IMSM.Structures); - public static Block BlockBunker = new BlockBunker(949).setHardness(1.0F).setUnlocalizedName("BlockBunker").setCreativeTab(IMSM.Structures); - //public static Block BlockCactus2 = new BlockCactus2(950).setHardness(1.0F).setUnlocalizedName("BlockCactus2").setCreativeTab(IMSM.Structures); - //public static Block BlockCake2 = new BlockCake2(951).setHardness(1.0F).setUnlocalizedName("BlockCake2").setCreativeTab(IMSM.Structures); - public static Block BlockCastleTower = new BlockCastleTower(952).setHardness(1.0F).setUnlocalizedName("BlockCastleTower").setCreativeTab(IMSM.Structures); - //public static Block BlockCave = new BlockCave(953).setHardness(1.0F).setUnlocalizedName("BlockCave").setCreativeTab(IMSM.Structures); - //public static Block BlockColumn = new BlockColumn(954).setHardness(1.0F).setUnlocalizedName("BlockColumn").setCreativeTab(IMSM.Structures); - public static Block BlockCosyHouse = new BlockCosyHouse(955).setHardness(1.0F).setUnlocalizedName("BlockCosyHouse").setCreativeTab(IMSM.Structures); - public static Block BlockDungeon = new BlockDungeon(956).setHardness(1.0F).setUnlocalizedName("BlockDungeon").setCreativeTab(IMSM.Structures); - public static Block BlockEnchantmentRoom = new BlockEnchantmentRoom(957).setHardness(1.0F).setUnlocalizedName("BlockEnchantmentRoom").setCreativeTab(IMSM.Structures); - public static Block BlockFarm2 = new BlockFarm2(958).setHardness(1.0F).setUnlocalizedName("BlockFarm2").setCreativeTab(IMSM.Structures); - public static Block BlockFarm3 = new BlockFarm3(959).setHardness(1.0F).setUnlocalizedName("BlockFarm3").setCreativeTab(IMSM.Structures); - public static Block BlockFarm4 = new BlockFarm4(960).setHardness(1.0F).setUnlocalizedName("BlockFarm4").setCreativeTab(IMSM.Structures); - public static Block BlockFarm = new BlockFarm(961).setHardness(1.0F).setUnlocalizedName("BlockFarm").setCreativeTab(IMSM.Structures); - //public static Block BlockFloatingSphere = new BlockFloatingSphere(962).setHardness(1.0F).setUnlocalizedName("BlockFloatingSphere").setCreativeTab(IMSM.Structures); - public static Block BlockGiantTree = new BlockGiantTree(963).setHardness(1.0F).setUnlocalizedName("BlockGiantTree").setCreativeTab(IMSM.Structures); - //public static Block BlockGlassHouse = new BlockGlassHouse(964).setHardness(1.0F).setUnlocalizedName("BlockGlassHouse").setCreativeTab(IMSM.Structures); - public static Block BlockHountedHouse = new BlockHountedHouse(965).setHardness(1.0F).setUnlocalizedName("BlockHountedHouse").setCreativeTab(IMSM.Structures); - //public static Block BlockHouse2 = new BlockHouse2(966).setHardness(1.0F).setUnlocalizedName("BlockHouse2").setCreativeTab(IMSM.Structures); - public static Block BlockHouse = new BlockHouse(967).setHardness(1.0F).setUnlocalizedName("BlockHouse").setCreativeTab(IMSM.Structures); - public static Block BlockHouseTrap1 = new BlockHouseTrap1(968).setHardness(1.0F).setUnlocalizedName("BlockHouseTrap1").setCreativeTab(IMSM.Structures); - public static Block BlockHouseTrap2 = new BlockHouseTrap2(969).setHardness(1.0F).setUnlocalizedName("BlockHouseTrap2").setCreativeTab(IMSM.Structures); - //public static Block BlockLeaves2 = new BlockLeaves2(970).setHardness(1.0F).setUnlocalizedName("BlockLeaves2").setCreativeTab(IMSM.Structures); - public static Block BlockLighthouse = new BlockLighthouse(971).setHardness(1.0F).setUnlocalizedName("BlockLighthouse").setCreativeTab(IMSM.Structures); - public static Block BlockMegaHouse2 = new BlockMegaHouse2(972).setHardness(1.0F).setUnlocalizedName("BlockMegaHouse2").setCreativeTab(IMSM.Structures); - public static Block BlockMegaHouse = new BlockMegaHouse(973).setHardness(1.0F).setUnlocalizedName("BlockMegaHouse").setCreativeTab(IMSM.Structures); - public static Block BlockMegaTower = new BlockMegaTower(974).setHardness(1.0F).setUnlocalizedName("BlockMegaTower").setCreativeTab(IMSM.Structures); - //public static Block BlockPenIron = new BlockPenIron(975).setHardness(1.0F).setUnlocalizedName("BlockPenIron").setCreativeTab(IMSM.Structures); - //public static Block BlockPenNether = new BlockPenNether(976).setHardness(1.0F).setUnlocalizedName("BlockPenNether").setCreativeTab(IMSM.Structures); - //public static Block BlockPenWood = new BlockPenWood(977).setHardness(1.0F).setUnlocalizedName("BlockPenWood").setCreativeTab(IMSM.Structures); - public static Block BlockPlane = new BlockPlane(978).setHardness(1.0F).setUnlocalizedName("BlockPlane").setCreativeTab(IMSM.Structures); - public static Block BlockPrison2 = new BlockPrison2(979).setHardness(1.0F).setUnlocalizedName("BlockPrison2").setCreativeTab(IMSM.Structures); - public static Block BlockPrison = new BlockPrison(980).setHardness(1.0F).setUnlocalizedName("BlockPrison").setCreativeTab(IMSM.Structures); - public static Block BlockPyramid = new BlockPyramid(981).setHardness(1.0F).setUnlocalizedName("BlockPyramid").setCreativeTab(IMSM.Structures); - public static Block BlockRollerCoaster2 = new BlockRollerCoaster2(982).setHardness(1.0F).setUnlocalizedName("BlockRollerCoaster2").setCreativeTab(IMSM.Structures); - public static Block BlockRollercoaster = new BlockRollercoaster(983).setHardness(1.0F).setUnlocalizedName("BlockRollercoaster").setCreativeTab(IMSM.Structures); - //public static Block BlockShelter = new BlockShelter(984).setHardness(1.0F).setUnlocalizedName("BlockShelter").setCreativeTab(IMSM.Structures); - //public static Block BlockSkyscraper2 = new BlockSkyscraper2(985).setHardness(1.0F).setUnlocalizedName("BlockSkyscraper2").setCreativeTab(IMSM.Structures); - public static Block BlockSkyscraper = new BlockSkyscraper(986).setHardness(1.0F).setUnlocalizedName("BlockSkyscraper").setCreativeTab(IMSM.Structures); - //public static Block BlockStadium2 = new BlockStadium2(987).setHardness(1.0F).setUnlocalizedName("BlockStadium2").setCreativeTab(IMSM.Structures); - public static Block BlockStadium = new BlockStadium(988).setHardness(1.0F).setUnlocalizedName("BlockStadium").setCreativeTab(IMSM.Other); - //public static Block BlockStandardBrickHouse = new BlockStandardBrickHouse(989).setHardness(1.0F).setUnlocalizedName("BlockStandardBrickHouse").setCreativeTab(IMSM.Structures); - public static Block BlockStoreHouse = new BlockStoreHouse(990).setHardness(1.0F).setUnlocalizedName("BlockStoreHouse").setCreativeTab(IMSM.Structures); - //public static Block BlockStreet = new BlockStreet(991).setHardness(1.0F).setUnlocalizedName("BlockStreet").setCreativeTab(IMSM.Structures); - public static Block BlockTorch2 = new BlockTorch2(992).setHardness(1.0F).setUnlocalizedName("BlockTorch2").setCreativeTab(IMSM.Structures); - public static Block BlockTower = new BlockTower(993).setHardness(1.0F).setUnlocalizedName("BlockTower").setCreativeTab(IMSM.Structures); - public static Block BlockWaterSlide = new BlockWaterSlide(994).setHardness(1.0F).setUnlocalizedName("BlockWaterSlide").setCreativeTab(IMSM.Structures); + public static Block BlockAirBalloon = new BlockAirBalloon(942).setCreativeTab(IMSM.Structures); + public static Block BlockAirplane = new BlockAirplane(943).setCreativeTab(IMSM.Structures); + //public static Block BlockApplepie = new BlockApplepie(944).setCreativeTab(IMSM.Structures); + public static Block BlockArena1 = new BlockArena1(945).setCreativeTab(IMSM.Structures); + public static Block BlockArena2 = new BlockArena2(946).setCreativeTab(IMSM.Structures); + public static Block BlockBigPyramid = new BlockBigPyramid(947).setCreativeTab(IMSM.Other); + public static Block BlockBoat = new BlockBoat(948).setCreativeTab(IMSM.Structures); + public static Block BlockBunker = new BlockBunker(949).setCreativeTab(IMSM.Structures); + //public static Block BlockCactus2 = new BlockCactus2(950).setCreativeTab(IMSM.Structures); + //public static Block BlockCake2 = new BlockCake2(951).setCreativeTab(IMSM.Structures); + public static Block BlockCastleTower = new BlockCastleTower(952).setCreativeTab(IMSM.Structures); + //public static Block BlockCave = new BlockCave(953).setCreativeTab(IMSM.Structures); + //public static Block BlockColumn = new BlockColumn(954).setCreativeTab(IMSM.Structures); + public static Block BlockCosyHouse = new BlockCosyHouse(955).setCreativeTab(IMSM.Structures); + public static Block BlockDungeon = new BlockDungeon(956).setCreativeTab(IMSM.Structures); + public static Block BlockEnchantmentRoom = new BlockEnchantmentRoom(957).setCreativeTab(IMSM.Structures); + public static Block BlockFarm2 = new BlockFarm2(958).setCreativeTab(IMSM.Structures); + public static Block BlockFarm3 = new BlockFarm3(959).setCreativeTab(IMSM.Structures); + public static Block BlockFarm4 = new BlockFarm4(960).setCreativeTab(IMSM.Structures); + public static Block BlockFarm = new BlockFarm(961).setCreativeTab(IMSM.Structures); + //public static Block BlockFloatingSphere = new BlockFloatingSphere(962).setCreativeTab(IMSM.Structures); + public static Block BlockGiantTree = new BlockGiantTree(963).setCreativeTab(IMSM.Structures); + //public static Block BlockGlassHouse = new BlockGlassHouse(964).setCreativeTab(IMSM.Structures); + public static Block BlockHountedHouse = new BlockHountedHouse(965).setCreativeTab(IMSM.Structures); + //public static Block BlockHouse2 = new BlockHouse2(966).setCreativeTab(IMSM.Structures); + public static Block BlockHouse = new BlockHouse(967).setCreativeTab(IMSM.Structures); + public static Block BlockHouseTrap1 = new BlockHouseTrap1(968).setCreativeTab(IMSM.Structures); + public static Block BlockHouseTrap2 = new BlockHouseTrap2(969).setCreativeTab(IMSM.Structures); + //public static Block BlockLeaves2 = new BlockLeaves2(970).setCreativeTab(IMSM.Structures); + public static Block BlockLighthouse = new BlockLighthouse(971).setCreativeTab(IMSM.Structures); + public static Block BlockMegaHouse2 = new BlockMegaHouse2(972).setCreativeTab(IMSM.Structures); + public static Block BlockMegaHouse = new BlockMegaHouse(973).setCreativeTab(IMSM.Structures); + public static Block BlockMegaTower = new BlockMegaTower(974).setCreativeTab(IMSM.Structures); + //public static Block BlockPenIron = new BlockPenIron(975).setCreativeTab(IMSM.Structures); + //public static Block BlockPenNether = new BlockPenNether(976).setCreativeTab(IMSM.Structures); + //public static Block BlockPenWood = new BlockPenWood(977).setCreativeTab(IMSM.Structures); + public static Block BlockPlane = new BlockPlane(978).setCreativeTab(IMSM.Structures); + public static Block BlockPrison2 = new BlockPrison2(979).setCreativeTab(IMSM.Structures); + public static Block BlockPrison = new BlockPrison(980).setCreativeTab(IMSM.Structures); + public static Block BlockPyramid = new BlockPyramid(981).setCreativeTab(IMSM.Structures); + public static Block BlockRollerCoaster2 = new BlockRollerCoaster2(982).setCreativeTab(IMSM.Structures); + public static Block BlockRollercoaster = new BlockRollercoaster(983).setCreativeTab(IMSM.Structures); + //public static Block BlockShelter = new BlockShelter(984).setCreativeTab(IMSM.Structures); + //public static Block BlockSkyscraper2 = new BlockSkyscraper2(985).setCreativeTab(IMSM.Structures); + public static Block BlockSkyscraper = new BlockSkyscraper(986).setCreativeTab(IMSM.Structures); + //public static Block BlockStadium2 = new BlockStadium2(987).setCreativeTab(IMSM.Structures); + public static Block BlockStadium = new BlockStadium(988).setCreativeTab(IMSM.Other); + //public static Block BlockStandardBrickHouse = new BlockStandardBrickHouse(989).setCreativeTab(IMSM.Structures); + public static Block BlockStoreHouse = new BlockStoreHouse(990).setCreativeTab(IMSM.Structures); + //public static Block BlockStreet = new BlockStreet(991).setCreativeTab(IMSM.Structures); + public static Block BlockTorch2 = new BlockTorch2(992).setCreativeTab(IMSM.Structures); + public static Block BlockTower = new BlockTower(993).setCreativeTab(IMSM.Structures); + public static Block BlockWaterSlide = new BlockWaterSlide(994).setCreativeTab(IMSM.Structures); - public static Block OtherBrickHouse = new OtherBrickHouse(200).setHardness(1.0F).setUnlocalizedName("OtherBrickHouse").setCreativeTab(IMSM.Other); - public static Block OtherGrandHouse = new OtherGrandHouse(201).setHardness(1.0F).setUnlocalizedName("OtherGrandHouse").setCreativeTab(IMSM.Structures); - public static Block OtherStable = new OtherStable(203).setHardness(1.0F).setUnlocalizedName("OtherStable").setCreativeTab(IMSM.Other); - public static Block OtherSurvivorHouse2 = new OtherSurvivorHouse2(204).setHardness(1.0F).setUnlocalizedName("OtherSurvivorHouse2").setCreativeTab(IMSM.Other); - public static Block OtherSurvivorHouse3 = new OtherSurvivorHouse3(205).setHardness(1.0F).setUnlocalizedName("OtherSurvivorHouse3").setCreativeTab(IMSM.Other); - public static Block OtherSurvivorHouse4 = new OtherSurvivorHouse4(206).setHardness(1.0F).setUnlocalizedName("OtherSurvivorHouse4").setCreativeTab(IMSM.Other); - public static Block OtherSurvivorHouse5 = new OtherSurvivorHouse5(207).setHardness(1.0F).setUnlocalizedName("OtherSurvivorHouse5").setCreativeTab(IMSM.Other); - public static Block OtherSurvivorHouse6 = new OtherSurvivorHouse6(208).setHardness(1.0F).setUnlocalizedName("OtherSurvivorHouse6").setCreativeTab(IMSM.Structures); - public static Block OtherSurvivorHouse7 = new OtherSurvivorHouse7(209).setHardness(1.0F).setUnlocalizedName("OtherSurvivorHouse7").setCreativeTab(IMSM.Structures); - public static Block OtherSurvivorHouse8 = new OtherSurvivorHouse8(210).setHardness(1.0F).setUnlocalizedName("OtherSurvivorHouse8").setCreativeTab(IMSM.Other); - public static Block OtherSurvivorHouse = new OtherSurvivorHouse(211).setHardness(1.0F).setUnlocalizedName("OtherSurvivorHouse").setCreativeTab(IMSM.Other); - public static Block OtherTemple = new OtherTemple(212).setHardness(1.0F).setUnlocalizedName("OtherTemple").setCreativeTab(IMSM.Other); - public static Block SurvivalSmallBuilding = new SurvivalSmallBuilding(213).setHardness(1.0F).setUnlocalizedName("SurvivalSmallBuilding").setCreativeTab(IMSM.Structures); - public static Block SurvivalWoodenHouse = new SurvivalWoodenHouse(214).setHardness(1.0F).setUnlocalizedName("SurvivalWoodenHouse").setCreativeTab(IMSM.Structures); - public static Block WoodenHouse = new WoodenHouse(215).setHardness(1.0F).setUnlocalizedName("WoodenHouse").setCreativeTab(IMSM.Structures); - public static Block BlockCheckerboard = new BlockCheckerboard(200).setHardness(1.0F).setUnlocalizedName("BlockCheckerboard").setCreativeTab(IMSM.Other); - //public static Block BlockAtlantis = new BlockAtlantis(200).setHardness(1.0F).setUnlocalizedName("BlockAtlantis").setCreativeTab(IMSM.WorldGeneration); + public static Block OtherBrickHouse = new OtherBrickHouse(200).setCreativeTab(IMSM.Other); + public static Block OtherGrandHouse = new OtherGrandHouse(201).setCreativeTab(IMSM.Structures); + public static Block OtherStable = new OtherStable(203).setCreativeTab(IMSM.Other); + public static Block OtherSurvivorHouse2 = new OtherSurvivorHouse2(204).setCreativeTab(IMSM.Other); + public static Block OtherSurvivorHouse3 = new OtherSurvivorHouse3(205).setCreativeTab(IMSM.Other); + public static Block OtherSurvivorHouse4 = new OtherSurvivorHouse4(206).setCreativeTab(IMSM.Other); + public static Block OtherSurvivorHouse5 = new OtherSurvivorHouse5(207).setCreativeTab(IMSM.Other); + public static Block OtherSurvivorHouse6 = new OtherSurvivorHouse6(208).setCreativeTab(IMSM.Structures); + public static Block OtherSurvivorHouse7 = new OtherSurvivorHouse7(209).setCreativeTab(IMSM.Structures); + public static Block OtherSurvivorHouse8 = new OtherSurvivorHouse8(210).setCreativeTab(IMSM.Other); + public static Block OtherSurvivorHouse = new OtherSurvivorHouse(211).setCreativeTab(IMSM.Other); + public static Block OtherTemple = new OtherTemple(212).setCreativeTab(IMSM.Other); + public static Block SurvivalSmallBuilding = new SurvivalSmallBuilding(213).setCreativeTab(IMSM.Structures); + public static Block SurvivalWoodenHouse = new SurvivalWoodenHouse(214).setCreativeTab(IMSM.Structures); + public static Block WoodenHouse = new WoodenHouse(215).setCreativeTab(IMSM.Structures); + public static Block BlockCheckerboard = new BlockCheckerboard(200).setCreativeTab(IMSM.Other); + //public static Block BlockAtlantis = new BlockAtlantis(200).setCreativeTab(IMSM.WorldGeneration); - //public static Block Remover16256 = new Remover16256(995).setHardness(1.0F).setUnlocalizedName("Remover16256").setCreativeTab(IMSM.Remover); - //public static Block Remover1632 = new Remover1632(996).setHardness(1.0F).setUnlocalizedName("Remover1632").setCreativeTab(IMSM.Remover); - //public static Block Remover168 = new Remover168(997).setHardness(1.0F).setUnlocalizedName("Remover168").setCreativeTab(IMSM.Remover); - public static Block Remover16 = new Remover16(998).setHardness(1.0F).setUnlocalizedName("Remover16").setCreativeTab(IMSM.Remover); - //public static Block Remover3216 = new Remover3216(999).setHardness(1.0F).setUnlocalizedName("Remover3216").setCreativeTab(IMSM.Remover); - //public static Block Remover32256 = new Remover32256(1000).setHardness(1.0F).setUnlocalizedName("Remover32256").setCreativeTab(IMSM.Remover); - //public static Block Remover328 = new Remover328(1001).setHardness(1.0F).setUnlocalizedName("Remover328").setCreativeTab(IMSM.Remover); - public static Block Remover32 = new Remover32(1002).setHardness(1.0F).setUnlocalizedName("Remover32").setCreativeTab(IMSM.Remover); - //public static Block Remover64256 = new Remover64256(1003).setHardness(1.0F).setUnlocalizedName("Remover64256").setCreativeTab(IMSM.Remover); - public static Block Remover64 = new Remover64(1004).setHardness(1.0F).setUnlocalizedName("Remover64").setCreativeTab(IMSM.Remover); - //public static Block Remover816 = new Remover816(1005).setHardness(1.0F).setUnlocalizedName("Remover816").setCreativeTab(IMSM.Remover); - //public static Block Remover8256 = new Remover8256(1006).setHardness(1.0F).setUnlocalizedName("Remover8256").setCreativeTab(IMSM.Remover); - //public static Block Remover832 = new Remover832(1007).setHardness(1.0F).setUnlocalizedName("Remover832").setCreativeTab(IMSM.Remover); - public static Block Remover8 = new Remover8(1008).setHardness(1.0F).setUnlocalizedName("Remover8").setCreativeTab(IMSM.Remover); - public static Block RemoverLast = new RemoverLast(1008).setHardness(1.0F).setUnlocalizedName("RemoverLast").setCreativeTab(IMSM.Remover); - public static Block BlockBigWorld = new BlockBigWorld(200).setHardness(1.0F).setUnlocalizedName("BlockBigWorld").setCreativeTab(IMSM.Other); + //public static Block Remover16256 = new Remover16256(995).setCreativeTab(IMSM.Remover); + //public static Block Remover1632 = new Remover1632(996).setCreativeTab(IMSM.Remover); + //public static Block Remover168 = new Remover168(997).setCreativeTab(IMSM.Remover); + public static Block Remover16 = new Remover16(998).setCreativeTab(IMSM.Remover); + //public static Block Remover3216 = new Remover3216(999).setCreativeTab(IMSM.Remover); + //public static Block Remover32256 = new Remover32256(1000).setCreativeTab(IMSM.Remover); + //public static Block Remover328 = new Remover328(1001).setCreativeTab(IMSM.Remover); + public static Block Remover32 = new Remover32(1002).setCreativeTab(IMSM.Remover); + //public static Block Remover64256 = new Remover64256(1003).setCreativeTab(IMSM.Remover); + public static Block Remover64 = new Remover64(1004).setCreativeTab(IMSM.Remover); + //public static Block Remover816 = new Remover816(1005).setCreativeTab(IMSM.Remover); + //public static Block Remover8256 = new Remover8256(1006).setCreativeTab(IMSM.Remover); + //public static Block Remover832 = new Remover832(1007).setCreativeTab(IMSM.Remover); + public static Block Remover8 = new Remover8(1008).setCreativeTab(IMSM.Remover); + public static Block RemoverLast = new RemoverLast(1008).setCreativeTab(IMSM.Remover); + public static Block BlockBigWorld = new BlockBigWorld(200).setCreativeTab(IMSM.Other); - public static Block RandomAirballoon2 = new RandomAirballoon2(200).setHardness(1.0F).setUnlocalizedName("RandomAirballoon2").setCreativeTab(IMSM.Structures); - public static Block RandomEntrance = new RandomEntrance(201).setHardness(1.0F).setUnlocalizedName("RandomEntrance").setCreativeTab(IMSM.Other); - public static Block RandomFlyingShip = new RandomFlyingShip(202).setHardness(1.0F).setUnlocalizedName("RandomFlyingShip").setCreativeTab(IMSM.Structures); - public static Block RandomGreenTent = new RandomGreenTent(203).setHardness(1.0F).setUnlocalizedName("RandomGreenTent").setCreativeTab(IMSM.Structures); - public static Block RandomGreyTent = new RandomGreyTent(204).setHardness(1.0F).setUnlocalizedName("RandomGreyTent").setCreativeTab(IMSM.Structures); - public static Block RandomLightHouse = new RandomLightHouse(205).setHardness(1.0F).setUnlocalizedName("RandomLightHouse").setCreativeTab(IMSM.Structures); - public static Block RandomMinerTent = new RandomMinerTent(206).setHardness(1.0F).setUnlocalizedName("RandomMinerTent").setCreativeTab(IMSM.Other); - public static Block RandomNetherEntranceSurvival = new RandomNetherEntranceSurvival(207).setHardness(1.0F).setUnlocalizedName("RandomNetherEntranceSurvival").setCreativeTab(IMSM.Other); - public static Block RandomRandomBrickHouse = new RandomRandomBrickHouse(208).setHardness(1.0F).setUnlocalizedName("RandomRandomBrickHouse").setCreativeTab(IMSM.Other); - public static Block RandomSurvivalHouse1 = new RandomSurvivalHouse1(209).setHardness(1.0F).setUnlocalizedName("RandomSurvivalHouse1").setCreativeTab(IMSM.Other); - public static Block RandomSurvivalHouseSandstone = new RandomSurvivalHouseSandstone(210).setHardness(1.0F).setUnlocalizedName("RandomSurvivalHouseSandstone").setCreativeTab(IMSM.Other); - public static Block RandomTentCamp = new RandomTentCamp(211).setHardness(1.0F).setUnlocalizedName("RandomTentCamp").setCreativeTab(IMSM.Structures); - public static Block RandomWoodenHouse = new RandomWoodenHouse(212).setHardness(1.0F).setUnlocalizedName("RandomWoodenHouse").setCreativeTab(IMSM.Other); - public static Block BlockCloud = new BlockCloud(200).setHardness(1.0F).setUnlocalizedName("BlockCloud").setCreativeTab(IMSM.Other); + public static Block RandomAirballoon2 = new RandomAirballoon2(200).setCreativeTab(IMSM.Structures); + public static Block RandomEntrance = new RandomEntrance(201).setCreativeTab(IMSM.Other); + public static Block RandomFlyingShip = new RandomFlyingShip(202).setCreativeTab(IMSM.Structures); + public static Block RandomGreenTent = new RandomGreenTent(203).setCreativeTab(IMSM.Structures); + public static Block RandomGreyTent = new RandomGreyTent(204).setCreativeTab(IMSM.Structures); + public static Block RandomLightHouse = new RandomLightHouse(205).setCreativeTab(IMSM.Structures); + public static Block RandomMinerTent = new RandomMinerTent(206).setCreativeTab(IMSM.Other); + public static Block RandomNetherEntranceSurvival = new RandomNetherEntranceSurvival(207).setCreativeTab(IMSM.Other); + public static Block RandomRandomBrickHouse = new RandomRandomBrickHouse(208).setCreativeTab(IMSM.Other); + public static Block RandomSurvivalHouse1 = new RandomSurvivalHouse1(209).setCreativeTab(IMSM.Other); + public static Block RandomSurvivalHouseSandstone = new RandomSurvivalHouseSandstone(210).setCreativeTab(IMSM.Other); + public static Block RandomTentCamp = new RandomTentCamp(211).setCreativeTab(IMSM.Structures); + public static Block RandomWoodenHouse = new RandomWoodenHouse(212).setCreativeTab(IMSM.Other); + public static Block BlockCloud = new BlockCloud(200).setCreativeTab(IMSM.Other); - public static Block RandomBuildingComplex = new RandomBuildingComplex(200).setHardness(1.0F).setUnlocalizedName("RandomBuildingComplex").setCreativeTab(IMSM.Other); - public static Block RandomImmense_Buildingcomplex = new RandomImmense_Buildingcomplex(201).setHardness(1.0F).setUnlocalizedName("RandomImmense_Buildingcomplex").setCreativeTab(IMSM.Other); - public static Block RandomImmense_greenroof = new RandomImmense_greenroof(202).setHardness(1.0F).setUnlocalizedName("RandomImmense_greenroof").setCreativeTab(IMSM.Other); - public static Block RandomImmense_White_House = new RandomImmense_White_House(203).setHardness(1.0F).setUnlocalizedName("RandomImmense_White_House").setCreativeTab(IMSM.Other); - public static Block RandomImmense_WorkingBuilding = new RandomImmense_WorkingBuilding(204).setHardness(1.0F).setUnlocalizedName("RandomImmense_WorkingBuilding").setCreativeTab(IMSM.Other); - public static Block RandomLittlePalace = new RandomLittlePalace(205).setHardness(1.0F).setUnlocalizedName("RandomLittlePalace").setCreativeTab(IMSM.Other); - public static Block RandomLittleWoodenCabin = new RandomLittleWoodenCabin(206).setHardness(1.0F).setUnlocalizedName("RandomLittleWoodenCabin").setCreativeTab(IMSM.Structures); - public static Block RandomSandstoneBuilding = new RandomSandstoneBuilding(207).setHardness(1.0F).setUnlocalizedName("RandomSandstoneBuilding").setCreativeTab(IMSM.Other); - public static Block RandomSandStoneChurch = new RandomSandStoneChurch(208).setHardness(1.0F).setUnlocalizedName("RandomSandStoneChurch").setCreativeTab(IMSM.Other); - public static Block RandomSandstonewithFarm = new RandomSandstonewithFarm(209).setHardness(1.0F).setUnlocalizedName("RandomSandstonewithFarm").setCreativeTab(IMSM.Other); - public static Block RandomSimpleSandstone = new RandomSimpleSandstone(210).setHardness(1.0F).setUnlocalizedName("RandomSimpleSandstone").setCreativeTab(IMSM.Other); - public static Block RandomSpawnHouseProd = new RandomSpawnHouseProd(211).setHardness(1.0F).setUnlocalizedName("RandomSpawnHouseProd").setCreativeTab(IMSM.Other); - public static Block RandomWoodenStonebrickHouse = new RandomWoodenStonebrickHouse(212).setHardness(1.0F).setUnlocalizedName("RandomWoodenStonebrickHouse").setCreativeTab(IMSM.Structures); + public static Block RandomBuildingComplex = new RandomBuildingComplex(200).setCreativeTab(IMSM.Other); + public static Block RandomImmense_Buildingcomplex = new RandomImmense_Buildingcomplex(201).setCreativeTab(IMSM.Other); + public static Block RandomImmense_greenroof = new RandomImmense_greenroof(202).setCreativeTab(IMSM.Other); + public static Block RandomImmense_White_House = new RandomImmense_White_House(203).setCreativeTab(IMSM.Other); + public static Block RandomImmense_WorkingBuilding = new RandomImmense_WorkingBuilding(204).setCreativeTab(IMSM.Other); + public static Block RandomLittlePalace = new RandomLittlePalace(205).setCreativeTab(IMSM.Other); + public static Block RandomLittleWoodenCabin = new RandomLittleWoodenCabin(206).setCreativeTab(IMSM.Structures); + public static Block RandomSandstoneBuilding = new RandomSandstoneBuilding(207).setCreativeTab(IMSM.Other); + public static Block RandomSandStoneChurch = new RandomSandStoneChurch(208).setCreativeTab(IMSM.Other); + public static Block RandomSandstonewithFarm = new RandomSandstonewithFarm(209).setCreativeTab(IMSM.Other); + public static Block RandomSimpleSandstone = new RandomSimpleSandstone(210).setCreativeTab(IMSM.Other); + public static Block RandomSpawnHouseProd = new RandomSpawnHouseProd(211).setCreativeTab(IMSM.Other); + public static Block RandomWoodenStonebrickHouse = new RandomWoodenStonebrickHouse(212).setCreativeTab(IMSM.Structures); - public static Block Live_Power_Windmill_East = new Live_Power_Windmill_East(200).setHardness(1.0F).setUnlocalizedName("Live_Power_Windmill_East").setCreativeTab(IMSM.LiveStructures); - public static Block LiveAirBalloon = new LiveAirBalloon(200).setHardness(1.0F).setUnlocalizedName("LiveAirBalloon").setCreativeTab(IMSM.LiveStructures); - public static Block LiveAirplane = new LiveAirplane(201).setHardness(1.0F).setUnlocalizedName("LiveAirplane").setCreativeTab(IMSM.LiveStructures); - public static Block LiveBoat = new LiveBoat(202).setHardness(1.0F).setUnlocalizedName("LiveBoat").setCreativeTab(IMSM.LiveStructures); - public static Block LiveFlyingShip2 = new LiveFlyingShip2(203).setHardness(1.0F).setUnlocalizedName("LiveFlyingShip2").setCreativeTab(IMSM.LiveStructures); - public static Block LiveFlyingShip = new LiveFlyingShip(204).setHardness(1.0F).setUnlocalizedName("LiveFlyingShip").setCreativeTab(IMSM.LiveStructures); - public static Block LivePlane = new LivePlane().setHardness(1.0F).setUnlocalizedName("LivePlane").setCreativeTab(IMSM.LiveStructures); - public static Block Live_Helicopter = new Live_Helicopter(200).setHardness(1.0F).setUnlocalizedName("Live_Helicopter").setCreativeTab(IMSM.LiveStructures); - public static Block Live_Fair_FreeFall = new Live_Fair_FreeFall(201).setHardness(1.0F).setUnlocalizedName("Live_Fair_FreeFall").setCreativeTab(IMSM.LiveStructures); - public static Block Live_Mill = new Live_Mill(202).setHardness(1.0F).setUnlocalizedName("Live_Mill").setCreativeTab(IMSM.LiveStructures); - public static Block Live_Cinema = new Live_Cinema(200).setHardness(1.0F).setUnlocalizedName("Live_Cinema").setCreativeTab(IMSM.LiveStructures); - public static Block Live_Flying_Helicopter = new Live_Flying_Helicopter(201).setHardness(1.0F).setUnlocalizedName("Live_Flying_Helicopter").setCreativeTab(IMSM.LiveStructures); - public static Block Live_Bus = new Live_Bus(200).setHardness(1.0F).setUnlocalizedName("Live_Bus").setCreativeTab(IMSM.LiveStructures); - public static Block Live_Bus2 = new Live_Bus2(201).setHardness(1.0F).setUnlocalizedName("Live_Bus2").setCreativeTab(IMSM.LiveStructures); - public static Block BlockFerrisWheel = new BlockFerrisWheel(200).setHardness(1.0F).setUnlocalizedName("BlockFerrisWheel").setCreativeTab(IMSM.LiveStructures); + public static Block Live_Power_Windmill_East = new Live_Power_Windmill_East(200).setCreativeTab(IMSM.LiveStructures); + public static Block LiveAirBalloon = new LiveAirBalloon(200).setCreativeTab(IMSM.LiveStructures); + public static Block LiveAirplane = new LiveAirplane(201).setCreativeTab(IMSM.LiveStructures); + public static Block LiveBoat = new LiveBoat(202).setCreativeTab(IMSM.LiveStructures); + public static Block LiveFlyingShip2 = new LiveFlyingShip2(203).setCreativeTab(IMSM.LiveStructures); + public static Block LiveFlyingShip = new LiveFlyingShip(204).setCreativeTab(IMSM.LiveStructures); + public static Block LivePlane = new LivePlane().setCreativeTab(IMSM.LiveStructures); + public static Block Live_Helicopter = new Live_Helicopter(200).setCreativeTab(IMSM.LiveStructures); + public static Block Live_Fair_FreeFall = new Live_Fair_FreeFall(201).setCreativeTab(IMSM.LiveStructures); + public static Block Live_Mill = new Live_Mill(202).setCreativeTab(IMSM.LiveStructures); + public static Block Live_Cinema = new Live_Cinema(200).setCreativeTab(IMSM.LiveStructures); + public static Block Live_Flying_Helicopter = new Live_Flying_Helicopter(201).setCreativeTab(IMSM.LiveStructures); + public static Block Live_Bus = new Live_Bus(200).setCreativeTab(IMSM.LiveStructures); + public static Block Live_Bus2 = new Live_Bus2(201).setCreativeTab(IMSM.LiveStructures); + public static Block BlockFerrisWheel = new BlockFerrisWheel(200).setCreativeTab(IMSM.LiveStructures); - public static Block ChristmasHouse = new ChristmasHouse(200).setHardness(1.0F).setUnlocalizedName("ChristmasHouse").setCreativeTab(IMSM.Other); - public static Block ChristmasHouse2 = new ChristmasHouse2(201).setHardness(1.0F).setUnlocalizedName("ChristmasHouse2").setCreativeTab(IMSM.Other); - public static Block ChristmasHouse3 = new ChristmasHouse3(202).setHardness(1.0F).setUnlocalizedName("ChristmasHouse3").setCreativeTab(IMSM.Other); - public static Block ChristmasSleigh = new ChristmasSleigh(203).setHardness(1.0F).setUnlocalizedName("ChristmasSleigh").setCreativeTab(IMSM.Other); - public static Block ChristmasSleigh2 = new ChristmasSleigh2(204).setHardness(1.0F).setUnlocalizedName("ChristmasSleigh2").setCreativeTab(IMSM.Other); - public static Block ChristmasSnowman = new ChristmasSnowman(205).setHardness(1.0F).setUnlocalizedName("ChristmasSnowman").setCreativeTab(IMSM.Other); - public static Block ChristmasTree = new ChristmasTree(206).setHardness(1.0F).setUnlocalizedName("ChristmasTree").setCreativeTab(IMSM.Other); - public static Block ChristmasMarket = new ChristmasMarket(207).setHardness(1.0F).setUnlocalizedName("ChristmasMarket").setCreativeTab(IMSM.Other); - public static Block Live_WaterMill = new Live_WaterMill(200).setHardness(1.0F).setUnlocalizedName("Live_WaterMill").setCreativeTab(IMSM.LiveStructures); + public static Block ChristmasHouse = new ChristmasHouse(200).setCreativeTab(IMSM.Other); + public static Block ChristmasHouse2 = new ChristmasHouse2(201).setCreativeTab(IMSM.Other); + public static Block ChristmasHouse3 = new ChristmasHouse3(202).setCreativeTab(IMSM.Other); + public static Block ChristmasSleigh = new ChristmasSleigh(203).setCreativeTab(IMSM.Other); + public static Block ChristmasSleigh2 = new ChristmasSleigh2(204).setCreativeTab(IMSM.Other); + public static Block ChristmasSnowman = new ChristmasSnowman(205).setCreativeTab(IMSM.Other); + public static Block ChristmasTree = new ChristmasTree(206).setCreativeTab(IMSM.Other); + public static Block ChristmasMarket = new ChristmasMarket(207).setCreativeTab(IMSM.Other); + public static Block Live_WaterMill = new Live_WaterMill(200).setCreativeTab(IMSM.LiveStructures); - public static Block BlockUnlimited = new BlockUnlimited(200).setHardness(1.0F).setUnlocalizedName("BlockUnlimited").setCreativeTab(IMSM.User); + public static Block BlockUnlimited = new BlockUnlimited(200).setCreativeTab(IMSM.User); public static ArrayList userBlocks = registerUserBlocks(); @@ -1117,7 +1145,7 @@ public Item getTabIconItem() { public void reg(Block block) { - Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(Item.getItemFromBlock(block), 0, new ModelResourceLocation(modid + ":" + block.getUnlocalizedName().substring(5), "inventory")); + Minecraft.getInstance().getItemRenderer().getItemModelMesher().register(Item.getItemFromBlock(block), new ModelResourceLocation(modid + ":" + block.getNameTextComponent().getUnformattedComponentText().substring(5), "inventory")); } private static ArrayList registerUserBlocks() { @@ -1130,7 +1158,7 @@ private static ArrayList registerUserBlocks() { br = new BufferedReader(new FileReader(registry)); String line; while ((line = br.readLine()) != null) { - blocks.add(new BlockUserStructure(line).setHardness(1.0F).setUnlocalizedName(line).setCreativeTab(IMSM.User)); + blocks.add(new BlockUserStructure(line).setCreativeTab(IMSM.User)); } } catch (Exception e){ e.printStackTrace(); @@ -2044,24 +2072,27 @@ public void regAll(){ } } -@EventHandler - public void init(FMLInitializationEvent event){ +@SubscribeEvent + public void init(FMLClientSetupEvent event){ eventHandler=new modid.imsm.core.EventHandler(); - FMLCommonHandler.instance().bus().register(eventHandler); + MinecraftForge.EVENT_BUS.register(eventHandler); MinecraftForge.EVENT_BUS.register(new modid.imsm.core.ForgeEventHandler()); regAll(); - proxy.registerRenderInformation(); /* regAll(); System.out.println("IMSM has rendered sooooo many blocks"); */ } + +@SubscribeEvent +public void serverStarting(FMLServerStartingEvent event) { + UndoCommand.register(event.getCommandDispatcher()); + RideCommand.register(event.getCommandDispatcher()); +} - @EventHandler - public void preInit(FMLPreInitializationEvent e){ - - proxy.registerRenderInformation(); +@SubscribeEvent +public void registerBlocks(RegistryEvent.Register event) { //TODO: Thing commented without reason? //LanguageRegistry.instance().addStringLocalization("itemGroup.Structures", "en_US", "Structures"); /** @@ -2069,907 +2100,914 @@ public void preInit(FMLPreInitializationEvent e){ "OOO", "OSO", "OOO", 'S', House, 'O', Items.leather); */ +System.out.println("REGISTER IMSM BLOCKS;"); +for (java.lang.reflect.Field field : IMSM.class.getDeclaredFields()) { + if (field.getType() == Block.class && java.lang.reflect.Modifier.isStatic(field.getModifiers())) { + try { + Block block = (Block) field.get(null); + if (block != null && block.getRegistryName() == null) { + block.setRegistryName("imsm", field.getName().toLowerCase()); + } + } catch (Exception e) { + e.printStackTrace(); + } + } +} - - +event.getRegistry().register(LiveStructureRemover); +event.getRegistry().register(DecorationGrassNorthEastSouthWest); +event.getRegistry().register(DecorationParkEast); +event.getRegistry().register(DecorationParkingGarageEast); +event.getRegistry().register(DecorationParkingGarageNorth); +event.getRegistry().register(DecorationParkingGarageSouth); +event.getRegistry().register(DecorationParkingGarageWest); +event.getRegistry().register(DecorationParkingLotsEast); +event.getRegistry().register(DecorationParkingLotsNorth); +event.getRegistry().register(DecorationParkingLotsSouth); +event.getRegistry().register(DecorationParkingLotsWest); +event.getRegistry().register(DecorationParkNorth); +event.getRegistry().register(DecorationParkSouth); +event.getRegistry().register(DecorationParkWest); +event.getRegistry().register(DecorationPlazaFountainNorthEastSouthWest); +event.getRegistry().register(DecorationPlazaNorthEastSouthWest); +event.getRegistry().register(DecorationSoccerStadiumEastWest); +event.getRegistry().register(DecorationSoccerStadiumNorthSouth); +event.getRegistry().register(DecorationSquareNorthEastSouthWest); +event.getRegistry().register(DecorationSquareTreeEast); +event.getRegistry().register(DecorationSquareTreeNorth); +event.getRegistry().register(DecorationSquareTreeSouth); +event.getRegistry().register(DecorationSquareTreeWest); +event.getRegistry().register(FoodCarrotsEastWest); +event.getRegistry().register(FoodCarrotsNorthSouth); +event.getRegistry().register(FoodFarmEast); +event.getRegistry().register(FoodFarmNorth); +event.getRegistry().register(FoodFarmSouth); +event.getRegistry().register(FoodFarmWest); +event.getRegistry().register(FoodPotatoesNorthEastSouthWest); +event.getRegistry().register(FoodStableEastWest); +event.getRegistry().register(FoodStableNorthSouth); +event.getRegistry().register(FoodWheatNorthEastSouthWest); +event.getRegistry().register(IndustryHigh_DensityBlueEast); +event.getRegistry().register(IndustryHigh_DensityBlueNorth); +event.getRegistry().register(IndustryHigh_DensityBlueSouth); +event.getRegistry().register(IndustryHigh_DensityBlueWest); +event.getRegistry().register(IndustryHigh_DensityBrickEast); +event.getRegistry().register(IndustryHigh_DensityBrickNorth); +event.getRegistry().register(IndustryHigh_DensityBrickSouth); +event.getRegistry().register(IndustryHigh_DensityBrickWest); +event.getRegistry().register(IndustryHigh_DensityChimneyEast); +event.getRegistry().register(IndustryHigh_DensityChimneyNorth); +event.getRegistry().register(IndustryHigh_DensityChimneySouth); +event.getRegistry().register(IndustryHigh_DensityChimneyWest); +event.getRegistry().register(IndustryHigh_DensityComputerChipEast); +event.getRegistry().register(IndustryHigh_DensityComputerChipNorth); +event.getRegistry().register(IndustryHigh_DensityComputerChipSouth); +event.getRegistry().register(IndustryHigh_DensityComputerChipWest); +event.getRegistry().register(IndustryHigh_DensityGreenEast); +event.getRegistry().register(IndustryHigh_DensityGreenNorth); +event.getRegistry().register(IndustryHigh_DensityGreenSouth); +event.getRegistry().register(IndustryHigh_DensityGreenWest); +event.getRegistry().register(IndustryHigh_DensityLightBlueEast); +event.getRegistry().register(IndustryHigh_DensityLightBlueNorth); +event.getRegistry().register(IndustryHigh_DensityLightBlueSouth); +event.getRegistry().register(IndustryHigh_DensityLightBlueWest); +event.getRegistry().register(IndustryLow_Density3DPrintingEast); +event.getRegistry().register(IndustryLow_Density3DPrintingNorth); +event.getRegistry().register(IndustryLow_Density3DPrintingSouth); +event.getRegistry().register(IndustryLow_Density3DPrintingWest); +event.getRegistry().register(IndustryLow_DensityBlueEast); +event.getRegistry().register(IndustryLow_DensityBlueNorth); +event.getRegistry().register(IndustryLow_DensityBlueSouth); +event.getRegistry().register(IndustryLow_DensityBlueWest); +event.getRegistry().register(IndustryLow_DensityBrickEast); +event.getRegistry().register(IndustryLow_DensityBrickEastWest); +event.getRegistry().register(IndustryLow_DensityBrickNorth); +event.getRegistry().register(IndustryLow_DensityBrickNorthSouth); +event.getRegistry().register(IndustryLow_DensityBrickSouth); +event.getRegistry().register(IndustryLow_DensityBrickWest); +event.getRegistry().register(IndustryLow_DensityBrownEast2); +event.getRegistry().register(IndustryLow_DensityBrownEast); +event.getRegistry().register(IndustryLow_DensityBrownNorth2); +event.getRegistry().register(IndustryLow_DensityBrownNorth); +event.getRegistry().register(IndustryLow_DensityBrownSouth2); +event.getRegistry().register(IndustryLow_DensityBrownSouth); +event.getRegistry().register(IndustryLow_DensityBrownWest2); +event.getRegistry().register(IndustryLow_DensityBrownWest); +event.getRegistry().register(IndustryLow_DensityChimneyEast); +event.getRegistry().register(IndustryLow_DensityChimneyNorth); +event.getRegistry().register(IndustryLow_DensityChimneySouth); +event.getRegistry().register(IndustryLow_DensityChimneyWest); +event.getRegistry().register(IndustryLow_DensityGreenEast); +event.getRegistry().register(IndustryLow_DensityGreenNorth); +event.getRegistry().register(IndustryLow_DensityGreenSouth); +event.getRegistry().register(IndustryLow_DensityGreenWest); +event.getRegistry().register(IndustryLow_DensityIronEast); +event.getRegistry().register(IndustryLow_DensityIronNorth); +event.getRegistry().register(IndustryLow_DensityIronSouth); +event.getRegistry().register(IndustryLow_DensityIronWest); +event.getRegistry().register(IndustryLow_DensityParabolicAntennaEast); +event.getRegistry().register(IndustryLow_DensityParabolicAntennaNorth); +event.getRegistry().register(IndustryLow_DensityParabolicAntennaSouth); +event.getRegistry().register(IndustryLow_DensityParabolicAntennaWest); +event.getRegistry().register(IndustryLow_DensityTankNorthEastSouthWest); +event.getRegistry().register(IndustryLow_DensityTelescopeEast); +event.getRegistry().register(IndustryLow_DensityTelescopeNorth); +event.getRegistry().register(IndustryLow_DensityTelescopeSouth); +event.getRegistry().register(IndustryLow_DensityTelescopeWest); +event.getRegistry().register(IndustryMedium_DensityBlueEast); +event.getRegistry().register(IndustryMedium_DensityBlueNorth); +event.getRegistry().register(IndustryMedium_DensityBlueSouth); +event.getRegistry().register(IndustryMedium_DensityBlueWest); +event.getRegistry().register(IndustryMedium_DensityBrickEast); +event.getRegistry().register(IndustryMedium_DensityBrickNorth); +event.getRegistry().register(IndustryMedium_DensityBrickSouth); +event.getRegistry().register(IndustryMedium_DensityBrickWest); +event.getRegistry().register(IndustryMedium_DensityBrownEast); +event.getRegistry().register(IndustryMedium_DensityBrownNorth); +event.getRegistry().register(IndustryMedium_DensityBrownSouth); +event.getRegistry().register(IndustryMedium_DensityBrownWest); +event.getRegistry().register(IndustryMedium_DensityChemicalPressEastWest); +event.getRegistry().register(IndustryMedium_DensityChemicalPressNorthSouth); +event.getRegistry().register(IndustryMedium_DensityChimneyEast); +event.getRegistry().register(IndustryMedium_DensityChimneyNorth); +event.getRegistry().register(IndustryMedium_DensityChimneySouth); +event.getRegistry().register(IndustryMedium_DensityChimneyWest); +event.getRegistry().register(IndustryMedium_DensityGreenEast); +event.getRegistry().register(IndustryMedium_DensityGreenNorth); +event.getRegistry().register(IndustryMedium_DensityGreenSouth); +event.getRegistry().register(IndustryMedium_DensityGreenWest); +event.getRegistry().register(IndustryMedium_DensityIceEast); +event.getRegistry().register(IndustryMedium_DensityIceNorth); +event.getRegistry().register(IndustryMedium_DensityIceSouth); +event.getRegistry().register(IndustryMedium_DensityIceWest); +event.getRegistry().register(IndustryMedium_DensitySandstoneEast); +event.getRegistry().register(IndustryMedium_DensitySandstoneNorth); +event.getRegistry().register(IndustryMedium_DensitySandstoneSouth); +event.getRegistry().register(IndustryMedium_DensitySandstoneWest); +event.getRegistry().register(IndustryMedium_DensityTankEast); +event.getRegistry().register(IndustryMedium_DensityTankNorth); +event.getRegistry().register(IndustryMedium_DensityTankSouth); +event.getRegistry().register(IndustryMedium_DensityTankWest); +event.getRegistry().register(OfficeHigh_DensityBrickEastWest); +event.getRegistry().register(OfficeHigh_DensityBrickNorthSouth); +event.getRegistry().register(OfficeHigh_DensityCyanEast); +event.getRegistry().register(OfficeHigh_DensityCyanNorth); +event.getRegistry().register(OfficeHigh_DensityCyanSouth); +event.getRegistry().register(OfficeHigh_DensityCyanWest); +event.getRegistry().register(OfficeHigh_DensityHoleOnTopEast); +event.getRegistry().register(OfficeHigh_DensityHoleOnTopNorth); +event.getRegistry().register(OfficeHigh_DensityHoleOnTopSouth); +event.getRegistry().register(OfficeHigh_DensityHoleOnTopWest); +event.getRegistry().register(OfficeHigh_DensityLightBlueEastWest); +event.getRegistry().register(OfficeHigh_DensityLightBlueNorthSouth); +event.getRegistry().register(OfficeHigh_DensitySpirolBuildingEast); +event.getRegistry().register(OfficeHigh_DensitySpirolBuildingNorth); +event.getRegistry().register(OfficeHigh_DensitySpirolBuildingSouth); +event.getRegistry().register(OfficeHigh_DensitySpirolBuildingWest); +event.getRegistry().register(OfficeLow_DensityBlueEast); +event.getRegistry().register(OfficeLow_DensityBlueNorth); +event.getRegistry().register(OfficeLow_DensityBlueSouth); +event.getRegistry().register(OfficeLow_DensityBlueWest); +event.getRegistry().register(OfficeLow_DensityGreenEast); +event.getRegistry().register(OfficeLow_DensityGreenNorth); +event.getRegistry().register(OfficeLow_DensityGreenSouth); +event.getRegistry().register(OfficeLow_DensityGreenWest); +event.getRegistry().register(OfficeLow_DensityWhiteEast); +event.getRegistry().register(OfficeLow_DensityWhiteNorth); +event.getRegistry().register(OfficeLow_DensityWhiteSouth); +event.getRegistry().register(OfficeLow_DensityWhiteWest); +event.getRegistry().register(OfficeLow_DensityYellowEast); +event.getRegistry().register(OfficeLow_DensityYellowNorth); +event.getRegistry().register(OfficeLow_DensityYellowSouth); +event.getRegistry().register(OfficeLow_DensityYellowWest); +event.getRegistry().register(OfficeMedium_DensityCyanEast); +event.getRegistry().register(OfficeMedium_DensityCyanNorth); +event.getRegistry().register(OfficeMedium_DensityCyanSouth); +event.getRegistry().register(OfficeMedium_DensityCyanWest); +event.getRegistry().register(OfficeMedium_DensityLightBlueEast); +event.getRegistry().register(OfficeMedium_DensityLightBlueNorth); +event.getRegistry().register(OfficeMedium_DensityLightBlueSouth); +event.getRegistry().register(OfficeMedium_DensityLightBlueWest); +event.getRegistry().register(OfficeMedium_DensityPinkEast); +event.getRegistry().register(OfficeMedium_DensityPinkNorth); +event.getRegistry().register(OfficeMedium_DensityPinkSouth); +event.getRegistry().register(OfficeMedium_DensityPinkWest); +event.getRegistry().register(OfficeMedium_DensitySandstoneEast); +event.getRegistry().register(OfficeMedium_DensitySandstoneNorth); +event.getRegistry().register(OfficeMedium_DensitySandstoneSouth); +event.getRegistry().register(OfficeMedium_DensitySandstoneWest); +event.getRegistry().register(PublicFireServiceBigEast); +event.getRegistry().register(PublicFireServiceBigNorth); +event.getRegistry().register(PublicFireServiceBigSouth); +event.getRegistry().register(PublicFireServiceBigWest); +event.getRegistry().register(PublicFireServiceSmallEast); +event.getRegistry().register(PublicFireServiceSmallNorth); +event.getRegistry().register(PublicFireServiceSmallSouth); +event.getRegistry().register(PublicFireServiceSmallWest); +event.getRegistry().register(PublicHospitalBigEast); +event.getRegistry().register(PublicHospitalBigNorth); +event.getRegistry().register(PublicHospitalBigSouth); +event.getRegistry().register(PublicHospitalBigWest); +event.getRegistry().register(PublicHospitalSmallEast); +event.getRegistry().register(PublicHospitalSmallNorth); +event.getRegistry().register(PublicHospitalSmallSouth); +event.getRegistry().register(PublicHospitalSmallWest); +event.getRegistry().register(PublicLibraryEastWest); +event.getRegistry().register(PublicLibraryNorthSouth); +event.getRegistry().register(PublicPoliceBigEast); +event.getRegistry().register(PublicPoliceBigNorth); +event.getRegistry().register(PublicPoliceBigSouth); +event.getRegistry().register(PublicPoliceBigWest); +event.getRegistry().register(PublicPoliceSmallEast); +event.getRegistry().register(PublicPoliceSmallNorth); +event.getRegistry().register(PublicPoliceSmallSouth); +event.getRegistry().register(PublicPoliceSmallWest); +event.getRegistry().register(PublicSchoolBigNorthEast); +event.getRegistry().register(PublicSchoolBigNorthWest); +event.getRegistry().register(PublicSchoolBigSouthEast); +event.getRegistry().register(PublicSchoolBigSouthWest); +event.getRegistry().register(PublicSchoolSmallNorthEast); +event.getRegistry().register(PublicSchoolSmallNorthWest); +event.getRegistry().register(PublicSchoolSmallSouthEast); +event.getRegistry().register(PublicSchoolSmallSouthWest); +event.getRegistry().register(PublicTownhallBigEastWest); +event.getRegistry().register(PublicTownhallBigNorthSouth); +event.getRegistry().register(PublicTownhallSmallEast); +event.getRegistry().register(PublicTownhallSmallNorth); +event.getRegistry().register(PublicTownhallSmallSouth); +event.getRegistry().register(PublicTownhallSmallWest); +event.getRegistry().register(PublicUniversityEast); +event.getRegistry().register(PublicUniversityNorth); +event.getRegistry().register(PublicUniversitySouth); +event.getRegistry().register(PublicUniversityWest); +event.getRegistry().register(ResidentalEnormous_DensityBlockNorthEastSouthWest); +event.getRegistry().register(ResidentalEnormous_DensityBrickBigEast); +event.getRegistry().register(ResidentalEnormous_DensityBrickBigNorth); +event.getRegistry().register(ResidentalEnormous_DensityBrickBigSouth); +event.getRegistry().register(ResidentalEnormous_DensityBrickBigWest); +event.getRegistry().register(ResidentalEnormous_DensityBrickSmallNorthEastSouthWest); +event.getRegistry().register(ResidentalEnormous_DensityGreyEast); +event.getRegistry().register(ResidentalEnormous_DensityGreyNorth); +event.getRegistry().register(ResidentalEnormous_DensityGreySouth); +event.getRegistry().register(ResidentalEnormous_DensityGreyWest); +event.getRegistry().register(ResidentalEnormous_DensityModernEast); +event.getRegistry().register(ResidentalEnormous_DensityModernNorth); +event.getRegistry().register(ResidentalEnormous_DensityModernSouth); +event.getRegistry().register(ResidentalEnormous_DensityModernWest); +event.getRegistry().register(ResidentalEnormous_DensityRedEastWest); +event.getRegistry().register(ResidentalEnormous_DensityRedNorthSouth); +event.getRegistry().register(ResidentalEnormous_DensityRoundNorthEastSouthWest); +event.getRegistry().register(ResidentalEnormous_DensityStoneEast2); +event.getRegistry().register(ResidentalEnormous_DensityStoneEast); +event.getRegistry().register(ResidentalEnormous_DensityStoneNorth2); +event.getRegistry().register(ResidentalEnormous_DensityStoneNorth); +event.getRegistry().register(ResidentalEnormous_DensityStoneSouth2); +event.getRegistry().register(ResidentalEnormous_DensityStoneSouth); +event.getRegistry().register(ResidentalEnormous_DensityStoneWest2); +event.getRegistry().register(ResidentalEnormous_DensityStoneWest); +event.getRegistry().register(ResidentalEnormous_DensityYellowNorthEastSouthWest); +event.getRegistry().register(ResidentalHigh_DensityBlueEast); +event.getRegistry().register(ResidentalHigh_DensityBlueEastWest); +event.getRegistry().register(ResidentalHigh_DensityBlueNorth); +event.getRegistry().register(ResidentalHigh_DensityBlueNorthSouth); +event.getRegistry().register(ResidentalHigh_DensityBlueSouth); +event.getRegistry().register(ResidentalHigh_DensityBlueWest); +event.getRegistry().register(ResidentalHigh_DensityBrickEast); +event.getRegistry().register(ResidentalHigh_DensityBrickEastWest); +event.getRegistry().register(ResidentalHigh_DensityBrickNorth); +event.getRegistry().register(ResidentalHigh_DensityBrickNorthSouth); +event.getRegistry().register(ResidentalHigh_DensityBrickSouth); +event.getRegistry().register(ResidentalHigh_DensityBrickWest); +event.getRegistry().register(ResidentalHigh_DensityGreenGreyEast); +event.getRegistry().register(ResidentalHigh_DensityGreenGreyNorth); +event.getRegistry().register(ResidentalHigh_DensityGreenGreySouth); +event.getRegistry().register(ResidentalHigh_DensityGreenGreyWest); +event.getRegistry().register(ResidentalHigh_DensityRedCornerNorthEast); +event.getRegistry().register(ResidentalHigh_DensityRedCornerNorthWest); +event.getRegistry().register(ResidentalHigh_DensityRedCornerSouthEast); +event.getRegistry().register(ResidentalHigh_DensityRedCornerSouthWest); +event.getRegistry().register(ResidentalHigh_DensityRedYellowEast); +event.getRegistry().register(ResidentalHigh_DensityRedYellowNorth); +event.getRegistry().register(ResidentalHigh_DensityRedYellowSouth); +event.getRegistry().register(ResidentalHigh_DensityRedYellowWest); +event.getRegistry().register(ResidentalHigh_DensityStoneEast2); +event.getRegistry().register(ResidentalHigh_DensityStoneEast); +event.getRegistry().register(ResidentalHigh_DensityStoneNorth2); +event.getRegistry().register(ResidentalHigh_DensityStoneNorth); +event.getRegistry().register(ResidentalHigh_DensityStoneSouth2); +event.getRegistry().register(ResidentalHigh_DensityStoneSouth); +event.getRegistry().register(ResidentalHigh_DensityStoneWest2); +event.getRegistry().register(ResidentalHigh_DensityStoneWest); +event.getRegistry().register(ResidentalHigh_DensityYellowEast); +event.getRegistry().register(ResidentalHigh_DensityYellowNorth); +event.getRegistry().register(ResidentalHigh_DensityYellowSouth); +event.getRegistry().register(ResidentalHigh_DensityYellowWest); +event.getRegistry().register(ResidentalLow_DensityBeigeEast); +event.getRegistry().register(ResidentalLow_DensityBeigeNorth); +event.getRegistry().register(ResidentalLow_DensityBeigeSouth); +event.getRegistry().register(ResidentalLow_DensityBeigeWest); +event.getRegistry().register(ResidentalLow_DensityCyanEast); +event.getRegistry().register(ResidentalLow_DensityCyanNorth); +event.getRegistry().register(ResidentalLow_DensityCyanSouth); +event.getRegistry().register(ResidentalLow_DensityCyanWest); +event.getRegistry().register(ResidentalLow_DensityGreenEast2); +event.getRegistry().register(ResidentalLow_DensityGreenEast); +event.getRegistry().register(ResidentalLow_DensityGreenNorth2); +event.getRegistry().register(ResidentalLow_DensityGreenNorth); +event.getRegistry().register(ResidentalLow_DensityGreenSouth2); +event.getRegistry().register(ResidentalLow_DensityGreenSouth); +event.getRegistry().register(ResidentalLow_DensityGreenWest2); +event.getRegistry().register(ResidentalLow_DensityGreenWest); +event.getRegistry().register(ResidentalLow_DensityLightBlueEast2); +event.getRegistry().register(ResidentalLow_DensityLightBlueEast); +event.getRegistry().register(ResidentalLow_DensityLightBlueNorth2); +event.getRegistry().register(ResidentalLow_DensityLightBlueNorth); +event.getRegistry().register(ResidentalLow_DensityLightBlueSouth2); +event.getRegistry().register(ResidentalLow_DensityLightBlueSouth); +event.getRegistry().register(ResidentalLow_DensityLightBlueWest2); +event.getRegistry().register(ResidentalLow_DensityLightBlueWest); +event.getRegistry().register(ResidentalLow_DensityLightGreyEast); +event.getRegistry().register(ResidentalLow_DensityLightGreyNorth); +event.getRegistry().register(ResidentalLow_DensityLightGreySouth); +event.getRegistry().register(ResidentalLow_DensityLightGreyWest); +event.getRegistry().register(ResidentalLow_DensityModernEast); +event.getRegistry().register(ResidentalLow_DensityModernNorth); +event.getRegistry().register(ResidentalLow_DensityModernSouth); +event.getRegistry().register(ResidentalLow_DensityModernWest); +event.getRegistry().register(ResidentalLow_DensityOrangeEast); +event.getRegistry().register(ResidentalLow_DensityOrangeNorth); +event.getRegistry().register(ResidentalLow_DensityOrangeSouth); +event.getRegistry().register(ResidentalLow_DensityOrangeWest); +event.getRegistry().register(ResidentalLow_DensityRedEast); +event.getRegistry().register(ResidentalLow_DensityRedNorth); +event.getRegistry().register(ResidentalLow_DensityRedSouth); +event.getRegistry().register(ResidentalLow_DensityRedWest); +event.getRegistry().register(ResidentalLow_DensityStoneEast); +event.getRegistry().register(ResidentalLow_DensityStoneNorth); +event.getRegistry().register(ResidentalLow_DensityStoneSouth); +event.getRegistry().register(ResidentalLow_DensityStoneWest); +event.getRegistry().register(ResidentalLow_DensityWhiteEast); +event.getRegistry().register(ResidentalLow_DensityWhiteNorth); +event.getRegistry().register(ResidentalLow_DensityWhiteSouth); +event.getRegistry().register(ResidentalLow_DensityWhiteWest); +event.getRegistry().register(ResidentalLow_DensityWoodEast); +event.getRegistry().register(ResidentalLow_DensityWoodNorth); +event.getRegistry().register(ResidentalLow_DensityWoodSouth); +event.getRegistry().register(ResidentalLow_DensityWoodWest); +event.getRegistry().register(ResidentalLow_DensityYellowEast2); +event.getRegistry().register(ResidentalLow_DensityYellowEast); +event.getRegistry().register(ResidentalLow_DensityYellowNorth2); +event.getRegistry().register(ResidentalLow_DensityYellowNorth); +event.getRegistry().register(ResidentalLow_DensityYellowSouth2); +event.getRegistry().register(ResidentalLow_DensityYellowSouth); +event.getRegistry().register(ResidentalLow_DensityYellowWest2); +event.getRegistry().register(ResidentalLow_DensityYellowWest); +event.getRegistry().register(ResidentalMedium_DensityBlueGreenEast); +event.getRegistry().register(ResidentalMedium_DensityBlueGreenNorth); +event.getRegistry().register(ResidentalMedium_DensityBlueGreenSouth); +event.getRegistry().register(ResidentalMedium_DensityBlueGreenWest); +event.getRegistry().register(ResidentalMedium_DensityBlueRedEast); +event.getRegistry().register(ResidentalMedium_DensityBlueRedNorth); +event.getRegistry().register(ResidentalMedium_DensityBlueRedSouth); +event.getRegistry().register(ResidentalMedium_DensityBlueRedWest); +event.getRegistry().register(ResidentalMedium_DensityBrickEast); +event.getRegistry().register(ResidentalMedium_DensityBrickNorth); +event.getRegistry().register(ResidentalMedium_DensityBrickSouth); +event.getRegistry().register(ResidentalMedium_DensityBrickWest); +event.getRegistry().register(ResidentalMedium_DensityHorizontalEast); +event.getRegistry().register(ResidentalMedium_DensityHorizontalNorth); +event.getRegistry().register(ResidentalMedium_DensityHorizontalSouth); +event.getRegistry().register(ResidentalMedium_DensityHorizontalWest); +event.getRegistry().register(ResidentalMedium_DensityOrangeGreenEast); +event.getRegistry().register(ResidentalMedium_DensityOrangeGreenNorth); +event.getRegistry().register(ResidentalMedium_DensityOrangeGreenSouth); +event.getRegistry().register(ResidentalMedium_DensityOrangeGreenWest); +event.getRegistry().register(ResidentalMedium_DensityQuartzEast); +event.getRegistry().register(ResidentalMedium_DensityQuartzNorth); +event.getRegistry().register(ResidentalMedium_DensityQuartzSouth); +event.getRegistry().register(ResidentalMedium_DensityQuartzWest); +event.getRegistry().register(ResidentalMedium_DensityRedGreenEast); +event.getRegistry().register(ResidentalMedium_DensityRedGreenNorth); +event.getRegistry().register(ResidentalMedium_DensityRedGreenSouth); +event.getRegistry().register(ResidentalMedium_DensityRedGreenWest); +event.getRegistry().register(ResidentalMedium_DensityRoofEast); +event.getRegistry().register(ResidentalMedium_DensityRoofNorth); +event.getRegistry().register(ResidentalMedium_DensityRoofSouth); +event.getRegistry().register(ResidentalMedium_DensityRoofWest); +event.getRegistry().register(ResidentalMedium_DensityStone1EastWest); +event.getRegistry().register(ResidentalMedium_DensityStone1NorthSouth); +event.getRegistry().register(ResidentalMedium_DensityStone2EastWest); +event.getRegistry().register(ResidentalMedium_DensityStone2NorthSouth); +event.getRegistry().register(ResidentalMedium_DensityStoneCornerNorthEast); +event.getRegistry().register(ResidentalMedium_DensityStoneCornerNorthWest); +event.getRegistry().register(ResidentalMedium_DensityStoneCornerSouthEast); +event.getRegistry().register(ResidentalMedium_DensityStoneCornerSouthWest); +event.getRegistry().register(ResidentalMedium_DensityStoneEast); +event.getRegistry().register(ResidentalMedium_DensityStoneEndNorthEastWest); +event.getRegistry().register(ResidentalMedium_DensityStoneEndNorthSouthEast); +event.getRegistry().register(ResidentalMedium_DensityStoneEndNorthSouthWest); +event.getRegistry().register(ResidentalMedium_DensityStoneEndSouthEastWest); +event.getRegistry().register(ResidentalMedium_DensityStoneNorth); +event.getRegistry().register(ResidentalMedium_DensityStoneSouth); +event.getRegistry().register(ResidentalMedium_DensityStoneWest); +event.getRegistry().register(ResidentalMedium_DensityVerticalEast); +event.getRegistry().register(ResidentalMedium_DensityVerticalNorth); +event.getRegistry().register(ResidentalMedium_DensityVerticalSouth); +event.getRegistry().register(ResidentalMedium_DensityVerticalWest); +event.getRegistry().register(ResidentalMedium_DensityYellowRedEast); +event.getRegistry().register(ResidentalMedium_DensityYellowRedNorth); +event.getRegistry().register(ResidentalMedium_DensityYellowRedSouth); +event.getRegistry().register(ResidentalMedium_DensityYellowRedWest); +event.getRegistry().register(ShoppingHigh_DensityQuartzEastWest); +event.getRegistry().register(ShoppingHigh_DensityQuartzNorthSouth); +event.getRegistry().register(ShoppingLow_DensityBrickEast); +event.getRegistry().register(ShoppingLow_DensityBrickNorth); +event.getRegistry().register(ShoppingLow_DensityBrickSouth); +event.getRegistry().register(ShoppingLow_DensityBrickWest); +event.getRegistry().register(ShoppingLow_DensityGreenEast); +event.getRegistry().register(ShoppingLow_DensityGreenNorth); +event.getRegistry().register(ShoppingLow_DensityGreenSouth); +event.getRegistry().register(ShoppingLow_DensityGreenWest); +event.getRegistry().register(ShoppingLow_DensityOrangeEast); +event.getRegistry().register(ShoppingLow_DensityOrangeNorth); +event.getRegistry().register(ShoppingLow_DensityOrangeSouth); +event.getRegistry().register(ShoppingLow_DensityOrangeWest); +event.getRegistry().register(ShoppingLow_DensityPinkEast); +event.getRegistry().register(ShoppingLow_DensityPinkNorth); +event.getRegistry().register(ShoppingLow_DensityPinkSouth); +event.getRegistry().register(ShoppingLow_DensityPinkWest); +event.getRegistry().register(ShoppingMedium_DensityModernEast); +event.getRegistry().register(ShoppingMedium_DensityModernNorth); +event.getRegistry().register(ShoppingMedium_DensityModernSouth); +event.getRegistry().register(ShoppingMedium_DensityModernWest); +event.getRegistry().register(ShoppingMedium_DensityQuartzEast); +event.getRegistry().register(ShoppingMedium_DensityQuartzNorth); +event.getRegistry().register(ShoppingMedium_DensityQuartzSouth); +event.getRegistry().register(ShoppingMedium_DensityQuartzWest); +event.getRegistry().register(TransportAirportRunway_EastWestBuilding_North); +event.getRegistry().register(TransportAirportRunway_EastWestBuilding_South); +event.getRegistry().register(TransportAirportRunway_NorthSouthBuilding_East); +event.getRegistry().register(TransportAirportRunway_NorthSouthBuilding_West); +event.getRegistry().register(TransportAvenue1EastWest); +event.getRegistry().register(TransportAvenue1NorthSouth); +event.getRegistry().register(TransportAvenue2EastWest); +event.getRegistry().register(TransportAvenue2NorthSouth); +event.getRegistry().register(TransportAvenueEEast); +event.getRegistry().register(TransportAvenueENorth); +event.getRegistry().register(TransportAvenueESouth); +event.getRegistry().register(TransportAvenueEWest); +event.getRegistry().register(TransportAvenueLNorthEast); +event.getRegistry().register(TransportAvenueLNorthWest); +event.getRegistry().register(TransportAvenueLSouthEast); +event.getRegistry().register(TransportAvenueLSouthWest); +event.getRegistry().register(TransportAvenueTNorthEastWest); +event.getRegistry().register(TransportAvenueTNorthSouthEast); +event.getRegistry().register(TransportAvenueTNorthSouthWest); +event.getRegistry().register(TransportAvenueTSouthEastWest); +event.getRegistry().register(TransportAvenueXNorthSouthEastWest); +event.getRegistry().register(TransportBridgeAvenue1EastWest); +event.getRegistry().register(TransportBridgeAvenue1NorthSouth); +event.getRegistry().register(TransportBridgeAvenue2NorthSouth); +event.getRegistry().register(TransportBridgeAvenue2SouthWest); +event.getRegistry().register(TransportBridgeAvenue3EastWest); +event.getRegistry().register(TransportBridgeAvenue3NorthSouth); +event.getRegistry().register(TransportBridgeAvenue4EastWest); +event.getRegistry().register(TransportBridgeAvenue4NorthSouth); +event.getRegistry().register(TransportBridgeAvenueLNorthEast); +event.getRegistry().register(TransportBridgeAvenueLNorthWest); +event.getRegistry().register(TransportBridgeAvenueLSouthEast); +event.getRegistry().register(TransportBridgeAvenueLSouthWest); +event.getRegistry().register(TransportBridgeHighway1EastWest); +event.getRegistry().register(TransportBridgeHighway1NorthSouth); +event.getRegistry().register(TransportBridgeHighway2EastWest); +event.getRegistry().register(TransportBridgeHighway2NorthSouth); +event.getRegistry().register(TransportBridgeHighway3EastWest); +event.getRegistry().register(TransportBridgeHighway3NorthSouth); +event.getRegistry().register(TransportBridgeHighway4EastWest); +event.getRegistry().register(TransportBridgeHighway4NorthSouth); +event.getRegistry().register(TransportBridgeHighwayLNorthEast); +event.getRegistry().register(TransportBridgeHighwayLNorthWest); +event.getRegistry().register(TransportBridgeHighwayLSouthEast); +event.getRegistry().register(TransportBridgeHighwayLSouthWest); +event.getRegistry().register(TransportBridgeRoad1EastWest); +event.getRegistry().register(TransportBridgeRoad1NorthSouth); +event.getRegistry().register(TransportBridgeRoad2EastWest); +event.getRegistry().register(TransportBridgeRoad2NorthSouth); +event.getRegistry().register(TransportBridgeRoadLNorthEast); +event.getRegistry().register(TransportBridgeRoadLNorthWest); +event.getRegistry().register(TransportBridgeRoadLSouthEast); +event.getRegistry().register(TransportBridgeRoadLSouthWest); +event.getRegistry().register(TransportBridgeStreet1EastWest); +event.getRegistry().register(TransportBridgeStreet1NorthSouth); +event.getRegistry().register(TransportBridgeStreet2EastWest); +event.getRegistry().register(TransportBridgeStreet2NorthSouth); +event.getRegistry().register(TransportBridgeStreetLNorthEast); +event.getRegistry().register(TransportBridgeStreetLNorthWest); +event.getRegistry().register(TransportBridgeStreetLSouthEast); +event.getRegistry().register(TransportBridgeStreetLSouthWest); +event.getRegistry().register(TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside); +event.getRegistry().register(TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside); +event.getRegistry().register(TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside); +event.getRegistry().register(TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside); +event.getRegistry().register(TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside); +event.getRegistry().register(TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside); +event.getRegistry().register(TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside); +event.getRegistry().register(TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside); +event.getRegistry().register(TransportConnectorAvenue_StreetLAvenue_EastStreet_North); +event.getRegistry().register(TransportConnectorAvenue_StreetLAvenue_EastStreet_South); +event.getRegistry().register(TransportConnectorAvenue_StreetLAvenue_NorthStreet_East); +event.getRegistry().register(TransportConnectorAvenue_StreetLAvenue_NorthStreet_West); +event.getRegistry().register(TransportConnectorAvenue_StreetLAvenue_SouthStreet_East); +event.getRegistry().register(TransportConnectorAvenue_StreetLAvenue_SouthStreet_West); +event.getRegistry().register(TransportConnectorAvenue_StreetLAvenue_WestStreet_North); +event.getRegistry().register(TransportConnectorAvenue_StreetLAvenue_WestStreet_South); +event.getRegistry().register(TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth); +event.getRegistry().register(TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North); +event.getRegistry().register(TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South); +event.getRegistry().register(TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East); +event.getRegistry().register(TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West); +event.getRegistry().register(TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest); +event.getRegistry().register(TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest); +event.getRegistry().register(TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth); +event.getRegistry().register(TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth); +event.getRegistry().register(TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest); +event.getRegistry().register(TransportConnectorBridge_AvenueBridge_EastAvenue_West); +event.getRegistry().register(TransportConnectorBridge_AvenueBridge_NorthAvenue_South); +event.getRegistry().register(TransportConnectorBridge_AvenueBridge_SouthAvenue_North); +event.getRegistry().register(TransportConnectorBridge_AvenueBridge_WestAvenue_East); +event.getRegistry().register(TransportConnectorBridge_RoadBridge_EastRoad_West); +event.getRegistry().register(TransportConnectorBridge_RoadBridge_NorthRoad_South); +event.getRegistry().register(TransportConnectorBridge_RoadBridge_SouthRoad_North); +event.getRegistry().register(TransportConnectorBridge_RoadBridge_WestRoad_East); +event.getRegistry().register(TransportConnectorBridge_StreetBridge_EastStreet_West); +event.getRegistry().register(TransportConnectorBridge_StreetBridge_NorthStreet_South); +event.getRegistry().register(TransportConnectorBridge_StreetBridge_SouthStreet_North); +event.getRegistry().register(TransportConnectorBridge_StreetBridge_WestStreet_East); +event.getRegistry().register(TransportConnectorHighway_AvenueHighway_EastAvenue_West); +event.getRegistry().register(TransportConnectorHighway_AvenueHighway_NorthAvenue_South); +event.getRegistry().register(TransportConnectorHighway_AvenueHighway_SouthAvenue_North); +event.getRegistry().register(TransportConnectorHighway_AvenueHighway_WestAvenue_East); +event.getRegistry().register(TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West); +event.getRegistry().register(TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South); +event.getRegistry().register(TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North); +event.getRegistry().register(TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East); +event.getRegistry().register(TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West); +event.getRegistry().register(TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South); +event.getRegistry().register(TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North); +event.getRegistry().register(TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East); +event.getRegistry().register(TransportHarbourBigEast); +event.getRegistry().register(TransportHarbourBigNorth); +event.getRegistry().register(TransportHarbourBigSouth); +event.getRegistry().register(TransportHarbourBigWest); +event.getRegistry().register(TransportHarbourSide1CornerNorthEast); +event.getRegistry().register(TransportHarbourSide1CornerNorthWest); +event.getRegistry().register(TransportHarbourSide1CornerSouthEast); +event.getRegistry().register(TransportHarbourSide1CornerSouthWest); +event.getRegistry().register(TransportHarbourSide2CornerCraneEast); +event.getRegistry().register(TransportHarbourSide2CornerCraneNorth); +event.getRegistry().register(TransportHarbourSide2CornerCraneSouth); +event.getRegistry().register(TransportHarbourSide2CornerCraneWest); +event.getRegistry().register(TransportHarbourSide2CornerEast); +event.getRegistry().register(TransportHarbourSide2CornerNorth); +event.getRegistry().register(TransportHarbourSide2CornerSouth); +event.getRegistry().register(TransportHarbourSide2CornerWest); +event.getRegistry().register(TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast); +event.getRegistry().register(TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest); +event.getRegistry().register(TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest); +event.getRegistry().register(TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest); +event.getRegistry().register(TransportHarbourSmallEast); +event.getRegistry().register(TransportHarbourSmallNorth); +event.getRegistry().register(TransportHarbourSmallSouth); +event.getRegistry().register(TransportHarbourSmallWest); +event.getRegistry().register(TransportHighway05EastWestNorthside); +event.getRegistry().register(TransportHighway05EastWestSouthside); +event.getRegistry().register(TransportHighway05NorthSouthEastside); +event.getRegistry().register(TransportHighway05NorthSouthWestside); +event.getRegistry().register(TransportHighway1EastWest); +event.getRegistry().register(TransportHighway1NorthSouth); +event.getRegistry().register(TransportHighway2EastWest); +event.getRegistry().register(TransportHighway2NorthSouth); +event.getRegistry().register(TransportHighwayDrivewayEastWestEastside); +event.getRegistry().register(TransportHighwayDrivewayEastWestWestside); +event.getRegistry().register(TransportHighwayDrivewayExitEastWestEastside); +event.getRegistry().register(TransportHighwayDrivewayExitEastWestWestside); +event.getRegistry().register(TransportHighwayDrivewayExitNorthSouthNorthside); +event.getRegistry().register(TransportHighwayDrivewayExitNorthSouthSouthside); +event.getRegistry().register(TransportHighwayDrivewayNorthSouthNorthside); +event.getRegistry().register(TransportHighwayDrivewayNorthSouthSouthside); +event.getRegistry().register(TransportHighwayExitEastWestEastside); +event.getRegistry().register(TransportHighwayExitEastWestWestside); +event.getRegistry().register(TransportHighwayExitNorthSouthNorthside); +event.getRegistry().register(TransportHighwayExitNorthSouthSouthside); +event.getRegistry().register(TransportHighwayFloor05EastWestNorthside); +event.getRegistry().register(TransportHighwayFloor05EastWestSouthside); +event.getRegistry().register(TransportHighwayFloor05NorthSouthEastside); +event.getRegistry().register(TransportHighwayFloor05NorthSouthWestside); +event.getRegistry().register(TransportHighwayFloor1EastWest); +event.getRegistry().register(TransportHighwayFloor1NorthSouth); +event.getRegistry().register(TransportHighwayFloor2EastWest); +event.getRegistry().register(TransportHighwayFloor2NorthSouth); +event.getRegistry().register(TransportHighwayFloorDrivewayEastWestEastside); +event.getRegistry().register(TransportHighwayFloorDrivewayEastWestWestside); +event.getRegistry().register(TransportHighwayFloorDrivewayExitEastWestEastside); +event.getRegistry().register(TransportHighwayFloorDrivewayExitEastWestWestside); +event.getRegistry().register(TransportHighwayFloorDrivewayExitNorthSouthNorthside); +event.getRegistry().register(TransportHighwayFloorDrivewayExitNorthSouthSouthside); +event.getRegistry().register(TransportHighwayFloorDrivewayNorthSouthNorthside); +event.getRegistry().register(TransportHighwayFloorDrivewayNorthSouthSouthside); +event.getRegistry().register(TransportHighwayFloorExitEastWestEast); +event.getRegistry().register(TransportHighwayFloorExitEastWestWestside); +event.getRegistry().register(TransportHighwayFloorExitNorthSouthNorthside); +event.getRegistry().register(TransportHighwayFloorExitNorthSouthSouthside); +event.getRegistry().register(TransportHighwayFloorLNorthEast); +event.getRegistry().register(TransportHighwayFloorLNorthWest); +event.getRegistry().register(TransportHighwayFloorLSouthEast); +event.getRegistry().register(TransportHighwayFloorLSouthWest); +event.getRegistry().register(TransportHighwayFloorTNorthEastWest); +event.getRegistry().register(TransportHighwayFloorTNorthSouthEast); +event.getRegistry().register(TransportHighwayFloorTNorthSouthWest); +event.getRegistry().register(TransportHighwayFloorTSouthEastWest); +event.getRegistry().register(TransportHighwayFloorXNorthEastSouthWest); +event.getRegistry().register(TransportHighwayLNorthEast); +event.getRegistry().register(TransportHighwayLNorthWest); +event.getRegistry().register(TransportHighwayLSouthEast); +event.getRegistry().register(TransportHighwayLSouthWest); +event.getRegistry().register(TransportHighwayTNorthEastWest); +event.getRegistry().register(TransportHighwayTNorthSouthEast); +event.getRegistry().register(TransportHighwayTNorthSouthWest); +event.getRegistry().register(TransportHighwayTSouthEastWest); +event.getRegistry().register(TransportHighwayXNorthEastSouthWest); +event.getRegistry().register(TransportPublicConnectorHightram_TramHightram_EastTram_West); +event.getRegistry().register(TransportPublicConnectorHightram_TramHightram_NorthTram_South); +event.getRegistry().register(TransportPublicConnectorHightram_TramHightram_SouthTram_North); +event.getRegistry().register(TransportPublicConnectorHightram_TramHightram_WestTram_East); +event.getRegistry().register(TransportPublicHightram1EastWest); +event.getRegistry().register(TransportPublicHightram1NorthSouth); +event.getRegistry().register(TransportPublicHightramEEast); +event.getRegistry().register(TransportPublicHightramENorth); +event.getRegistry().register(TransportPublicHightramESouth); +event.getRegistry().register(TransportPublicHightramEWest); +event.getRegistry().register(TransportPublicHightramLNorthEast); +event.getRegistry().register(TransportPublicHightramLNorthWest); +event.getRegistry().register(TransportPublicHightramLSouthEast); +event.getRegistry().register(TransportPublicHightramLSouthWest); +event.getRegistry().register(TransportPublicHightramStationEastWest); +event.getRegistry().register(TransportPublicHightramStationNorthSouth); +event.getRegistry().register(TransportPublicHightramXNorthEastSouthWest); +event.getRegistry().register(TransportPublicTram1EastWest); +event.getRegistry().register(TransportPublicTram1NorthSouth); +event.getRegistry().register(TransportPublicTramEEast); +event.getRegistry().register(TransportPublicTramENorth); +event.getRegistry().register(TransportPublicTramESouth); +event.getRegistry().register(TransportPublicTramEWest); +event.getRegistry().register(TransportPublicTramLNorthEast); +event.getRegistry().register(TransportPublicTramLNorthWest); +event.getRegistry().register(TransportPublicTramLSouthEast); +event.getRegistry().register(TransportPublicTramLSouthWest); +event.getRegistry().register(TransportPublicTram_on_road1EastWest); +event.getRegistry().register(TransportPublicTram_on_road1NorthSouth); +event.getRegistry().register(TransportPublicTram_on_roadEEast); +event.getRegistry().register(TransportPublicTram_on_roadENorth); +event.getRegistry().register(TransportPublicTram_on_roadESouth); +event.getRegistry().register(TransportPublicTram_on_roadEWest); +event.getRegistry().register(TransportPublicTram_on_roadLNorthEast); +event.getRegistry().register(TransportPublicTram_on_roadLNorthWest); +event.getRegistry().register(TransportPublicTram_on_roadLSouthEast); +event.getRegistry().register(TransportPublicTram_on_roadLSouthWest); +event.getRegistry().register(TransportPublicTramStationEastWest); +event.getRegistry().register(TransportPublicTramStationNorthSouth); +event.getRegistry().register(TransportPublicTramXNorthEastSouthWest); +event.getRegistry().register(TransportRoad1EastWest); +event.getRegistry().register(TransportRoad1NorthSouth); +event.getRegistry().register(TransportRoadEEast); +event.getRegistry().register(TransportRoadENorth); +event.getRegistry().register(TransportRoadESouth); +event.getRegistry().register(TransportRoadEWest); +event.getRegistry().register(TransportRoadLNorthEast); +event.getRegistry().register(TransportRoadLNorthWest); +event.getRegistry().register(TransportRoadLSouthEast); +event.getRegistry().register(TransportRoadLSouthWest); +event.getRegistry().register(TransportRoadTNorthEastWest); +event.getRegistry().register(TransportRoadTNorthSouthEast); +event.getRegistry().register(TransportRoadTNorthSouthWest); +event.getRegistry().register(TransportRoadTSouthEastWest); +event.getRegistry().register(TransportRoadXNorthEastSouthWest); +event.getRegistry().register(TransportStreet1EastWest); +event.getRegistry().register(TransportStreet1NorthSouth); +event.getRegistry().register(TransportStreetEEast); +event.getRegistry().register(TransportStreetENorth); +event.getRegistry().register(TransportStreetESouth); +event.getRegistry().register(TransportStreetEWest); +event.getRegistry().register(TransportStreetLNorthEast); +event.getRegistry().register(TransportStreetLNorthWest); +event.getRegistry().register(TransportStreetLSouthEast); +event.getRegistry().register(TransportStreetLSouthWest); +event.getRegistry().register(TransportStreetRoundaboutNorthEastSouthWest); +event.getRegistry().register(TransportStreetTNorthEastWest); +event.getRegistry().register(TransportStreetTNorthSouthEast); +event.getRegistry().register(TransportStreetTNorthSouthWest); +event.getRegistry().register(TransportStreetTSouthEastWest); +event.getRegistry().register(TransportStreetXNorthEastSouthWest); +event.getRegistry().register(TransportWater1CornerNorthEast); +event.getRegistry().register(TransportWater1CornerNorthWest); +event.getRegistry().register(TransportWater1CornerSouthEast); +event.getRegistry().register(TransportWater1CornerSouthWest); +event.getRegistry().register(TransportWater2CornerEast); +event.getRegistry().register(TransportWater2CornerNorth); +event.getRegistry().register(TransportWater2CornerSouth); +event.getRegistry().register(TransportWater2CornerWest); +event.getRegistry().register(TransportWater3CornerNorthEast_NorthWest_SouthEast); +event.getRegistry().register(TransportWater3CornerNorthEast_NorthWest_SouthWest); +event.getRegistry().register(TransportWater3CornerSouthEast_SouthWest_NorthEast); +event.getRegistry().register(TransportWater3CornerSouthEast_SouthWest_NorthWest); +event.getRegistry().register(TransportWater4CornerNorthSouthEastWest); +event.getRegistry().register(UtilityPower_NuclearEast); +event.getRegistry().register(UtilityPower_NuclearNorth); +event.getRegistry().register(UtilityPower_NuclearSouth); +event.getRegistry().register(UtilityPower_NuclearWest); +event.getRegistry().register(UtilityPower_OilCoalEast); +event.getRegistry().register(UtilityPower_OilCoalNorth); +event.getRegistry().register(UtilityPower_OilCoalSouth); +event.getRegistry().register(UtilityPower_OilCoalWest); +event.getRegistry().register(UtilityPower_SunNorthEastSouthWest); +event.getRegistry().register(UtilityPower_WindEast); +event.getRegistry().register(UtilityPower_WindNorth); +event.getRegistry().register(UtilityPower_WindSouth); +event.getRegistry().register(UtilityPower_WindWest); +event.getRegistry().register(UtilityPumpjackEastWest); +event.getRegistry().register(UtilityPumpjackNorthSouth); +event.getRegistry().register(UtilityScrap_BurningEast); +event.getRegistry().register(UtilityScrap_BurningNorth); +event.getRegistry().register(UtilityScrap_BurningSouth); +event.getRegistry().register(UtilityScrap_BurningWest); +event.getRegistry().register(UtilityScrap_HeapEast); +event.getRegistry().register(UtilityScrap_HeapNorth); +event.getRegistry().register(UtilityScrap_HeapSouth); +event.getRegistry().register(UtilityScrap_HeapWest); +event.getRegistry().register(UtilityScrap_RecycleEast); +event.getRegistry().register(UtilityScrap_RecycleNorth); +event.getRegistry().register(UtilityScrap_RecycleSouth); +event.getRegistry().register(UtilityScrap_RecycleWest); +event.getRegistry().register(UtilityWater_PumpEast); +event.getRegistry().register(UtilityWater_PumpNorth); +event.getRegistry().register(UtilityWater_PumpSouth); +event.getRegistry().register(UtilityWater_PumpWest); +event.getRegistry().register(UtilityWater_TowerNorthEastSouthWest); +event.getRegistry().register(UtilityWater_TreatmentEast); +event.getRegistry().register(UtilityWater_TreatmentNorth); +event.getRegistry().register(UtilityWater_TreatmentSouth); +event.getRegistry().register(UtilityWater_TreatmentWest); +event.getRegistry().register(BlockAirBalloon); +event.getRegistry().register(BlockAirplane); +//event.getRegistry().register(BlockApplepie); +event.getRegistry().register(BlockArena1); +event.getRegistry().register(BlockArena2); +event.getRegistry().register(BlockBigPyramid); +event.getRegistry().register(BlockBoat); +event.getRegistry().register(BlockBunker); +//event.getRegistry().register(BlockCactus2); +//event.getRegistry().register(BlockCake2); +event.getRegistry().register(BlockCastleTower); +//event.getRegistry().register(BlockCave); +//event.getRegistry().register(BlockColumn); +event.getRegistry().register(BlockCosyHouse); +event.getRegistry().register(BlockDungeon); +event.getRegistry().register(BlockEnchantmentRoom); +event.getRegistry().register(BlockFarm2); +event.getRegistry().register(BlockFarm3); +event.getRegistry().register(BlockFarm4); +event.getRegistry().register(BlockFarm); +//event.getRegistry().register(BlockFloatingSphere); +event.getRegistry().register(BlockGiantTree); +//event.getRegistry().register(BlockGlassHouse); +event.getRegistry().register(BlockHountedHouse); +//event.getRegistry().register(BlockHouse2); +event.getRegistry().register(BlockHouse); +event.getRegistry().register(BlockHouseTrap1); +event.getRegistry().register(BlockHouseTrap2); +//event.getRegistry().register(BlockLeaves2); +event.getRegistry().register(BlockLighthouse); +event.getRegistry().register(BlockMegaHouse2); +event.getRegistry().register(BlockMegaHouse); +event.getRegistry().register(BlockMegaTower); +//event.getRegistry().register(BlockPenIron); +//event.getRegistry().register(BlockPenNether); +//event.getRegistry().register(BlockPenWood); +event.getRegistry().register(BlockPlane); +event.getRegistry().register(BlockPrison2); +event.getRegistry().register(BlockPrison); +event.getRegistry().register(BlockPyramid); +event.getRegistry().register(BlockRollerCoaster2); +event.getRegistry().register(BlockRollercoaster); +//event.getRegistry().register(BlockShelter); +//event.getRegistry().register(BlockSkyscraper2); +event.getRegistry().register(BlockSkyscraper); +//event.getRegistry().register(BlockStadium2); +event.getRegistry().register(BlockStadium); +//event.getRegistry().register(BlockStandardBrickHouse); +event.getRegistry().register(BlockStoreHouse); +//event.getRegistry().register(BlockStreet); +event.getRegistry().register(BlockTorch2); +event.getRegistry().register(BlockTower); +event.getRegistry().register(BlockWaterSlide); +//event.getRegistry().register(Remover16256); +//event.getRegistry().register(Remover1632); +//event.getRegistry().register(Remover168); +event.getRegistry().register(Remover16); +//event.getRegistry().register(Remover3216); +//event.getRegistry().register(Remover32256); +//event.getRegistry().register(Remover328); +event.getRegistry().register(Remover32); +//event.getRegistry().register(Remover64256); +event.getRegistry().register(Remover64); +//event.getRegistry().register(Remover816); +//event.getRegistry().register(Remover8256); +//event.getRegistry().register(Remover832); +event.getRegistry().register(Remover8); +event.getRegistry().register(RemoverLast); - +event.getRegistry().register(OtherBrickHouse); +event.getRegistry().register(OtherGrandHouse); +event.getRegistry().register(OtherStable); +event.getRegistry().register(OtherSurvivorHouse2); +event.getRegistry().register(OtherSurvivorHouse3); +event.getRegistry().register(OtherSurvivorHouse4); +event.getRegistry().register(OtherSurvivorHouse5); +event.getRegistry().register(OtherSurvivorHouse6); +event.getRegistry().register(OtherSurvivorHouse7); +event.getRegistry().register(OtherSurvivorHouse8); +event.getRegistry().register(OtherSurvivorHouse); +event.getRegistry().register(OtherTemple); +event.getRegistry().register(SurvivalSmallBuilding); +event.getRegistry().register(SurvivalWoodenHouse); +event.getRegistry().register(WoodenHouse); +event.getRegistry().register(BlockCheckerboard); +//event.getRegistry().register(BlockAtlantis); +event.getRegistry().register(BlockBigWorld); - GameRegistry.registerBlock(LiveStructureRemover, "LiveStructureRemover"); +event.getRegistry().register(RandomAirballoon2); +event.getRegistry().register(RandomEntrance); +event.getRegistry().register(RandomFlyingShip); +event.getRegistry().register(RandomGreenTent); +event.getRegistry().register(RandomGreyTent); +event.getRegistry().register(RandomLightHouse); +event.getRegistry().register(RandomMinerTent); +event.getRegistry().register(RandomNetherEntranceSurvival); +event.getRegistry().register(RandomRandomBrickHouse); +event.getRegistry().register(RandomSurvivalHouse1); +event.getRegistry().register(RandomSurvivalHouseSandstone); +event.getRegistry().register(RandomTentCamp); +event.getRegistry().register(RandomWoodenHouse); +event.getRegistry().register(BlockCloud); - GameRegistry.registerBlock(DecorationGrassNorthEastSouthWest, "DecorationGrassNorthEastSouthWest"); - GameRegistry.registerBlock(DecorationParkEast, "DecorationParkEast"); - GameRegistry.registerBlock(DecorationParkingGarageEast, "DecorationParkingGarageEast"); - GameRegistry.registerBlock(DecorationParkingGarageNorth, "DecorationParkingGarageNorth"); - GameRegistry.registerBlock(DecorationParkingGarageSouth, "DecorationParkingGarageSouth"); - GameRegistry.registerBlock(DecorationParkingGarageWest, "DecorationParkingGarageWest"); - GameRegistry.registerBlock(DecorationParkingLotsEast, "DecorationParkingLotsEast"); - GameRegistry.registerBlock(DecorationParkingLotsNorth, "DecorationParkingLotsNorth"); - GameRegistry.registerBlock(DecorationParkingLotsSouth, "DecorationParkingLotsSouth"); - GameRegistry.registerBlock(DecorationParkingLotsWest, "DecorationParkingLotsWest"); - GameRegistry.registerBlock(DecorationParkNorth, "DecorationParkNorth"); - GameRegistry.registerBlock(DecorationParkSouth, "DecorationParkSouth"); - GameRegistry.registerBlock(DecorationParkWest, "DecorationParkWest"); - GameRegistry.registerBlock(DecorationPlazaFountainNorthEastSouthWest, "DecorationPlazaFountainNorthEastSouthWest"); - GameRegistry.registerBlock(DecorationPlazaNorthEastSouthWest, "DecorationPlazaNorthEastSouthWest"); - GameRegistry.registerBlock(DecorationSoccerStadiumEastWest, "DecorationSoccerStadiumEastWest"); - GameRegistry.registerBlock(DecorationSoccerStadiumNorthSouth, "DecorationSoccerStadiumNorthSouth"); - GameRegistry.registerBlock(DecorationSquareNorthEastSouthWest, "DecorationSquareNorthEastSouthWest"); - GameRegistry.registerBlock(DecorationSquareTreeEast, "DecorationSquareTreeEast"); - GameRegistry.registerBlock(DecorationSquareTreeNorth, "DecorationSquareTreeNorth"); - GameRegistry.registerBlock(DecorationSquareTreeSouth, "DecorationSquareTreeSouth"); - GameRegistry.registerBlock(DecorationSquareTreeWest, "DecorationSquareTreeWest"); - GameRegistry.registerBlock(FoodCarrotsEastWest, "FoodCarrotsEastWest"); - GameRegistry.registerBlock(FoodCarrotsNorthSouth, "FoodCarrotsNorthSouth"); - GameRegistry.registerBlock(FoodFarmEast, "FoodFarmEast"); - GameRegistry.registerBlock(FoodFarmNorth, "FoodFarmNorth"); - GameRegistry.registerBlock(FoodFarmSouth, "FoodFarmSouth"); - GameRegistry.registerBlock(FoodFarmWest, "FoodFarmWest"); - GameRegistry.registerBlock(FoodPotatoesNorthEastSouthWest, "FoodPotatoesNorthEastSouthWest"); - GameRegistry.registerBlock(FoodStableEastWest, "FoodStableEastWest"); - GameRegistry.registerBlock(FoodStableNorthSouth, "FoodStableNorthSouth"); - GameRegistry.registerBlock(FoodWheatNorthEastSouthWest, "FoodWheatNorthEastSouthWest"); - GameRegistry.registerBlock(IndustryHigh_DensityBlueEast, "IndustryHigh_DensityBlueEast"); - GameRegistry.registerBlock(IndustryHigh_DensityBlueNorth, "IndustryHigh_DensityBlueNorth"); - GameRegistry.registerBlock(IndustryHigh_DensityBlueSouth, "IndustryHigh_DensityBlueSouth"); - GameRegistry.registerBlock(IndustryHigh_DensityBlueWest, "IndustryHigh_DensityBlueWest"); - GameRegistry.registerBlock(IndustryHigh_DensityBrickEast, "IndustryHigh_DensityBrickEast"); - GameRegistry.registerBlock(IndustryHigh_DensityBrickNorth, "IndustryHigh_DensityBrickNorth"); - GameRegistry.registerBlock(IndustryHigh_DensityBrickSouth, "IndustryHigh_DensityBrickSouth"); - GameRegistry.registerBlock(IndustryHigh_DensityBrickWest, "IndustryHigh_DensityBrickWest"); - GameRegistry.registerBlock(IndustryHigh_DensityChimneyEast, "IndustryHigh_DensityChimneyEast"); - GameRegistry.registerBlock(IndustryHigh_DensityChimneyNorth, "IndustryHigh_DensityChimneyNorth"); - GameRegistry.registerBlock(IndustryHigh_DensityChimneySouth, "IndustryHigh_DensityChimneySouth"); - GameRegistry.registerBlock(IndustryHigh_DensityChimneyWest, "IndustryHigh_DensityChimneyWest"); - GameRegistry.registerBlock(IndustryHigh_DensityComputerChipEast, "IndustryHigh_DensityComputerChipEast"); - GameRegistry.registerBlock(IndustryHigh_DensityComputerChipNorth, "IndustryHigh_DensityComputerChipNorth"); - GameRegistry.registerBlock(IndustryHigh_DensityComputerChipSouth, "IndustryHigh_DensityComputerChipSouth"); - GameRegistry.registerBlock(IndustryHigh_DensityComputerChipWest, "IndustryHigh_DensityComputerChipWest"); - GameRegistry.registerBlock(IndustryHigh_DensityGreenEast, "IndustryHigh_DensityGreenEast"); - GameRegistry.registerBlock(IndustryHigh_DensityGreenNorth, "IndustryHigh_DensityGreenNorth"); - GameRegistry.registerBlock(IndustryHigh_DensityGreenSouth, "IndustryHigh_DensityGreenSouth"); - GameRegistry.registerBlock(IndustryHigh_DensityGreenWest, "IndustryHigh_DensityGreenWest"); - GameRegistry.registerBlock(IndustryHigh_DensityLightBlueEast, "IndustryHigh_DensityLightBlueEast"); - GameRegistry.registerBlock(IndustryHigh_DensityLightBlueNorth, "IndustryHigh_DensityLightBlueNorth"); - GameRegistry.registerBlock(IndustryHigh_DensityLightBlueSouth, "IndustryHigh_DensityLightBlueSouth"); - GameRegistry.registerBlock(IndustryHigh_DensityLightBlueWest, "IndustryHigh_DensityLightBlueWest"); - GameRegistry.registerBlock(IndustryLow_Density3DPrintingEast, "IndustryLow_Density3DPrintingEast"); - GameRegistry.registerBlock(IndustryLow_Density3DPrintingNorth, "IndustryLow_Density3DPrintingNorth"); - GameRegistry.registerBlock(IndustryLow_Density3DPrintingSouth, "IndustryLow_Density3DPrintingSouth"); - GameRegistry.registerBlock(IndustryLow_Density3DPrintingWest, "IndustryLow_Density3DPrintingWest"); - GameRegistry.registerBlock(IndustryLow_DensityBlueEast, "IndustryLow_DensityBlueEast"); - GameRegistry.registerBlock(IndustryLow_DensityBlueNorth, "IndustryLow_DensityBlueNorth"); - GameRegistry.registerBlock(IndustryLow_DensityBlueSouth, "IndustryLow_DensityBlueSouth"); - GameRegistry.registerBlock(IndustryLow_DensityBlueWest, "IndustryLow_DensityBlueWest"); - GameRegistry.registerBlock(IndustryLow_DensityBrickEast, "IndustryLow_DensityBrickEast"); - GameRegistry.registerBlock(IndustryLow_DensityBrickEastWest, "IndustryLow_DensityBrickEastWest"); - GameRegistry.registerBlock(IndustryLow_DensityBrickNorth, "IndustryLow_DensityBrickNorth"); - GameRegistry.registerBlock(IndustryLow_DensityBrickNorthSouth, "IndustryLow_DensityBrickNorthSouth"); - GameRegistry.registerBlock(IndustryLow_DensityBrickSouth, "IndustryLow_DensityBrickSouth"); - GameRegistry.registerBlock(IndustryLow_DensityBrickWest, "IndustryLow_DensityBrickWest"); - GameRegistry.registerBlock(IndustryLow_DensityBrownEast2, "IndustryLow_DensityBrownEast2"); - GameRegistry.registerBlock(IndustryLow_DensityBrownEast, "IndustryLow_DensityBrownEast"); - GameRegistry.registerBlock(IndustryLow_DensityBrownNorth2, "IndustryLow_DensityBrownNorth2"); - GameRegistry.registerBlock(IndustryLow_DensityBrownNorth, "IndustryLow_DensityBrownNorth"); - GameRegistry.registerBlock(IndustryLow_DensityBrownSouth2, "IndustryLow_DensityBrownSouth2"); - GameRegistry.registerBlock(IndustryLow_DensityBrownSouth, "IndustryLow_DensityBrownSouth"); - GameRegistry.registerBlock(IndustryLow_DensityBrownWest2, "IndustryLow_DensityBrownWest2"); - GameRegistry.registerBlock(IndustryLow_DensityBrownWest, "IndustryLow_DensityBrownWest"); - GameRegistry.registerBlock(IndustryLow_DensityChimneyEast, "IndustryLow_DensityChimneyEast"); - GameRegistry.registerBlock(IndustryLow_DensityChimneyNorth, "IndustryLow_DensityChimneyNorth"); - GameRegistry.registerBlock(IndustryLow_DensityChimneySouth, "IndustryLow_DensityChimneySouth"); - GameRegistry.registerBlock(IndustryLow_DensityChimneyWest, "IndustryLow_DensityChimneyWest"); - GameRegistry.registerBlock(IndustryLow_DensityGreenEast, "IndustryLow_DensityGreenEast"); - GameRegistry.registerBlock(IndustryLow_DensityGreenNorth, "IndustryLow_DensityGreenNorth"); - GameRegistry.registerBlock(IndustryLow_DensityGreenSouth, "IndustryLow_DensityGreenSouth"); - GameRegistry.registerBlock(IndustryLow_DensityGreenWest, "IndustryLow_DensityGreenWest"); - GameRegistry.registerBlock(IndustryLow_DensityIronEast, "IndustryLow_DensityIronEast"); - GameRegistry.registerBlock(IndustryLow_DensityIronNorth, "IndustryLow_DensityIronNorth"); - GameRegistry.registerBlock(IndustryLow_DensityIronSouth, "IndustryLow_DensityIronSouth"); - GameRegistry.registerBlock(IndustryLow_DensityIronWest, "IndustryLow_DensityIronWest"); - GameRegistry.registerBlock(IndustryLow_DensityParabolicAntennaEast, "IndustryLow_DensityParabolicAntennaEast"); - GameRegistry.registerBlock(IndustryLow_DensityParabolicAntennaNorth, "IndustryLow_DensityParabolicAntennaNorth"); - GameRegistry.registerBlock(IndustryLow_DensityParabolicAntennaSouth, "IndustryLow_DensityParabolicAntennaSouth"); - GameRegistry.registerBlock(IndustryLow_DensityParabolicAntennaWest, "IndustryLow_DensityParabolicAntennaWest"); - GameRegistry.registerBlock(IndustryLow_DensityTankNorthEastSouthWest, "IndustryLow_DensityTankNorthEastSouthWest"); - GameRegistry.registerBlock(IndustryLow_DensityTelescopeEast, "IndustryLow_DensityTelescopeEast"); - GameRegistry.registerBlock(IndustryLow_DensityTelescopeNorth, "IndustryLow_DensityTelescopeNorth"); - GameRegistry.registerBlock(IndustryLow_DensityTelescopeSouth, "IndustryLow_DensityTelescopeSouth"); - GameRegistry.registerBlock(IndustryLow_DensityTelescopeWest, "IndustryLow_DensityTelescopeWest"); - GameRegistry.registerBlock(IndustryMedium_DensityBlueEast, "IndustryMedium_DensityBlueEast"); - GameRegistry.registerBlock(IndustryMedium_DensityBlueNorth, "IndustryMedium_DensityBlueNorth"); - GameRegistry.registerBlock(IndustryMedium_DensityBlueSouth, "IndustryMedium_DensityBlueSouth"); - GameRegistry.registerBlock(IndustryMedium_DensityBlueWest, "IndustryMedium_DensityBlueWest"); - GameRegistry.registerBlock(IndustryMedium_DensityBrickEast, "IndustryMedium_DensityBrickEast"); - GameRegistry.registerBlock(IndustryMedium_DensityBrickNorth, "IndustryMedium_DensityBrickNorth"); - GameRegistry.registerBlock(IndustryMedium_DensityBrickSouth, "IndustryMedium_DensityBrickSouth"); - GameRegistry.registerBlock(IndustryMedium_DensityBrickWest, "IndustryMedium_DensityBrickWest"); - GameRegistry.registerBlock(IndustryMedium_DensityBrownEast, "IndustryMedium_DensityBrownEast"); - GameRegistry.registerBlock(IndustryMedium_DensityBrownNorth, "IndustryMedium_DensityBrownNorth"); - GameRegistry.registerBlock(IndustryMedium_DensityBrownSouth, "IndustryMedium_DensityBrownSouth"); - GameRegistry.registerBlock(IndustryMedium_DensityBrownWest, "IndustryMedium_DensityBrownWest"); - GameRegistry.registerBlock(IndustryMedium_DensityChemicalPressEastWest, "IndustryMedium_DensityChemicalPressEastWest"); - GameRegistry.registerBlock(IndustryMedium_DensityChemicalPressNorthSouth, "IndustryMedium_DensityChemicalPressNorthSouth"); - GameRegistry.registerBlock(IndustryMedium_DensityChimneyEast, "IndustryMedium_DensityChimneyEast"); - GameRegistry.registerBlock(IndustryMedium_DensityChimneyNorth, "IndustryMedium_DensityChimneyNorth"); - GameRegistry.registerBlock(IndustryMedium_DensityChimneySouth, "IndustryMedium_DensityChimneySouth"); - GameRegistry.registerBlock(IndustryMedium_DensityChimneyWest, "IndustryMedium_DensityChimneyWest"); - GameRegistry.registerBlock(IndustryMedium_DensityGreenEast, "IndustryMedium_DensityGreenEast"); - GameRegistry.registerBlock(IndustryMedium_DensityGreenNorth, "IndustryMedium_DensityGreenNorth"); - GameRegistry.registerBlock(IndustryMedium_DensityGreenSouth, "IndustryMedium_DensityGreenSouth"); - GameRegistry.registerBlock(IndustryMedium_DensityGreenWest, "IndustryMedium_DensityGreenWest"); - GameRegistry.registerBlock(IndustryMedium_DensityIceEast, "IndustryMedium_DensityIceEast"); - GameRegistry.registerBlock(IndustryMedium_DensityIceNorth, "IndustryMedium_DensityIceNorth"); - GameRegistry.registerBlock(IndustryMedium_DensityIceSouth, "IndustryMedium_DensityIceSouth"); - GameRegistry.registerBlock(IndustryMedium_DensityIceWest, "IndustryMedium_DensityIceWest"); - GameRegistry.registerBlock(IndustryMedium_DensitySandstoneEast, "IndustryMedium_DensitySandstoneEast"); - GameRegistry.registerBlock(IndustryMedium_DensitySandstoneNorth, "IndustryMedium_DensitySandstoneNorth"); - GameRegistry.registerBlock(IndustryMedium_DensitySandstoneSouth, "IndustryMedium_DensitySandstoneSouth"); - GameRegistry.registerBlock(IndustryMedium_DensitySandstoneWest, "IndustryMedium_DensitySandstoneWest"); - GameRegistry.registerBlock(IndustryMedium_DensityTankEast, "IndustryMedium_DensityTankEast"); - GameRegistry.registerBlock(IndustryMedium_DensityTankNorth, "IndustryMedium_DensityTankNorth"); - GameRegistry.registerBlock(IndustryMedium_DensityTankSouth, "IndustryMedium_DensityTankSouth"); - GameRegistry.registerBlock(IndustryMedium_DensityTankWest, "IndustryMedium_DensityTankWest"); - GameRegistry.registerBlock(OfficeHigh_DensityBrickEastWest, "OfficeHigh_DensityBrickEastWest"); - GameRegistry.registerBlock(OfficeHigh_DensityBrickNorthSouth, "OfficeHigh_DensityBrickNorthSouth"); - GameRegistry.registerBlock(OfficeHigh_DensityCyanEast, "OfficeHigh_DensityCyanEast"); - GameRegistry.registerBlock(OfficeHigh_DensityCyanNorth, "OfficeHigh_DensityCyanNorth"); - GameRegistry.registerBlock(OfficeHigh_DensityCyanSouth, "OfficeHigh_DensityCyanSouth"); - GameRegistry.registerBlock(OfficeHigh_DensityCyanWest, "OfficeHigh_DensityCyanWest"); - GameRegistry.registerBlock(OfficeHigh_DensityHoleOnTopEast, "OfficeHigh_DensityHoleOnTopEast"); - GameRegistry.registerBlock(OfficeHigh_DensityHoleOnTopNorth, "OfficeHigh_DensityHoleOnTopNorth"); - GameRegistry.registerBlock(OfficeHigh_DensityHoleOnTopSouth, "OfficeHigh_DensityHoleOnTopSouth"); - GameRegistry.registerBlock(OfficeHigh_DensityHoleOnTopWest, "OfficeHigh_DensityHoleOnTopWest"); - GameRegistry.registerBlock(OfficeHigh_DensityLightBlueEastWest, "OfficeHigh_DensityLightBlueEastWest"); - GameRegistry.registerBlock(OfficeHigh_DensityLightBlueNorthSouth, "OfficeHigh_DensityLightBlueNorthSouth"); - GameRegistry.registerBlock(OfficeHigh_DensitySpirolBuildingEast, "OfficeHigh_DensitySpirolBuildingEast"); - GameRegistry.registerBlock(OfficeHigh_DensitySpirolBuildingNorth, "OfficeHigh_DensitySpirolBuildingNorth"); - GameRegistry.registerBlock(OfficeHigh_DensitySpirolBuildingSouth, "OfficeHigh_DensitySpirolBuildingSouth"); - GameRegistry.registerBlock(OfficeHigh_DensitySpirolBuildingWest, "OfficeHigh_DensitySpirolBuildingWest"); - GameRegistry.registerBlock(OfficeLow_DensityBlueEast, "OfficeLow_DensityBlueEast"); - GameRegistry.registerBlock(OfficeLow_DensityBlueNorth, "OfficeLow_DensityBlueNorth"); - GameRegistry.registerBlock(OfficeLow_DensityBlueSouth, "OfficeLow_DensityBlueSouth"); - GameRegistry.registerBlock(OfficeLow_DensityBlueWest, "OfficeLow_DensityBlueWest"); - GameRegistry.registerBlock(OfficeLow_DensityGreenEast, "OfficeLow_DensityGreenEast"); - GameRegistry.registerBlock(OfficeLow_DensityGreenNorth, "OfficeLow_DensityGreenNorth"); - GameRegistry.registerBlock(OfficeLow_DensityGreenSouth, "OfficeLow_DensityGreenSouth"); - GameRegistry.registerBlock(OfficeLow_DensityGreenWest, "OfficeLow_DensityGreenWest"); - GameRegistry.registerBlock(OfficeLow_DensityWhiteEast, "OfficeLow_DensityWhiteEast"); - GameRegistry.registerBlock(OfficeLow_DensityWhiteNorth, "OfficeLow_DensityWhiteNorth"); - GameRegistry.registerBlock(OfficeLow_DensityWhiteSouth, "OfficeLow_DensityWhiteSouth"); - GameRegistry.registerBlock(OfficeLow_DensityWhiteWest, "OfficeLow_DensityWhiteWest"); - GameRegistry.registerBlock(OfficeLow_DensityYellowEast, "OfficeLow_DensityYellowEast"); - GameRegistry.registerBlock(OfficeLow_DensityYellowNorth, "OfficeLow_DensityYellowNorth"); - GameRegistry.registerBlock(OfficeLow_DensityYellowSouth, "OfficeLow_DensityYellowSouth"); - GameRegistry.registerBlock(OfficeLow_DensityYellowWest, "OfficeLow_DensityYellowWest"); - GameRegistry.registerBlock(OfficeMedium_DensityCyanEast, "OfficeMedium_DensityCyanEast"); - GameRegistry.registerBlock(OfficeMedium_DensityCyanNorth, "OfficeMedium_DensityCyanNorth"); - GameRegistry.registerBlock(OfficeMedium_DensityCyanSouth, "OfficeMedium_DensityCyanSouth"); - GameRegistry.registerBlock(OfficeMedium_DensityCyanWest, "OfficeMedium_DensityCyanWest"); - GameRegistry.registerBlock(OfficeMedium_DensityLightBlueEast, "OfficeMedium_DensityLightBlueEast"); - GameRegistry.registerBlock(OfficeMedium_DensityLightBlueNorth, "OfficeMedium_DensityLightBlueNorth"); - GameRegistry.registerBlock(OfficeMedium_DensityLightBlueSouth, "OfficeMedium_DensityLightBlueSouth"); - GameRegistry.registerBlock(OfficeMedium_DensityLightBlueWest, "OfficeMedium_DensityLightBlueWest"); - GameRegistry.registerBlock(OfficeMedium_DensityPinkEast, "OfficeMedium_DensityPinkEast"); - GameRegistry.registerBlock(OfficeMedium_DensityPinkNorth, "OfficeMedium_DensityPinkNorth"); - GameRegistry.registerBlock(OfficeMedium_DensityPinkSouth, "OfficeMedium_DensityPinkSouth"); - GameRegistry.registerBlock(OfficeMedium_DensityPinkWest, "OfficeMedium_DensityPinkWest"); - GameRegistry.registerBlock(OfficeMedium_DensitySandstoneEast, "OfficeMedium_DensitySandstoneEast"); - GameRegistry.registerBlock(OfficeMedium_DensitySandstoneNorth, "OfficeMedium_DensitySandstoneNorth"); - GameRegistry.registerBlock(OfficeMedium_DensitySandstoneSouth, "OfficeMedium_DensitySandstoneSouth"); - GameRegistry.registerBlock(OfficeMedium_DensitySandstoneWest, "OfficeMedium_DensitySandstoneWest"); - GameRegistry.registerBlock(PublicFireServiceBigEast, "PublicFireServiceBigEast"); - GameRegistry.registerBlock(PublicFireServiceBigNorth, "PublicFireServiceBigNorth"); - GameRegistry.registerBlock(PublicFireServiceBigSouth, "PublicFireServiceBigSouth"); - GameRegistry.registerBlock(PublicFireServiceBigWest, "PublicFireServiceBigWest"); - GameRegistry.registerBlock(PublicFireServiceSmallEast, "PublicFireServiceSmallEast"); - GameRegistry.registerBlock(PublicFireServiceSmallNorth, "PublicFireServiceSmallNorth"); - GameRegistry.registerBlock(PublicFireServiceSmallSouth, "PublicFireServiceSmallSouth"); - GameRegistry.registerBlock(PublicFireServiceSmallWest, "PublicFireServiceSmallWest"); - GameRegistry.registerBlock(PublicHospitalBigEast, "PublicHospitalBigEast"); - GameRegistry.registerBlock(PublicHospitalBigNorth, "PublicHospitalBigNorth"); - GameRegistry.registerBlock(PublicHospitalBigSouth, "PublicHospitalBigSouth"); - GameRegistry.registerBlock(PublicHospitalBigWest, "PublicHospitalBigWest"); - GameRegistry.registerBlock(PublicHospitalSmallEast, "PublicHospitalSmallEast"); - GameRegistry.registerBlock(PublicHospitalSmallNorth, "PublicHospitalSmallNorth"); - GameRegistry.registerBlock(PublicHospitalSmallSouth, "PublicHospitalSmallSouth"); - GameRegistry.registerBlock(PublicHospitalSmallWest, "PublicHospitalSmallWest"); - GameRegistry.registerBlock(PublicLibraryEastWest, "PublicLibraryEastWest"); - GameRegistry.registerBlock(PublicLibraryNorthSouth, "PublicLibraryNorthSouth"); - GameRegistry.registerBlock(PublicPoliceBigEast, "PublicPoliceBigEast"); - GameRegistry.registerBlock(PublicPoliceBigNorth, "PublicPoliceBigNorth"); - GameRegistry.registerBlock(PublicPoliceBigSouth, "PublicPoliceBigSouth"); - GameRegistry.registerBlock(PublicPoliceBigWest, "PublicPoliceBigWest"); - GameRegistry.registerBlock(PublicPoliceSmallEast, "PublicPoliceSmallEast"); - GameRegistry.registerBlock(PublicPoliceSmallNorth, "PublicPoliceSmallNorth"); - GameRegistry.registerBlock(PublicPoliceSmallSouth, "PublicPoliceSmallSouth"); - GameRegistry.registerBlock(PublicPoliceSmallWest, "PublicPoliceSmallWest"); - GameRegistry.registerBlock(PublicSchoolBigNorthEast, "PublicSchoolBigNorthEast"); - GameRegistry.registerBlock(PublicSchoolBigNorthWest, "PublicSchoolBigNorthWest"); - GameRegistry.registerBlock(PublicSchoolBigSouthEast, "PublicSchoolBigSouthEast"); - GameRegistry.registerBlock(PublicSchoolBigSouthWest, "PublicSchoolBigSouthWest"); - GameRegistry.registerBlock(PublicSchoolSmallNorthEast, "PublicSchoolSmallNorthEast"); - GameRegistry.registerBlock(PublicSchoolSmallNorthWest, "PublicSchoolSmallNorthWest"); - GameRegistry.registerBlock(PublicSchoolSmallSouthEast, "PublicSchoolSmallSouthEast"); - GameRegistry.registerBlock(PublicSchoolSmallSouthWest, "PublicSchoolSmallSouthWest"); - GameRegistry.registerBlock(PublicTownhallBigEastWest, "PublicTownhallBigEastWest"); - GameRegistry.registerBlock(PublicTownhallBigNorthSouth, "PublicTownhallBigNorthSouth"); - GameRegistry.registerBlock(PublicTownhallSmallEast, "PublicTownhallSmallEast"); - GameRegistry.registerBlock(PublicTownhallSmallNorth, "PublicTownhallSmallNorth"); - GameRegistry.registerBlock(PublicTownhallSmallSouth, "PublicTownhallSmallSouth"); - GameRegistry.registerBlock(PublicTownhallSmallWest, "PublicTownhallSmallWest"); - GameRegistry.registerBlock(PublicUniversityEast, "PublicUniversityEast"); - GameRegistry.registerBlock(PublicUniversityNorth, "PublicUniversityNorth"); - GameRegistry.registerBlock(PublicUniversitySouth, "PublicUniversitySouth"); - GameRegistry.registerBlock(PublicUniversityWest, "PublicUniversityWest"); - GameRegistry.registerBlock(ResidentalEnormous_DensityBlockNorthEastSouthWest, "ResidentalEnormous_DensityBlockNorthEastSouthWest"); - GameRegistry.registerBlock(ResidentalEnormous_DensityBrickBigEast, "ResidentalEnormous_DensityBrickBigEast"); - GameRegistry.registerBlock(ResidentalEnormous_DensityBrickBigNorth, "ResidentalEnormous_DensityBrickBigNorth"); - GameRegistry.registerBlock(ResidentalEnormous_DensityBrickBigSouth, "ResidentalEnormous_DensityBrickBigSouth"); - GameRegistry.registerBlock(ResidentalEnormous_DensityBrickBigWest, "ResidentalEnormous_DensityBrickBigWest"); - GameRegistry.registerBlock(ResidentalEnormous_DensityBrickSmallNorthEastSouthWest, "ResidentalEnormous_DensityBrickSmallNorthEastSouthWest"); - GameRegistry.registerBlock(ResidentalEnormous_DensityGreyEast, "ResidentalEnormous_DensityGreyEast"); - GameRegistry.registerBlock(ResidentalEnormous_DensityGreyNorth, "ResidentalEnormous_DensityGreyNorth"); - GameRegistry.registerBlock(ResidentalEnormous_DensityGreySouth, "ResidentalEnormous_DensityGreySouth"); - GameRegistry.registerBlock(ResidentalEnormous_DensityGreyWest, "ResidentalEnormous_DensityGreyWest"); - GameRegistry.registerBlock(ResidentalEnormous_DensityModernEast, "ResidentalEnormous_DensityModernEast"); - GameRegistry.registerBlock(ResidentalEnormous_DensityModernNorth, "ResidentalEnormous_DensityModernNorth"); - GameRegistry.registerBlock(ResidentalEnormous_DensityModernSouth, "ResidentalEnormous_DensityModernSouth"); - GameRegistry.registerBlock(ResidentalEnormous_DensityModernWest, "ResidentalEnormous_DensityModernWest"); - GameRegistry.registerBlock(ResidentalEnormous_DensityRedEastWest, "ResidentalEnormous_DensityRedEastWest"); - GameRegistry.registerBlock(ResidentalEnormous_DensityRedNorthSouth, "ResidentalEnormous_DensityRedNorthSouth"); - GameRegistry.registerBlock(ResidentalEnormous_DensityRoundNorthEastSouthWest, "ResidentalEnormous_DensityRoundNorthEastSouthWest"); - GameRegistry.registerBlock(ResidentalEnormous_DensityStoneEast2, "ResidentalEnormous_DensityStoneEast2"); - GameRegistry.registerBlock(ResidentalEnormous_DensityStoneEast, "ResidentalEnormous_DensityStoneEast"); - GameRegistry.registerBlock(ResidentalEnormous_DensityStoneNorth2, "ResidentalEnormous_DensityStoneNorth2"); - GameRegistry.registerBlock(ResidentalEnormous_DensityStoneNorth, "ResidentalEnormous_DensityStoneNorth"); - GameRegistry.registerBlock(ResidentalEnormous_DensityStoneSouth2, "ResidentalEnormous_DensityStoneSouth2"); - GameRegistry.registerBlock(ResidentalEnormous_DensityStoneSouth, "ResidentalEnormous_DensityStoneSouth"); - GameRegistry.registerBlock(ResidentalEnormous_DensityStoneWest2, "ResidentalEnormous_DensityStoneWest2"); - GameRegistry.registerBlock(ResidentalEnormous_DensityStoneWest, "ResidentalEnormous_DensityStoneWest"); - GameRegistry.registerBlock(ResidentalEnormous_DensityYellowNorthEastSouthWest, "ResidentalEnormous_DensityYellowNorthEastSouthWest"); - GameRegistry.registerBlock(ResidentalHigh_DensityBlueEast, "ResidentalHigh_DensityBlueEast"); - GameRegistry.registerBlock(ResidentalHigh_DensityBlueEastWest, "ResidentalHigh_DensityBlueEastWest"); - GameRegistry.registerBlock(ResidentalHigh_DensityBlueNorth, "ResidentalHigh_DensityBlueNorth"); - GameRegistry.registerBlock(ResidentalHigh_DensityBlueNorthSouth, "ResidentalHigh_DensityBlueNorthSouth"); - GameRegistry.registerBlock(ResidentalHigh_DensityBlueSouth, "ResidentalHigh_DensityBlueSouth"); - GameRegistry.registerBlock(ResidentalHigh_DensityBlueWest, "ResidentalHigh_DensityBlueWest"); - GameRegistry.registerBlock(ResidentalHigh_DensityBrickEast, "ResidentalHigh_DensityBrickEast"); - GameRegistry.registerBlock(ResidentalHigh_DensityBrickEastWest, "ResidentalHigh_DensityBrickEastWest"); - GameRegistry.registerBlock(ResidentalHigh_DensityBrickNorth, "ResidentalHigh_DensityBrickNorth"); - GameRegistry.registerBlock(ResidentalHigh_DensityBrickNorthSouth, "ResidentalHigh_DensityBrickNorthSouth"); - GameRegistry.registerBlock(ResidentalHigh_DensityBrickSouth, "ResidentalHigh_DensityBrickSouth"); - GameRegistry.registerBlock(ResidentalHigh_DensityBrickWest, "ResidentalHigh_DensityBrickWest"); - GameRegistry.registerBlock(ResidentalHigh_DensityGreenGreyEast, "ResidentalHigh_DensityGreenGreyEast"); - GameRegistry.registerBlock(ResidentalHigh_DensityGreenGreyNorth, "ResidentalHigh_DensityGreenGreyNorth"); - GameRegistry.registerBlock(ResidentalHigh_DensityGreenGreySouth, "ResidentalHigh_DensityGreenGreySouth"); - GameRegistry.registerBlock(ResidentalHigh_DensityGreenGreyWest, "ResidentalHigh_DensityGreenGreyWest"); - GameRegistry.registerBlock(ResidentalHigh_DensityRedCornerNorthEast, "ResidentalHigh_DensityRedCornerNorthEast"); - GameRegistry.registerBlock(ResidentalHigh_DensityRedCornerNorthWest, "ResidentalHigh_DensityRedCornerNorthWest"); - GameRegistry.registerBlock(ResidentalHigh_DensityRedCornerSouthEast, "ResidentalHigh_DensityRedCornerSouthEast"); - GameRegistry.registerBlock(ResidentalHigh_DensityRedCornerSouthWest, "ResidentalHigh_DensityRedCornerSouthWest"); - GameRegistry.registerBlock(ResidentalHigh_DensityRedYellowEast, "ResidentalHigh_DensityRedYellowEast"); - GameRegistry.registerBlock(ResidentalHigh_DensityRedYellowNorth, "ResidentalHigh_DensityRedYellowNorth"); - GameRegistry.registerBlock(ResidentalHigh_DensityRedYellowSouth, "ResidentalHigh_DensityRedYellowSouth"); - GameRegistry.registerBlock(ResidentalHigh_DensityRedYellowWest, "ResidentalHigh_DensityRedYellowWest"); - GameRegistry.registerBlock(ResidentalHigh_DensityStoneEast2, "ResidentalHigh_DensityStoneEast2"); - GameRegistry.registerBlock(ResidentalHigh_DensityStoneEast, "ResidentalHigh_DensityStoneEast"); - GameRegistry.registerBlock(ResidentalHigh_DensityStoneNorth2, "ResidentalHigh_DensityStoneNorth2"); - GameRegistry.registerBlock(ResidentalHigh_DensityStoneNorth, "ResidentalHigh_DensityStoneNorth"); - GameRegistry.registerBlock(ResidentalHigh_DensityStoneSouth2, "ResidentalHigh_DensityStoneSouth2"); - GameRegistry.registerBlock(ResidentalHigh_DensityStoneSouth, "ResidentalHigh_DensityStoneSouth"); - GameRegistry.registerBlock(ResidentalHigh_DensityStoneWest2, "ResidentalHigh_DensityStoneWest2"); - GameRegistry.registerBlock(ResidentalHigh_DensityStoneWest, "ResidentalHigh_DensityStoneWest"); - GameRegistry.registerBlock(ResidentalHigh_DensityYellowEast, "ResidentalHigh_DensityYellowEast"); - GameRegistry.registerBlock(ResidentalHigh_DensityYellowNorth, "ResidentalHigh_DensityYellowNorth"); - GameRegistry.registerBlock(ResidentalHigh_DensityYellowSouth, "ResidentalHigh_DensityYellowSouth"); - GameRegistry.registerBlock(ResidentalHigh_DensityYellowWest, "ResidentalHigh_DensityYellowWest"); - GameRegistry.registerBlock(ResidentalLow_DensityBeigeEast, "ResidentalLow_DensityBeigeEast"); - GameRegistry.registerBlock(ResidentalLow_DensityBeigeNorth, "ResidentalLow_DensityBeigeNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityBeigeSouth, "ResidentalLow_DensityBeigeSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityBeigeWest, "ResidentalLow_DensityBeigeWest"); - GameRegistry.registerBlock(ResidentalLow_DensityCyanEast, "ResidentalLow_DensityCyanEast"); - GameRegistry.registerBlock(ResidentalLow_DensityCyanNorth, "ResidentalLow_DensityCyanNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityCyanSouth, "ResidentalLow_DensityCyanSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityCyanWest, "ResidentalLow_DensityCyanWest"); - GameRegistry.registerBlock(ResidentalLow_DensityGreenEast2, "ResidentalLow_DensityGreenEast2"); - GameRegistry.registerBlock(ResidentalLow_DensityGreenEast, "ResidentalLow_DensityGreenEast"); - GameRegistry.registerBlock(ResidentalLow_DensityGreenNorth2, "ResidentalLow_DensityGreenNorth2"); - GameRegistry.registerBlock(ResidentalLow_DensityGreenNorth, "ResidentalLow_DensityGreenNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityGreenSouth2, "ResidentalLow_DensityGreenSouth2"); - GameRegistry.registerBlock(ResidentalLow_DensityGreenSouth, "ResidentalLow_DensityGreenSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityGreenWest2, "ResidentalLow_DensityGreenWest2"); - GameRegistry.registerBlock(ResidentalLow_DensityGreenWest, "ResidentalLow_DensityGreenWest"); - GameRegistry.registerBlock(ResidentalLow_DensityLightBlueEast2, "ResidentalLow_DensityLightBlueEast2"); - GameRegistry.registerBlock(ResidentalLow_DensityLightBlueEast, "ResidentalLow_DensityLightBlueEast"); - GameRegistry.registerBlock(ResidentalLow_DensityLightBlueNorth2, "ResidentalLow_DensityLightBlueNorth2"); - GameRegistry.registerBlock(ResidentalLow_DensityLightBlueNorth, "ResidentalLow_DensityLightBlueNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityLightBlueSouth2, "ResidentalLow_DensityLightBlueSouth2"); - GameRegistry.registerBlock(ResidentalLow_DensityLightBlueSouth, "ResidentalLow_DensityLightBlueSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityLightBlueWest2, "ResidentalLow_DensityLightBlueWest2"); - GameRegistry.registerBlock(ResidentalLow_DensityLightBlueWest, "ResidentalLow_DensityLightBlueWest"); - GameRegistry.registerBlock(ResidentalLow_DensityLightGreyEast, "ResidentalLow_DensityLightGreyEast"); - GameRegistry.registerBlock(ResidentalLow_DensityLightGreyNorth, "ResidentalLow_DensityLightGreyNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityLightGreySouth, "ResidentalLow_DensityLightGreySouth"); - GameRegistry.registerBlock(ResidentalLow_DensityLightGreyWest, "ResidentalLow_DensityLightGreyWest"); - GameRegistry.registerBlock(ResidentalLow_DensityModernEast, "ResidentalLow_DensityModernEast"); - GameRegistry.registerBlock(ResidentalLow_DensityModernNorth, "ResidentalLow_DensityModernNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityModernSouth, "ResidentalLow_DensityModernSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityModernWest, "ResidentalLow_DensityModernWest"); - GameRegistry.registerBlock(ResidentalLow_DensityOrangeEast, "ResidentalLow_DensityOrangeEast"); - GameRegistry.registerBlock(ResidentalLow_DensityOrangeNorth, "ResidentalLow_DensityOrangeNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityOrangeSouth, "ResidentalLow_DensityOrangeSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityOrangeWest, "ResidentalLow_DensityOrangeWest"); - GameRegistry.registerBlock(ResidentalLow_DensityRedEast, "ResidentalLow_DensityRedEast"); - GameRegistry.registerBlock(ResidentalLow_DensityRedNorth, "ResidentalLow_DensityRedNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityRedSouth, "ResidentalLow_DensityRedSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityRedWest, "ResidentalLow_DensityRedWest"); - GameRegistry.registerBlock(ResidentalLow_DensityStoneEast, "ResidentalLow_DensityStoneEast"); - GameRegistry.registerBlock(ResidentalLow_DensityStoneNorth, "ResidentalLow_DensityStoneNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityStoneSouth, "ResidentalLow_DensityStoneSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityStoneWest, "ResidentalLow_DensityStoneWest"); - GameRegistry.registerBlock(ResidentalLow_DensityWhiteEast, "ResidentalLow_DensityWhiteEast"); - GameRegistry.registerBlock(ResidentalLow_DensityWhiteNorth, "ResidentalLow_DensityWhiteNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityWhiteSouth, "ResidentalLow_DensityWhiteSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityWhiteWest, "ResidentalLow_DensityWhiteWest"); - GameRegistry.registerBlock(ResidentalLow_DensityWoodEast, "ResidentalLow_DensityWoodEast"); - GameRegistry.registerBlock(ResidentalLow_DensityWoodNorth, "ResidentalLow_DensityWoodNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityWoodSouth, "ResidentalLow_DensityWoodSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityWoodWest, "ResidentalLow_DensityWoodWest"); - GameRegistry.registerBlock(ResidentalLow_DensityYellowEast2, "ResidentalLow_DensityYellowEast2"); - GameRegistry.registerBlock(ResidentalLow_DensityYellowEast, "ResidentalLow_DensityYellowEast"); - GameRegistry.registerBlock(ResidentalLow_DensityYellowNorth2, "ResidentalLow_DensityYellowNorth2"); - GameRegistry.registerBlock(ResidentalLow_DensityYellowNorth, "ResidentalLow_DensityYellowNorth"); - GameRegistry.registerBlock(ResidentalLow_DensityYellowSouth2, "ResidentalLow_DensityYellowSouth2"); - GameRegistry.registerBlock(ResidentalLow_DensityYellowSouth, "ResidentalLow_DensityYellowSouth"); - GameRegistry.registerBlock(ResidentalLow_DensityYellowWest2, "ResidentalLow_DensityYellowWest2"); - GameRegistry.registerBlock(ResidentalLow_DensityYellowWest, "ResidentalLow_DensityYellowWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityBlueGreenEast, "ResidentalMedium_DensityBlueGreenEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityBlueGreenNorth, "ResidentalMedium_DensityBlueGreenNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityBlueGreenSouth, "ResidentalMedium_DensityBlueGreenSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityBlueGreenWest, "ResidentalMedium_DensityBlueGreenWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityBlueRedEast, "ResidentalMedium_DensityBlueRedEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityBlueRedNorth, "ResidentalMedium_DensityBlueRedNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityBlueRedSouth, "ResidentalMedium_DensityBlueRedSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityBlueRedWest, "ResidentalMedium_DensityBlueRedWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityBrickEast, "ResidentalMedium_DensityBrickEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityBrickNorth, "ResidentalMedium_DensityBrickNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityBrickSouth, "ResidentalMedium_DensityBrickSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityBrickWest, "ResidentalMedium_DensityBrickWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityHorizontalEast, "ResidentalMedium_DensityHorizontalEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityHorizontalNorth, "ResidentalMedium_DensityHorizontalNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityHorizontalSouth, "ResidentalMedium_DensityHorizontalSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityHorizontalWest, "ResidentalMedium_DensityHorizontalWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityOrangeGreenEast, "ResidentalMedium_DensityOrangeGreenEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityOrangeGreenNorth, "ResidentalMedium_DensityOrangeGreenNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityOrangeGreenSouth, "ResidentalMedium_DensityOrangeGreenSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityOrangeGreenWest, "ResidentalMedium_DensityOrangeGreenWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityQuartzEast, "ResidentalMedium_DensityQuartzEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityQuartzNorth, "ResidentalMedium_DensityQuartzNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityQuartzSouth, "ResidentalMedium_DensityQuartzSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityQuartzWest, "ResidentalMedium_DensityQuartzWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityRedGreenEast, "ResidentalMedium_DensityRedGreenEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityRedGreenNorth, "ResidentalMedium_DensityRedGreenNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityRedGreenSouth, "ResidentalMedium_DensityRedGreenSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityRedGreenWest, "ResidentalMedium_DensityRedGreenWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityRoofEast, "ResidentalMedium_DensityRoofEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityRoofNorth, "ResidentalMedium_DensityRoofNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityRoofSouth, "ResidentalMedium_DensityRoofSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityRoofWest, "ResidentalMedium_DensityRoofWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityStone1EastWest, "ResidentalMedium_DensityStone1EastWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityStone1NorthSouth, "ResidentalMedium_DensityStone1NorthSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityStone2EastWest, "ResidentalMedium_DensityStone2EastWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityStone2NorthSouth, "ResidentalMedium_DensityStone2NorthSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneCornerNorthEast, "ResidentalMedium_DensityStoneCornerNorthEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneCornerNorthWest, "ResidentalMedium_DensityStoneCornerNorthWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneCornerSouthEast, "ResidentalMedium_DensityStoneCornerSouthEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneCornerSouthWest, "ResidentalMedium_DensityStoneCornerSouthWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneEast, "ResidentalMedium_DensityStoneEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneEndNorthEastWest, "ResidentalMedium_DensityStoneEndNorthEastWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneEndNorthSouthEast, "ResidentalMedium_DensityStoneEndNorthSouthEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneEndNorthSouthWest, "ResidentalMedium_DensityStoneEndNorthSouthWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneEndSouthEastWest, "ResidentalMedium_DensityStoneEndSouthEastWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneNorth, "ResidentalMedium_DensityStoneNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneSouth, "ResidentalMedium_DensityStoneSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityStoneWest, "ResidentalMedium_DensityStoneWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityVerticalEast, "ResidentalMedium_DensityVerticalEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityVerticalNorth, "ResidentalMedium_DensityVerticalNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityVerticalSouth, "ResidentalMedium_DensityVerticalSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityVerticalWest, "ResidentalMedium_DensityVerticalWest"); - GameRegistry.registerBlock(ResidentalMedium_DensityYellowRedEast, "ResidentalMedium_DensityYellowRedEast"); - GameRegistry.registerBlock(ResidentalMedium_DensityYellowRedNorth, "ResidentalMedium_DensityYellowRedNorth"); - GameRegistry.registerBlock(ResidentalMedium_DensityYellowRedSouth, "ResidentalMedium_DensityYellowRedSouth"); - GameRegistry.registerBlock(ResidentalMedium_DensityYellowRedWest, "ResidentalMedium_DensityYellowRedWest"); - GameRegistry.registerBlock(ShoppingHigh_DensityQuartzEastWest, "ShoppingHigh_DensityQuartzEastWest"); - GameRegistry.registerBlock(ShoppingHigh_DensityQuartzNorthSouth, "ShoppingHigh_DensityQuartzNorthSouth"); - GameRegistry.registerBlock(ShoppingLow_DensityBrickEast, "ShoppingLow_DensityBrickEast"); - GameRegistry.registerBlock(ShoppingLow_DensityBrickNorth, "ShoppingLow_DensityBrickNorth"); - GameRegistry.registerBlock(ShoppingLow_DensityBrickSouth, "ShoppingLow_DensityBrickSouth"); - GameRegistry.registerBlock(ShoppingLow_DensityBrickWest, "ShoppingLow_DensityBrickWest"); - GameRegistry.registerBlock(ShoppingLow_DensityGreenEast, "ShoppingLow_DensityGreenEast"); - GameRegistry.registerBlock(ShoppingLow_DensityGreenNorth, "ShoppingLow_DensityGreenNorth"); - GameRegistry.registerBlock(ShoppingLow_DensityGreenSouth, "ShoppingLow_DensityGreenSouth"); - GameRegistry.registerBlock(ShoppingLow_DensityGreenWest, "ShoppingLow_DensityGreenWest"); - GameRegistry.registerBlock(ShoppingLow_DensityOrangeEast, "ShoppingLow_DensityOrangeEast"); - GameRegistry.registerBlock(ShoppingLow_DensityOrangeNorth, "ShoppingLow_DensityOrangeNorth"); - GameRegistry.registerBlock(ShoppingLow_DensityOrangeSouth, "ShoppingLow_DensityOrangeSouth"); - GameRegistry.registerBlock(ShoppingLow_DensityOrangeWest, "ShoppingLow_DensityOrangeWest"); - GameRegistry.registerBlock(ShoppingLow_DensityPinkEast, "ShoppingLow_DensityPinkEast"); - GameRegistry.registerBlock(ShoppingLow_DensityPinkNorth, "ShoppingLow_DensityPinkNorth"); - GameRegistry.registerBlock(ShoppingLow_DensityPinkSouth, "ShoppingLow_DensityPinkSouth"); - GameRegistry.registerBlock(ShoppingLow_DensityPinkWest, "ShoppingLow_DensityPinkWest"); - GameRegistry.registerBlock(ShoppingMedium_DensityModernEast, "ShoppingMedium_DensityModernEast"); - GameRegistry.registerBlock(ShoppingMedium_DensityModernNorth, "ShoppingMedium_DensityModernNorth"); - GameRegistry.registerBlock(ShoppingMedium_DensityModernSouth, "ShoppingMedium_DensityModernSouth"); - GameRegistry.registerBlock(ShoppingMedium_DensityModernWest, "ShoppingMedium_DensityModernWest"); - GameRegistry.registerBlock(ShoppingMedium_DensityQuartzEast, "ShoppingMedium_DensityQuartzEast"); - GameRegistry.registerBlock(ShoppingMedium_DensityQuartzNorth, "ShoppingMedium_DensityQuartzNorth"); - GameRegistry.registerBlock(ShoppingMedium_DensityQuartzSouth, "ShoppingMedium_DensityQuartzSouth"); - GameRegistry.registerBlock(ShoppingMedium_DensityQuartzWest, "ShoppingMedium_DensityQuartzWest"); - GameRegistry.registerBlock(TransportAirportRunway_EastWestBuilding_North, "TransportAirportRunway_EastWestBuilding_North"); - GameRegistry.registerBlock(TransportAirportRunway_EastWestBuilding_South, "TransportAirportRunway_EastWestBuilding_South"); - GameRegistry.registerBlock(TransportAirportRunway_NorthSouthBuilding_East, "TransportAirportRunway_NorthSouthBuilding_East"); - GameRegistry.registerBlock(TransportAirportRunway_NorthSouthBuilding_West, "TransportAirportRunway_NorthSouthBuilding_West"); - GameRegistry.registerBlock(TransportAvenue1EastWest, "TransportAvenue1EastWest"); - GameRegistry.registerBlock(TransportAvenue1NorthSouth, "TransportAvenue1NorthSouth"); - GameRegistry.registerBlock(TransportAvenue2EastWest, "TransportAvenue2EastWest"); - GameRegistry.registerBlock(TransportAvenue2NorthSouth, "TransportAvenue2NorthSouth"); - GameRegistry.registerBlock(TransportAvenueEEast, "TransportAvenueEEast"); - GameRegistry.registerBlock(TransportAvenueENorth, "TransportAvenueENorth"); - GameRegistry.registerBlock(TransportAvenueESouth, "TransportAvenueESouth"); - GameRegistry.registerBlock(TransportAvenueEWest, "TransportAvenueEWest"); - GameRegistry.registerBlock(TransportAvenueLNorthEast, "TransportAvenueLNorthEast"); - GameRegistry.registerBlock(TransportAvenueLNorthWest, "TransportAvenueLNorthWest"); - GameRegistry.registerBlock(TransportAvenueLSouthEast, "TransportAvenueLSouthEast"); - GameRegistry.registerBlock(TransportAvenueLSouthWest, "TransportAvenueLSouthWest"); - GameRegistry.registerBlock(TransportAvenueTNorthEastWest, "TransportAvenueTNorthEastWest"); - GameRegistry.registerBlock(TransportAvenueTNorthSouthEast, "TransportAvenueTNorthSouthEast"); - GameRegistry.registerBlock(TransportAvenueTNorthSouthWest, "TransportAvenueTNorthSouthWest"); - GameRegistry.registerBlock(TransportAvenueTSouthEastWest, "TransportAvenueTSouthEastWest"); - GameRegistry.registerBlock(TransportAvenueXNorthSouthEastWest, "TransportAvenueXNorthSouthEastWest"); - GameRegistry.registerBlock(TransportBridgeAvenue1EastWest, "TransportBridgeAvenue1EastWest"); - GameRegistry.registerBlock(TransportBridgeAvenue1NorthSouth, "TransportBridgeAvenue1NorthSouth"); - GameRegistry.registerBlock(TransportBridgeAvenue2NorthSouth, "TransportBridgeAvenue2NorthSouth"); - GameRegistry.registerBlock(TransportBridgeAvenue2SouthWest, "TransportBridgeAvenue2SouthWest"); - GameRegistry.registerBlock(TransportBridgeAvenue3EastWest, "TransportBridgeAvenue3EastWest"); - GameRegistry.registerBlock(TransportBridgeAvenue3NorthSouth, "TransportBridgeAvenue3NorthSouth"); - GameRegistry.registerBlock(TransportBridgeAvenue4EastWest, "TransportBridgeAvenue4EastWest"); - GameRegistry.registerBlock(TransportBridgeAvenue4NorthSouth, "TransportBridgeAvenue4NorthSouth"); - GameRegistry.registerBlock(TransportBridgeAvenueLNorthEast, "TransportBridgeAvenueLNorthEast"); - GameRegistry.registerBlock(TransportBridgeAvenueLNorthWest, "TransportBridgeAvenueLNorthWest"); - GameRegistry.registerBlock(TransportBridgeAvenueLSouthEast, "TransportBridgeAvenueLSouthEast"); - GameRegistry.registerBlock(TransportBridgeAvenueLSouthWest, "TransportBridgeAvenueLSouthWest"); - GameRegistry.registerBlock(TransportBridgeHighway1EastWest, "TransportBridgeHighway1EastWest"); - GameRegistry.registerBlock(TransportBridgeHighway1NorthSouth, "TransportBridgeHighway1NorthSouth"); - GameRegistry.registerBlock(TransportBridgeHighway2EastWest, "TransportBridgeHighway2EastWest"); - GameRegistry.registerBlock(TransportBridgeHighway2NorthSouth, "TransportBridgeHighway2NorthSouth"); - GameRegistry.registerBlock(TransportBridgeHighway3EastWest, "TransportBridgeHighway3EastWest"); - GameRegistry.registerBlock(TransportBridgeHighway3NorthSouth, "TransportBridgeHighway3NorthSouth"); - GameRegistry.registerBlock(TransportBridgeHighway4EastWest, "TransportBridgeHighway4EastWest"); - GameRegistry.registerBlock(TransportBridgeHighway4NorthSouth, "TransportBridgeHighway4NorthSouth"); - GameRegistry.registerBlock(TransportBridgeHighwayLNorthEast, "TransportBridgeHighwayLNorthEast"); - GameRegistry.registerBlock(TransportBridgeHighwayLNorthWest, "TransportBridgeHighwayLNorthWest"); - GameRegistry.registerBlock(TransportBridgeHighwayLSouthEast, "TransportBridgeHighwayLSouthEast"); - GameRegistry.registerBlock(TransportBridgeHighwayLSouthWest, "TransportBridgeHighwayLSouthWest"); - GameRegistry.registerBlock(TransportBridgeRoad1EastWest, "TransportBridgeRoad1EastWest"); - GameRegistry.registerBlock(TransportBridgeRoad1NorthSouth, "TransportBridgeRoad1NorthSouth"); - GameRegistry.registerBlock(TransportBridgeRoad2EastWest, "TransportBridgeRoad2EastWest"); - GameRegistry.registerBlock(TransportBridgeRoad2NorthSouth, "TransportBridgeRoad2NorthSouth"); - GameRegistry.registerBlock(TransportBridgeRoadLNorthEast, "TransportBridgeRoadLNorthEast"); - GameRegistry.registerBlock(TransportBridgeRoadLNorthWest, "TransportBridgeRoadLNorthWest"); - GameRegistry.registerBlock(TransportBridgeRoadLSouthEast, "TransportBridgeRoadLSouthEast"); - GameRegistry.registerBlock(TransportBridgeRoadLSouthWest, "TransportBridgeRoadLSouthWest"); - GameRegistry.registerBlock(TransportBridgeStreet1EastWest, "TransportBridgeStreet1EastWest"); - GameRegistry.registerBlock(TransportBridgeStreet1NorthSouth, "TransportBridgeStreet1NorthSouth"); - GameRegistry.registerBlock(TransportBridgeStreet2EastWest, "TransportBridgeStreet2EastWest"); - GameRegistry.registerBlock(TransportBridgeStreet2NorthSouth, "TransportBridgeStreet2NorthSouth"); - GameRegistry.registerBlock(TransportBridgeStreetLNorthEast, "TransportBridgeStreetLNorthEast"); - GameRegistry.registerBlock(TransportBridgeStreetLNorthWest, "TransportBridgeStreetLNorthWest"); - GameRegistry.registerBlock(TransportBridgeStreetLSouthEast, "TransportBridgeStreetLSouthEast"); - GameRegistry.registerBlock(TransportBridgeStreetLSouthWest, "TransportBridgeStreetLSouthWest"); - GameRegistry.registerBlock(TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside, "TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside"); - GameRegistry.registerBlock(TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside, "TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside"); - GameRegistry.registerBlock(TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside, "TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside"); - GameRegistry.registerBlock(TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside, "TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside"); - GameRegistry.registerBlock(TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside, "TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside"); - GameRegistry.registerBlock(TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside, "TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside"); - GameRegistry.registerBlock(TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside, "TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside"); - GameRegistry.registerBlock(TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside, "TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetLAvenue_EastStreet_North, "TransportConnectorAvenue_StreetLAvenue_EastStreet_North"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetLAvenue_EastStreet_South, "TransportConnectorAvenue_StreetLAvenue_EastStreet_South"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetLAvenue_NorthStreet_East, "TransportConnectorAvenue_StreetLAvenue_NorthStreet_East"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetLAvenue_NorthStreet_West, "TransportConnectorAvenue_StreetLAvenue_NorthStreet_West"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetLAvenue_SouthStreet_East, "TransportConnectorAvenue_StreetLAvenue_SouthStreet_East"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetLAvenue_SouthStreet_West, "TransportConnectorAvenue_StreetLAvenue_SouthStreet_West"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetLAvenue_WestStreet_North, "TransportConnectorAvenue_StreetLAvenue_WestStreet_North"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetLAvenue_WestStreet_South, "TransportConnectorAvenue_StreetLAvenue_WestStreet_South"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth, "TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North, "TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South, "TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East, "TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West, "TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest, "TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest, "TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth, "TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth, "TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth"); - GameRegistry.registerBlock(TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest, "TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest"); - GameRegistry.registerBlock(TransportConnectorBridge_AvenueBridge_EastAvenue_West, "TransportConnectorBridge_AvenueBridge_EastAvenue_West"); - GameRegistry.registerBlock(TransportConnectorBridge_AvenueBridge_NorthAvenue_South, "TransportConnectorBridge_AvenueBridge_NorthAvenue_South"); - GameRegistry.registerBlock(TransportConnectorBridge_AvenueBridge_SouthAvenue_North, "TransportConnectorBridge_AvenueBridge_SouthAvenue_North"); - GameRegistry.registerBlock(TransportConnectorBridge_AvenueBridge_WestAvenue_East, "TransportConnectorBridge_AvenueBridge_WestAvenue_East"); - GameRegistry.registerBlock(TransportConnectorBridge_RoadBridge_EastRoad_West, "TransportConnectorBridge_RoadBridge_EastRoad_West"); - GameRegistry.registerBlock(TransportConnectorBridge_RoadBridge_NorthRoad_South, "TransportConnectorBridge_RoadBridge_NorthRoad_South"); - GameRegistry.registerBlock(TransportConnectorBridge_RoadBridge_SouthRoad_North, "TransportConnectorBridge_RoadBridge_SouthRoad_North"); - GameRegistry.registerBlock(TransportConnectorBridge_RoadBridge_WestRoad_East, "TransportConnectorBridge_RoadBridge_WestRoad_East"); - GameRegistry.registerBlock(TransportConnectorBridge_StreetBridge_EastStreet_West, "TransportConnectorBridge_StreetBridge_EastStreet_West"); - GameRegistry.registerBlock(TransportConnectorBridge_StreetBridge_NorthStreet_South, "TransportConnectorBridge_StreetBridge_NorthStreet_South"); - GameRegistry.registerBlock(TransportConnectorBridge_StreetBridge_SouthStreet_North, "TransportConnectorBridge_StreetBridge_SouthStreet_North"); - GameRegistry.registerBlock(TransportConnectorBridge_StreetBridge_WestStreet_East, "TransportConnectorBridge_StreetBridge_WestStreet_East"); - GameRegistry.registerBlock(TransportConnectorHighway_AvenueHighway_EastAvenue_West, "TransportConnectorHighway_AvenueHighway_EastAvenue_West"); - GameRegistry.registerBlock(TransportConnectorHighway_AvenueHighway_NorthAvenue_South, "TransportConnectorHighway_AvenueHighway_NorthAvenue_South"); - GameRegistry.registerBlock(TransportConnectorHighway_AvenueHighway_SouthAvenue_North, "TransportConnectorHighway_AvenueHighway_SouthAvenue_North"); - GameRegistry.registerBlock(TransportConnectorHighway_AvenueHighway_WestAvenue_East, "TransportConnectorHighway_AvenueHighway_WestAvenue_East"); - GameRegistry.registerBlock(TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West, "TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West"); - GameRegistry.registerBlock(TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South, "TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South"); - GameRegistry.registerBlock(TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North, "TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North"); - GameRegistry.registerBlock(TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East, "TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East"); - GameRegistry.registerBlock(TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West, "TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West"); - GameRegistry.registerBlock(TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South, "TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South"); - GameRegistry.registerBlock(TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North, "TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North"); - GameRegistry.registerBlock(TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East, "TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East"); - GameRegistry.registerBlock(TransportHarbourBigEast, "TransportHarbourBigEast"); - GameRegistry.registerBlock(TransportHarbourBigNorth, "TransportHarbourBigNorth"); - GameRegistry.registerBlock(TransportHarbourBigSouth, "TransportHarbourBigSouth"); - GameRegistry.registerBlock(TransportHarbourBigWest, "TransportHarbourBigWest"); - GameRegistry.registerBlock(TransportHarbourSide1CornerNorthEast, "TransportHarbourSide1CornerNorthEast"); - GameRegistry.registerBlock(TransportHarbourSide1CornerNorthWest, "TransportHarbourSide1CornerNorthWest"); - GameRegistry.registerBlock(TransportHarbourSide1CornerSouthEast, "TransportHarbourSide1CornerSouthEast"); - GameRegistry.registerBlock(TransportHarbourSide1CornerSouthWest, "TransportHarbourSide1CornerSouthWest"); - GameRegistry.registerBlock(TransportHarbourSide2CornerCraneEast, "TransportHarbourSide2CornerCraneEast"); - GameRegistry.registerBlock(TransportHarbourSide2CornerCraneNorth, "TransportHarbourSide2CornerCraneNorth"); - GameRegistry.registerBlock(TransportHarbourSide2CornerCraneSouth, "TransportHarbourSide2CornerCraneSouth"); - GameRegistry.registerBlock(TransportHarbourSide2CornerCraneWest, "TransportHarbourSide2CornerCraneWest"); - GameRegistry.registerBlock(TransportHarbourSide2CornerEast, "TransportHarbourSide2CornerEast"); - GameRegistry.registerBlock(TransportHarbourSide2CornerNorth, "TransportHarbourSide2CornerNorth"); - GameRegistry.registerBlock(TransportHarbourSide2CornerSouth, "TransportHarbourSide2CornerSouth"); - GameRegistry.registerBlock(TransportHarbourSide2CornerWest, "TransportHarbourSide2CornerWest"); - GameRegistry.registerBlock(TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast, "TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast"); - GameRegistry.registerBlock(TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest, "TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest"); - GameRegistry.registerBlock(TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest, "TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest"); - GameRegistry.registerBlock(TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest, "TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest"); - GameRegistry.registerBlock(TransportHarbourSmallEast, "TransportHarbourSmallEast"); - GameRegistry.registerBlock(TransportHarbourSmallNorth, "TransportHarbourSmallNorth"); - GameRegistry.registerBlock(TransportHarbourSmallSouth, "TransportHarbourSmallSouth"); - GameRegistry.registerBlock(TransportHarbourSmallWest, "TransportHarbourSmallWest"); - GameRegistry.registerBlock(TransportHighway05EastWestNorthside, "TransportHighway05EastWestNorthside"); - GameRegistry.registerBlock(TransportHighway05EastWestSouthside, "TransportHighway05EastWestSouthside"); - GameRegistry.registerBlock(TransportHighway05NorthSouthEastside, "TransportHighway05NorthSouthEastside"); - GameRegistry.registerBlock(TransportHighway05NorthSouthWestside, "TransportHighway05NorthSouthWestside"); - GameRegistry.registerBlock(TransportHighway1EastWest, "TransportHighway1EastWest"); - GameRegistry.registerBlock(TransportHighway1NorthSouth, "TransportHighway1NorthSouth"); - GameRegistry.registerBlock(TransportHighway2EastWest, "TransportHighway2EastWest"); - GameRegistry.registerBlock(TransportHighway2NorthSouth, "TransportHighway2NorthSouth"); - GameRegistry.registerBlock(TransportHighwayDrivewayEastWestEastside, "TransportHighwayDrivewayEastWestEastside"); - GameRegistry.registerBlock(TransportHighwayDrivewayEastWestWestside, "TransportHighwayDrivewayEastWestWestside"); - GameRegistry.registerBlock(TransportHighwayDrivewayExitEastWestEastside, "TransportHighwayDrivewayExitEastWestEastside"); - GameRegistry.registerBlock(TransportHighwayDrivewayExitEastWestWestside, "TransportHighwayDrivewayExitEastWestWestside"); - GameRegistry.registerBlock(TransportHighwayDrivewayExitNorthSouthNorthside, "TransportHighwayDrivewayExitNorthSouthNorthside"); - GameRegistry.registerBlock(TransportHighwayDrivewayExitNorthSouthSouthside, "TransportHighwayDrivewayExitNorthSouthSouthside"); - GameRegistry.registerBlock(TransportHighwayDrivewayNorthSouthNorthside, "TransportHighwayDrivewayNorthSouthNorthside"); - GameRegistry.registerBlock(TransportHighwayDrivewayNorthSouthSouthside, "TransportHighwayDrivewayNorthSouthSouthside"); - GameRegistry.registerBlock(TransportHighwayExitEastWestEastside, "TransportHighwayExitEastWestEastside"); - GameRegistry.registerBlock(TransportHighwayExitEastWestWestside, "TransportHighwayExitEastWestWestside"); - GameRegistry.registerBlock(TransportHighwayExitNorthSouthNorthside, "TransportHighwayExitNorthSouthNorthside"); - GameRegistry.registerBlock(TransportHighwayExitNorthSouthSouthside, "TransportHighwayExitNorthSouthSouthside"); - GameRegistry.registerBlock(TransportHighwayFloor05EastWestNorthside, "TransportHighwayFloor05EastWestNorthside"); - GameRegistry.registerBlock(TransportHighwayFloor05EastWestSouthside, "TransportHighwayFloor05EastWestSouthside"); - GameRegistry.registerBlock(TransportHighwayFloor05NorthSouthEastside, "TransportHighwayFloor05NorthSouthEastside"); - GameRegistry.registerBlock(TransportHighwayFloor05NorthSouthWestside, "TransportHighwayFloor05NorthSouthWestside"); - GameRegistry.registerBlock(TransportHighwayFloor1EastWest, "TransportHighwayFloor1EastWest"); - GameRegistry.registerBlock(TransportHighwayFloor1NorthSouth, "TransportHighwayFloor1NorthSouth"); - GameRegistry.registerBlock(TransportHighwayFloor2EastWest, "TransportHighwayFloor2EastWest"); - GameRegistry.registerBlock(TransportHighwayFloor2NorthSouth, "TransportHighwayFloor2NorthSouth"); - GameRegistry.registerBlock(TransportHighwayFloorDrivewayEastWestEastside, "TransportHighwayFloorDrivewayEastWestEastside"); - GameRegistry.registerBlock(TransportHighwayFloorDrivewayEastWestWestside, "TransportHighwayFloorDrivewayEastWestWestside"); - GameRegistry.registerBlock(TransportHighwayFloorDrivewayExitEastWestEastside, "TransportHighwayFloorDrivewayExitEastWestEastside"); - GameRegistry.registerBlock(TransportHighwayFloorDrivewayExitEastWestWestside, "TransportHighwayFloorDrivewayExitEastWestWestside"); - GameRegistry.registerBlock(TransportHighwayFloorDrivewayExitNorthSouthNorthside, "TransportHighwayFloorDrivewayExitNorthSouthNorthside"); - GameRegistry.registerBlock(TransportHighwayFloorDrivewayExitNorthSouthSouthside, "TransportHighwayFloorDrivewayExitNorthSouthSouthside"); - GameRegistry.registerBlock(TransportHighwayFloorDrivewayNorthSouthNorthside, "TransportHighwayFloorDrivewayNorthSouthNorthside"); - GameRegistry.registerBlock(TransportHighwayFloorDrivewayNorthSouthSouthside, "TransportHighwayFloorDrivewayNorthSouthSouthside"); - GameRegistry.registerBlock(TransportHighwayFloorExitEastWestEast, "TransportHighwayFloorExitEastWestEast"); - GameRegistry.registerBlock(TransportHighwayFloorExitEastWestWestside, "TransportHighwayFloorExitEastWestWestside"); - GameRegistry.registerBlock(TransportHighwayFloorExitNorthSouthNorthside, "TransportHighwayFloorExitNorthSouthNorthside"); - GameRegistry.registerBlock(TransportHighwayFloorExitNorthSouthSouthside, "TransportHighwayFloorExitNorthSouthSouthside"); - GameRegistry.registerBlock(TransportHighwayFloorLNorthEast, "TransportHighwayFloorLNorthEast"); - GameRegistry.registerBlock(TransportHighwayFloorLNorthWest, "TransportHighwayFloorLNorthWest"); - GameRegistry.registerBlock(TransportHighwayFloorLSouthEast, "TransportHighwayFloorLSouthEast"); - GameRegistry.registerBlock(TransportHighwayFloorLSouthWest, "TransportHighwayFloorLSouthWest"); - GameRegistry.registerBlock(TransportHighwayFloorTNorthEastWest, "TransportHighwayFloorTNorthEastWest"); - GameRegistry.registerBlock(TransportHighwayFloorTNorthSouthEast, "TransportHighwayFloorTNorthSouthEast"); - GameRegistry.registerBlock(TransportHighwayFloorTNorthSouthWest, "TransportHighwayFloorTNorthSouthWest"); - GameRegistry.registerBlock(TransportHighwayFloorTSouthEastWest, "TransportHighwayFloorTSouthEastWest"); - GameRegistry.registerBlock(TransportHighwayFloorXNorthEastSouthWest, "TransportHighwayFloorXNorthEastSouthWest"); - GameRegistry.registerBlock(TransportHighwayLNorthEast, "TransportHighwayLNorthEast"); - GameRegistry.registerBlock(TransportHighwayLNorthWest, "TransportHighwayLNorthWest"); - GameRegistry.registerBlock(TransportHighwayLSouthEast, "TransportHighwayLSouthEast"); - GameRegistry.registerBlock(TransportHighwayLSouthWest, "TransportHighwayLSouthWest"); - GameRegistry.registerBlock(TransportHighwayTNorthEastWest, "TransportHighwayTNorthEastWest"); - GameRegistry.registerBlock(TransportHighwayTNorthSouthEast, "TransportHighwayTNorthSouthEast"); - GameRegistry.registerBlock(TransportHighwayTNorthSouthWest, "TransportHighwayTNorthSouthWest"); - GameRegistry.registerBlock(TransportHighwayTSouthEastWest, "TransportHighwayTSouthEastWest"); - GameRegistry.registerBlock(TransportHighwayXNorthEastSouthWest, "TransportHighwayXNorthEastSouthWest"); - GameRegistry.registerBlock(TransportPublicConnectorHightram_TramHightram_EastTram_West, "TransportPublicConnectorHightram_TramHightram_EastTram_West"); - GameRegistry.registerBlock(TransportPublicConnectorHightram_TramHightram_NorthTram_South, "TransportPublicConnectorHightram_TramHightram_NorthTram_South"); - GameRegistry.registerBlock(TransportPublicConnectorHightram_TramHightram_SouthTram_North, "TransportPublicConnectorHightram_TramHightram_SouthTram_North"); - GameRegistry.registerBlock(TransportPublicConnectorHightram_TramHightram_WestTram_East, "TransportPublicConnectorHightram_TramHightram_WestTram_East"); - GameRegistry.registerBlock(TransportPublicHightram1EastWest, "TransportPublicHightram1EastWest"); - GameRegistry.registerBlock(TransportPublicHightram1NorthSouth, "TransportPublicHightram1NorthSouth"); - GameRegistry.registerBlock(TransportPublicHightramEEast, "TransportPublicHightramEEast"); - GameRegistry.registerBlock(TransportPublicHightramENorth, "TransportPublicHightramENorth"); - GameRegistry.registerBlock(TransportPublicHightramESouth, "TransportPublicHightramESouth"); - GameRegistry.registerBlock(TransportPublicHightramEWest, "TransportPublicHightramEWest"); - GameRegistry.registerBlock(TransportPublicHightramLNorthEast, "TransportPublicHightramLNorthEast"); - GameRegistry.registerBlock(TransportPublicHightramLNorthWest, "TransportPublicHightramLNorthWest"); - GameRegistry.registerBlock(TransportPublicHightramLSouthEast, "TransportPublicHightramLSouthEast"); - GameRegistry.registerBlock(TransportPublicHightramLSouthWest, "TransportPublicHightramLSouthWest"); - GameRegistry.registerBlock(TransportPublicHightramStationEastWest, "TransportPublicHightramStationEastWest"); - GameRegistry.registerBlock(TransportPublicHightramStationNorthSouth, "TransportPublicHightramStationNorthSouth"); - GameRegistry.registerBlock(TransportPublicHightramXNorthEastSouthWest, "TransportPublicHightramXNorthEastSouthWest"); - GameRegistry.registerBlock(TransportPublicTram1EastWest, "TransportPublicTram1EastWest"); - GameRegistry.registerBlock(TransportPublicTram1NorthSouth, "TransportPublicTram1NorthSouth"); - GameRegistry.registerBlock(TransportPublicTramEEast, "TransportPublicTramEEast"); - GameRegistry.registerBlock(TransportPublicTramENorth, "TransportPublicTramENorth"); - GameRegistry.registerBlock(TransportPublicTramESouth, "TransportPublicTramESouth"); - GameRegistry.registerBlock(TransportPublicTramEWest, "TransportPublicTramEWest"); - GameRegistry.registerBlock(TransportPublicTramLNorthEast, "TransportPublicTramLNorthEast"); - GameRegistry.registerBlock(TransportPublicTramLNorthWest, "TransportPublicTramLNorthWest"); - GameRegistry.registerBlock(TransportPublicTramLSouthEast, "TransportPublicTramLSouthEast"); - GameRegistry.registerBlock(TransportPublicTramLSouthWest, "TransportPublicTramLSouthWest"); - GameRegistry.registerBlock(TransportPublicTram_on_road1EastWest, "TransportPublicTram_on_road1EastWest"); - GameRegistry.registerBlock(TransportPublicTram_on_road1NorthSouth, "TransportPublicTram_on_road1NorthSouth"); - GameRegistry.registerBlock(TransportPublicTram_on_roadEEast, "TransportPublicTram_on_roadEEast"); - GameRegistry.registerBlock(TransportPublicTram_on_roadENorth, "TransportPublicTram_on_roadENorth"); - GameRegistry.registerBlock(TransportPublicTram_on_roadESouth, "TransportPublicTram_on_roadESouth"); - GameRegistry.registerBlock(TransportPublicTram_on_roadEWest, "TransportPublicTram_on_roadEWest"); - GameRegistry.registerBlock(TransportPublicTram_on_roadLNorthEast, "TransportPublicTram_on_roadLNorthEast"); - GameRegistry.registerBlock(TransportPublicTram_on_roadLNorthWest, "TransportPublicTram_on_roadLNorthWest"); - GameRegistry.registerBlock(TransportPublicTram_on_roadLSouthEast, "TransportPublicTram_on_roadLSouthEast"); - GameRegistry.registerBlock(TransportPublicTram_on_roadLSouthWest, "TransportPublicTram_on_roadLSouthWest"); - GameRegistry.registerBlock(TransportPublicTramStationEastWest, "TransportPublicTramStationEastWest"); - GameRegistry.registerBlock(TransportPublicTramStationNorthSouth, "TransportPublicTramStationNorthSouth"); - GameRegistry.registerBlock(TransportPublicTramXNorthEastSouthWest, "TransportPublicTramXNorthEastSouthWest"); - GameRegistry.registerBlock(TransportRoad1EastWest, "TransportRoad1EastWest"); - GameRegistry.registerBlock(TransportRoad1NorthSouth, "TransportRoad1NorthSouth"); - GameRegistry.registerBlock(TransportRoadEEast, "TransportRoadEEast"); - GameRegistry.registerBlock(TransportRoadENorth, "TransportRoadENorth"); - GameRegistry.registerBlock(TransportRoadESouth, "TransportRoadESouth"); - GameRegistry.registerBlock(TransportRoadEWest, "TransportRoadEWest"); - GameRegistry.registerBlock(TransportRoadLNorthEast, "TransportRoadLNorthEast"); - GameRegistry.registerBlock(TransportRoadLNorthWest, "TransportRoadLNorthWest"); - GameRegistry.registerBlock(TransportRoadLSouthEast, "TransportRoadLSouthEast"); - GameRegistry.registerBlock(TransportRoadLSouthWest, "TransportRoadLSouthWest"); - GameRegistry.registerBlock(TransportRoadTNorthEastWest, "TransportRoadTNorthEastWest"); - GameRegistry.registerBlock(TransportRoadTNorthSouthEast, "TransportRoadTNorthSouthEast"); - GameRegistry.registerBlock(TransportRoadTNorthSouthWest, "TransportRoadTNorthSouthWest"); - GameRegistry.registerBlock(TransportRoadTSouthEastWest, "TransportRoadTSouthEastWest"); - GameRegistry.registerBlock(TransportRoadXNorthEastSouthWest, "TransportRoadXNorthEastSouthWest"); - GameRegistry.registerBlock(TransportStreet1EastWest, "TransportStreet1EastWest"); - GameRegistry.registerBlock(TransportStreet1NorthSouth, "TransportStreet1NorthSouth"); - GameRegistry.registerBlock(TransportStreetEEast, "TransportStreetEEast"); - GameRegistry.registerBlock(TransportStreetENorth, "TransportStreetENorth"); - GameRegistry.registerBlock(TransportStreetESouth, "TransportStreetESouth"); - GameRegistry.registerBlock(TransportStreetEWest, "TransportStreetEWest"); - GameRegistry.registerBlock(TransportStreetLNorthEast, "TransportStreetLNorthEast"); - GameRegistry.registerBlock(TransportStreetLNorthWest, "TransportStreetLNorthWest"); - GameRegistry.registerBlock(TransportStreetLSouthEast, "TransportStreetLSouthEast"); - GameRegistry.registerBlock(TransportStreetLSouthWest, "TransportStreetLSouthWest"); - GameRegistry.registerBlock(TransportStreetRoundaboutNorthEastSouthWest, "TransportStreetRoundaboutNorthEastSouthWest"); - GameRegistry.registerBlock(TransportStreetTNorthEastWest, "TransportStreetTNorthEastWest"); - GameRegistry.registerBlock(TransportStreetTNorthSouthEast, "TransportStreetTNorthSouthEast"); - GameRegistry.registerBlock(TransportStreetTNorthSouthWest, "TransportStreetTNorthSouthWest"); - GameRegistry.registerBlock(TransportStreetTSouthEastWest, "TransportStreetTSouthEastWest"); - GameRegistry.registerBlock(TransportStreetXNorthEastSouthWest, "TransportStreetXNorthEastSouthWest"); - GameRegistry.registerBlock(TransportWater1CornerNorthEast, "TransportWater1CornerNorthEast"); - GameRegistry.registerBlock(TransportWater1CornerNorthWest, "TransportWater1CornerNorthWest"); - GameRegistry.registerBlock(TransportWater1CornerSouthEast, "TransportWater1CornerSouthEast"); - GameRegistry.registerBlock(TransportWater1CornerSouthWest, "TransportWater1CornerSouthWest"); - GameRegistry.registerBlock(TransportWater2CornerEast, "TransportWater2CornerEast"); - GameRegistry.registerBlock(TransportWater2CornerNorth, "TransportWater2CornerNorth"); - GameRegistry.registerBlock(TransportWater2CornerSouth, "TransportWater2CornerSouth"); - GameRegistry.registerBlock(TransportWater2CornerWest, "TransportWater2CornerWest"); - GameRegistry.registerBlock(TransportWater3CornerNorthEast_NorthWest_SouthEast, "TransportWater3CornerNorthEast_NorthWest_SouthEast"); - GameRegistry.registerBlock(TransportWater3CornerNorthEast_NorthWest_SouthWest, "TransportWater3CornerNorthEast_NorthWest_SouthWest"); - GameRegistry.registerBlock(TransportWater3CornerSouthEast_SouthWest_NorthEast, "TransportWater3CornerSouthEast_SouthWest_NorthEast"); - GameRegistry.registerBlock(TransportWater3CornerSouthEast_SouthWest_NorthWest, "TransportWater3CornerSouthEast_SouthWest_NorthWest"); - GameRegistry.registerBlock(TransportWater4CornerNorthSouthEastWest, "TransportWater4CornerNorthSouthEastWest"); - GameRegistry.registerBlock(UtilityPower_NuclearEast, "UtilityPower_NuclearEast"); - GameRegistry.registerBlock(UtilityPower_NuclearNorth, "UtilityPower_NuclearNorth"); - GameRegistry.registerBlock(UtilityPower_NuclearSouth, "UtilityPower_NuclearSouth"); - GameRegistry.registerBlock(UtilityPower_NuclearWest, "UtilityPower_NuclearWest"); - GameRegistry.registerBlock(UtilityPower_OilCoalEast, "UtilityPower_OilCoalEast"); - GameRegistry.registerBlock(UtilityPower_OilCoalNorth, "UtilityPower_OilCoalNorth"); - GameRegistry.registerBlock(UtilityPower_OilCoalSouth, "UtilityPower_OilCoalSouth"); - GameRegistry.registerBlock(UtilityPower_OilCoalWest, "UtilityPower_OilCoalWest"); - GameRegistry.registerBlock(UtilityPower_SunNorthEastSouthWest, "UtilityPower_SunNorthEastSouthWest"); - GameRegistry.registerBlock(UtilityPower_WindEast, "UtilityPower_WindEast"); - GameRegistry.registerBlock(UtilityPower_WindNorth, "UtilityPower_WindNorth"); - GameRegistry.registerBlock(UtilityPower_WindSouth, "UtilityPower_WindSouth"); - GameRegistry.registerBlock(UtilityPower_WindWest, "UtilityPower_WindWest"); - GameRegistry.registerBlock(UtilityPumpjackEastWest, "UtilityPumpjackEastWest"); - GameRegistry.registerBlock(UtilityPumpjackNorthSouth, "UtilityPumpjackNorthSouth"); - GameRegistry.registerBlock(UtilityScrap_BurningEast, "UtilityScrap_BurningEast"); - GameRegistry.registerBlock(UtilityScrap_BurningNorth, "UtilityScrap_BurningNorth"); - GameRegistry.registerBlock(UtilityScrap_BurningSouth, "UtilityScrap_BurningSouth"); - GameRegistry.registerBlock(UtilityScrap_BurningWest, "UtilityScrap_BurningWest"); - GameRegistry.registerBlock(UtilityScrap_HeapEast, "UtilityScrap_HeapEast"); - GameRegistry.registerBlock(UtilityScrap_HeapNorth, "UtilityScrap_HeapNorth"); - GameRegistry.registerBlock(UtilityScrap_HeapSouth, "UtilityScrap_HeapSouth"); - GameRegistry.registerBlock(UtilityScrap_HeapWest, "UtilityScrap_HeapWest"); - GameRegistry.registerBlock(UtilityScrap_RecycleEast, "UtilityScrap_RecycleEast"); - GameRegistry.registerBlock(UtilityScrap_RecycleNorth, "UtilityScrap_RecycleNorth"); - GameRegistry.registerBlock(UtilityScrap_RecycleSouth, "UtilityScrap_RecycleSouth"); - GameRegistry.registerBlock(UtilityScrap_RecycleWest, "UtilityScrap_RecycleWest"); - GameRegistry.registerBlock(UtilityWater_PumpEast, "UtilityWater_PumpEast"); - GameRegistry.registerBlock(UtilityWater_PumpNorth, "UtilityWater_PumpNorth"); - GameRegistry.registerBlock(UtilityWater_PumpSouth, "UtilityWater_PumpSouth"); - GameRegistry.registerBlock(UtilityWater_PumpWest, "UtilityWater_PumpWest"); - GameRegistry.registerBlock(UtilityWater_TowerNorthEastSouthWest, "UtilityWater_TowerNorthEastSouthWest"); - GameRegistry.registerBlock(UtilityWater_TreatmentEast, "UtilityWater_TreatmentEast"); - GameRegistry.registerBlock(UtilityWater_TreatmentNorth, "UtilityWater_TreatmentNorth"); - GameRegistry.registerBlock(UtilityWater_TreatmentSouth, "UtilityWater_TreatmentSouth"); - GameRegistry.registerBlock(UtilityWater_TreatmentWest, "UtilityWater_TreatmentWest"); - GameRegistry.registerBlock(BlockAirBalloon, "BlockAirBalloon"); - GameRegistry.registerBlock(BlockAirplane, "BlockAirplane"); - //GameRegistry.registerBlock(BlockApplepie, "BlockApplepie"); - GameRegistry.registerBlock(BlockArena1, "BlockArena1"); - GameRegistry.registerBlock(BlockArena2, "BlockArena2"); - GameRegistry.registerBlock(BlockBigPyramid, "BlockBigPyramid"); - GameRegistry.registerBlock(BlockBoat, "BlockBoat"); - GameRegistry.registerBlock(BlockBunker, "BlockBunker"); - //GameRegistry.registerBlock(BlockCactus2, "BlockCactus2"); - //GameRegistry.registerBlock(BlockCake2, "BlockCake2"); - GameRegistry.registerBlock(BlockCastleTower, "BlockCastleTower"); - //GameRegistry.registerBlock(BlockCave, "BlockCave"); - //GameRegistry.registerBlock(BlockColumn, "BlockColumn"); - GameRegistry.registerBlock(BlockCosyHouse, "BlockCosyHouse"); - GameRegistry.registerBlock(BlockDungeon, "BlockDungeon"); - GameRegistry.registerBlock(BlockEnchantmentRoom, "BlockEnchantmentRoom"); - GameRegistry.registerBlock(BlockFarm2, "BlockFarm2"); - GameRegistry.registerBlock(BlockFarm3, "BlockFarm3"); - GameRegistry.registerBlock(BlockFarm4, "BlockFarm4"); - GameRegistry.registerBlock(BlockFarm, "BlockFarm"); - //GameRegistry.registerBlock(BlockFloatingSphere, "BlockFloatingSphere"); - GameRegistry.registerBlock(BlockGiantTree, "BlockGiantTree"); - //GameRegistry.registerBlock(BlockGlassHouse, "BlockGlassHouse"); - GameRegistry.registerBlock(BlockHountedHouse, "BlockHountedHouse"); - //GameRegistry.registerBlock(BlockHouse2, "BlockHouse2"); - GameRegistry.registerBlock(BlockHouse, "BlockHouse"); - GameRegistry.registerBlock(BlockHouseTrap1, "BlockHouseTrap1"); - GameRegistry.registerBlock(BlockHouseTrap2, "BlockHouseTrap2"); - //GameRegistry.registerBlock(BlockLeaves2, "BlockLeaves2"); - GameRegistry.registerBlock(BlockLighthouse, "BlockLighthouse"); - GameRegistry.registerBlock(BlockMegaHouse2, "BlockMegaHouse2"); - GameRegistry.registerBlock(BlockMegaHouse, "BlockMegaHouse"); - GameRegistry.registerBlock(BlockMegaTower, "BlockMegaTower"); - //GameRegistry.registerBlock(BlockPenIron, "BlockPenIron"); - //GameRegistry.registerBlock(BlockPenNether, "BlockPenNether"); - //GameRegistry.registerBlock(BlockPenWood, "BlockPenWood"); - GameRegistry.registerBlock(BlockPlane, "BlockPlane"); - GameRegistry.registerBlock(BlockPrison2, "BlockPrison2"); - GameRegistry.registerBlock(BlockPrison, "BlockPrison"); - GameRegistry.registerBlock(BlockPyramid, "BlockPyramid"); - GameRegistry.registerBlock(BlockRollerCoaster2, "BlockRollerCoaster2"); - GameRegistry.registerBlock(BlockRollercoaster, "BlockRollercoaster"); - //GameRegistry.registerBlock(BlockShelter, "BlockShelter"); - //GameRegistry.registerBlock(BlockSkyscraper2, "BlockSkyscraper2"); - GameRegistry.registerBlock(BlockSkyscraper, "BlockSkyscraper"); - //GameRegistry.registerBlock(BlockStadium2, "BlockStadium2"); - GameRegistry.registerBlock(BlockStadium, "BlockStadium"); - //GameRegistry.registerBlock(BlockStandardBrickHouse, "BlockStandardBrickHouse"); - GameRegistry.registerBlock(BlockStoreHouse, "BlockStoreHouse"); - //GameRegistry.registerBlock(BlockStreet, "BlockStreet"); - GameRegistry.registerBlock(BlockTorch2, "BlockTorch2"); - GameRegistry.registerBlock(BlockTower, "BlockTower"); - GameRegistry.registerBlock(BlockWaterSlide, "BlockWaterSlide"); - //GameRegistry.registerBlock(Remover16256, "Remover16256"); - //GameRegistry.registerBlock(Remover1632, "Remover1632"); - //GameRegistry.registerBlock(Remover168, "Remover168"); - GameRegistry.registerBlock(Remover16, "Remover16"); - //GameRegistry.registerBlock(Remover3216, "Remover3216"); - //GameRegistry.registerBlock(Remover32256, "Remover32256"); - //GameRegistry.registerBlock(Remover328, "Remover328"); - GameRegistry.registerBlock(Remover32, "Remover32"); - //GameRegistry.registerBlock(Remover64256, "Remover64256"); - GameRegistry.registerBlock(Remover64, "Remover64"); - //GameRegistry.registerBlock(Remover816, "Remover816"); - //GameRegistry.registerBlock(Remover8256, "Remover8256"); - //GameRegistry.registerBlock(Remover832, "Remover832"); - GameRegistry.registerBlock(Remover8, "Remover8"); - GameRegistry.registerBlock(RemoverLast, "RemoverLast"); +event.getRegistry().register(RandomBuildingComplex); +event.getRegistry().register(RandomImmense_Buildingcomplex); +event.getRegistry().register(RandomImmense_greenroof); +event.getRegistry().register(RandomImmense_White_House); +event.getRegistry().register(RandomImmense_WorkingBuilding); +event.getRegistry().register(RandomLittlePalace); +event.getRegistry().register(RandomLittleWoodenCabin); +event.getRegistry().register(RandomSandstoneBuilding); +event.getRegistry().register(RandomSandStoneChurch); +event.getRegistry().register(RandomSandstonewithFarm); +event.getRegistry().register(RandomSimpleSandstone); +event.getRegistry().register(RandomSpawnHouseProd); +event.getRegistry().register(RandomWoodenStonebrickHouse); +event.getRegistry().register(Live_Power_Windmill_East); - GameRegistry.registerBlock(OtherBrickHouse, "OtherBrickHouse"); - GameRegistry.registerBlock(OtherGrandHouse, "OtherGrandHouse"); - GameRegistry.registerBlock(OtherStable, "OtherStable"); - GameRegistry.registerBlock(OtherSurvivorHouse2, "OtherSurvivorHouse2"); - GameRegistry.registerBlock(OtherSurvivorHouse3, "OtherSurvivorHouse3"); - GameRegistry.registerBlock(OtherSurvivorHouse4, "OtherSurvivorHouse4"); - GameRegistry.registerBlock(OtherSurvivorHouse5, "OtherSurvivorHouse5"); - GameRegistry.registerBlock(OtherSurvivorHouse6, "OtherSurvivorHouse6"); - GameRegistry.registerBlock(OtherSurvivorHouse7, "OtherSurvivorHouse7"); - GameRegistry.registerBlock(OtherSurvivorHouse8, "OtherSurvivorHouse8"); - GameRegistry.registerBlock(OtherSurvivorHouse, "OtherSurvivorHouse"); - GameRegistry.registerBlock(OtherTemple, "OtherTemple"); - GameRegistry.registerBlock(SurvivalSmallBuilding, "SurvivalSmallBuilding"); - GameRegistry.registerBlock(SurvivalWoodenHouse, "SurvivalWoodenHouse"); - GameRegistry.registerBlock(WoodenHouse, "WoodenHouse"); - GameRegistry.registerBlock(BlockCheckerboard, "BlockCheckerboard"); - //GameRegistry.registerBlock(BlockAtlantis, "BlockAtlantis"); - GameRegistry.registerBlock(BlockBigWorld, "BlockBigWorld"); +event.getRegistry().register(LiveAirBalloon); +event.getRegistry().register(LiveAirplane); +event.getRegistry().register(LiveBoat); +event.getRegistry().register(LiveFlyingShip2); +event.getRegistry().register(LiveFlyingShip); +event.getRegistry().register(LivePlane); +event.getRegistry().register(Live_Helicopter); +event.getRegistry().register(Live_Fair_FreeFall); +event.getRegistry().register(Live_Mill); +event.getRegistry().register(Live_Cinema); +event.getRegistry().register(Live_Flying_Helicopter); +event.getRegistry().register(Live_Bus); +event.getRegistry().register(Live_Bus2); +event.getRegistry().register(BlockFerrisWheel); - GameRegistry.registerBlock(RandomAirballoon2, "RandomAirballoon2"); - GameRegistry.registerBlock(RandomEntrance, "RandomEntrance"); - GameRegistry.registerBlock(RandomFlyingShip, "RandomFlyingShip"); - GameRegistry.registerBlock(RandomGreenTent, "RandomGreenTent"); - GameRegistry.registerBlock(RandomGreyTent, "RandomGreyTent"); - GameRegistry.registerBlock(RandomLightHouse, "RandomLightHouse"); - GameRegistry.registerBlock(RandomMinerTent, "RandomMinerTent"); - GameRegistry.registerBlock(RandomNetherEntranceSurvival, "RandomNetherEntranceSurvival"); - GameRegistry.registerBlock(RandomRandomBrickHouse, "RandomRandomBrickHouse"); - GameRegistry.registerBlock(RandomSurvivalHouse1, "RandomSurvivalHouse1"); - GameRegistry.registerBlock(RandomSurvivalHouseSandstone, "RandomSurvivalHouseSandstone"); - GameRegistry.registerBlock(RandomTentCamp, "RandomTentCamp"); - GameRegistry.registerBlock(RandomWoodenHouse, "RandomWoodenHouse"); - GameRegistry.registerBlock(BlockCloud, "BlockCloud"); - - GameRegistry.registerBlock(RandomBuildingComplex, "RandomBuildingComplex"); - GameRegistry.registerBlock(RandomImmense_Buildingcomplex, "RandomImmense_Buildingcomplex"); - GameRegistry.registerBlock(RandomImmense_greenroof, "RandomImmense_greenroof"); - GameRegistry.registerBlock(RandomImmense_White_House, "RandomImmense_White_House"); - GameRegistry.registerBlock(RandomImmense_WorkingBuilding, "RandomImmense_WorkingBuilding"); - GameRegistry.registerBlock(RandomLittlePalace, "RandomLittlePalace"); - GameRegistry.registerBlock(RandomLittleWoodenCabin, "RandomLittleWoodenCabin"); - GameRegistry.registerBlock(RandomSandstoneBuilding, "RandomSandstoneBuilding"); - GameRegistry.registerBlock(RandomSandStoneChurch, "RandomSandStoneChurch"); - GameRegistry.registerBlock(RandomSandstonewithFarm, "RandomSandstonewithFarm"); - GameRegistry.registerBlock(RandomSimpleSandstone, "RandomSimpleSandstone"); - GameRegistry.registerBlock(RandomSpawnHouseProd, "RandomSpawnHouseProd"); - GameRegistry.registerBlock(RandomWoodenStonebrickHouse, "RandomWoodenStonebrickHouse"); - GameRegistry.registerBlock(Live_Power_Windmill_East, "Live_Power_Windmill_East"); - - GameRegistry.registerBlock(LiveAirBalloon, "LiveAirBalloon"); - GameRegistry.registerBlock(LiveAirplane, "LiveAirplane"); - GameRegistry.registerBlock(LiveBoat, "LiveBoat"); - GameRegistry.registerBlock(LiveFlyingShip2, "LiveFlyingShip2"); - GameRegistry.registerBlock(LiveFlyingShip, "LiveFlyingShip"); - GameRegistry.registerBlock(LivePlane, "LivePlane"); - GameRegistry.registerBlock(Live_Helicopter, "Live_Helicopter"); - GameRegistry.registerBlock(Live_Fair_FreeFall, "Live_Fair_FreeFall"); - GameRegistry.registerBlock(Live_Mill, "Live_Mill"); - GameRegistry.registerBlock(Live_Cinema, "Live_Cinema"); - GameRegistry.registerBlock(Live_Flying_Helicopter, "Live_Flying_Helicopter"); - GameRegistry.registerBlock(Live_Bus, "Live_Bus"); - GameRegistry.registerBlock(Live_Bus2, "Live_Bus2"); - GameRegistry.registerBlock(BlockFerrisWheel, "BlockFerrisWheel"); - - GameRegistry.registerBlock(ChristmasHouse, "ChristmasHouse"); - GameRegistry.registerBlock(ChristmasHouse2, "ChristmasHouse2"); - GameRegistry.registerBlock(ChristmasHouse3, "ChristmasHouse3"); - GameRegistry.registerBlock(ChristmasSleigh, "ChristmasSleigh"); - GameRegistry.registerBlock(ChristmasSleigh2, "ChristmasSleigh2"); - GameRegistry.registerBlock(ChristmasSnowman, "ChristmasSnowman"); - GameRegistry.registerBlock(ChristmasTree, "ChristmasTree"); - GameRegistry.registerBlock(ChristmasMarket, "ChristmasMarket"); - GameRegistry.registerBlock(Live_WaterMill, "Live_WaterMill"); - GameRegistry.registerBlock(BlockUnlimited, "BlockUnlimited"); +event.getRegistry().register(ChristmasHouse); +event.getRegistry().register(ChristmasHouse2); +event.getRegistry().register(ChristmasHouse3); +event.getRegistry().register(ChristmasSleigh); +event.getRegistry().register(ChristmasSleigh2); +event.getRegistry().register(ChristmasSnowman); +event.getRegistry().register(ChristmasTree); +event.getRegistry().register(ChristmasMarket); +event.getRegistry().register(Live_WaterMill); +event.getRegistry().register(BlockUnlimited); for(Block block : userBlocks){ - GameRegistry.registerBlock(block, block.getUnlocalizedName().substring(5)); + event.getRegistry().register(block); } - GameRegistry.addRecipe(new ItemStack(BlockPyramid, 1), new Object[] { + /*GameRegistry.addRecipe(new ItemStack(BlockPyramid, 1), new Object[] { " % ", " * ", "*&*", Character.valueOf('&'), Blocks.GLOWSTONE, Character.valueOf('*'), Blocks.SANDSTONE, Character.valueOf('%'), Blocks.TORCH }); @@ -2993,22 +3031,6 @@ public void preInit(FMLPreInitializationEvent e){ " & ", "&&&", " * ", Character.valueOf('&'), Blocks.LEAVES, Character.valueOf('*'), Blocks.LOG }); - // GameRegistry.addRecipe(new ItemStack(TreeHouse, 1), new Object[] { - //" & ", "&&&", " * ", Character.valueOf('&'), IMSM.leaves2, Character.valueOf('*'), Blocks.LOG - // }); - - /*GameRegistry.addRecipe(new ItemStack(BlockPenWood, 1), new Object[] { - "***", "* *", "***", Character.valueOf('*'), Blocks.OAK_FENCE - }); - - GameRegistry.addRecipe(new ItemStack(BlockPenIron, 1), new Object[] { - "***", "* *", "***", Character.valueOf('*'), Blocks.IRON_BARS - }); - - GameRegistry.addRecipe(new ItemStack(BlockPenNether, 1), new Object[] { - "***", "* *", "***", Character.valueOf('*'), Blocks.nether_brick_fence - });*/ - GameRegistry.addRecipe(new ItemStack(BlockFarm, 1), new Object[] { "***", "&&&", Character.valueOf('*'), Items.WHEAT_SEEDS, Character.valueOf('&'), Blocks.DIRT }); @@ -3077,10 +3099,6 @@ public void preInit(FMLPreInitializationEvent e){ "%*&", "**&", "***", Character.valueOf('&'), Blocks.GLASS, Character.valueOf('*'), Blocks.STONEBRICK, Character.valueOf('%'), Blocks.GLOWSTONE }); - /*GameRegistry.addRecipe(new ItemStack(BlockCave, 1), new Object[] { - "###", "# #", "###", Character.valueOf('#'), Blocks.STONE, Character.valueOf('*'), Blocks.STONEBRICK, Character.valueOf('%'), Blocks.GLOWSTONE - });*/ - GameRegistry.addRecipe(new ItemStack(BlockBoat, 1), new Object[] { "121", "343", "333", Character.valueOf('1'), Blocks.IRON_BARS, Character.valueOf('2'), Blocks.GLASS_PANE, Character.valueOf('3'), Blocks.WOOL, Character.valueOf('4'), Blocks.LOG }); @@ -3093,9 +3111,6 @@ public void preInit(FMLPreInitializationEvent e){ "###", " # ", "###", Character.valueOf('#'), Blocks.COBBLESTONE, Character.valueOf('X'), Blocks.PLANKS, Character.valueOf('%'), Blocks.GLOWSTONE }); - /*GameRegistry.addRecipe(new ItemStack(BlockHouse2, 1), new Object[] { - " % ", "%%%", "%%%", Character.valueOf('%'), Blocks.BRICK_BLOCK, Character.valueOf('X'), Blocks.PLANKS, Character.valueOf('C'), Blocks.GLOWSTONE - });*/ GameRegistry.addRecipe(new ItemStack(BlockBigPyramid, 1), new Object[] { " % ", "XYX", "%%%", Character.valueOf('%'), Blocks.SANDSTONE, Character.valueOf('X'), Items.GOLD_INGOT, Character.valueOf('Y'), Items.DIAMOND }); @@ -3147,10 +3162,6 @@ public void preInit(FMLPreInitializationEvent e){ "AAA", "BBB", "CCC", Character.valueOf('A'), Blocks.WOOL, Character.valueOf('B'), Blocks.GLOWSTONE, Character.valueOf('C'), Blocks.STONE, Character.valueOf('D'), Blocks.GOLDEN_RAIL, Character.valueOf('E'), Blocks.REDSTONE_TORCH, Character.valueOf('F'), Blocks.STONE_SLAB }); - /*GameRegistry.addRecipe(new ItemStack(BlockFloatingSphere, 1), new Object[] { - " A ", "ACA", " A ", Character.valueOf('A'), Blocks.GLASS, Character.valueOf('B'), Items.MINECART, Character.valueOf('C'), Blocks.GRASS, Character.valueOf('D'), Blocks.GOLDEN_RAIL, Character.valueOf('E'), Blocks.REDSTONE_TORCH, Character.valueOf('F'), Blocks.STONE_SLAB - });*/ - GameRegistry.addRecipe(new ItemStack(BlockMegaHouse, 1), new Object[] { " A ", "AAA", "AAA", Character.valueOf('A'), Blocks.PLANKS, Character.valueOf('B'), Items.MINECART, Character.valueOf('C'), Blocks.GRASS, Character.valueOf('D'), Blocks.GOLDEN_RAIL, Character.valueOf('E'), Blocks.REDSTONE_TORCH, Character.valueOf('F'), Blocks.STONE_SLAB }); @@ -3201,17 +3212,48 @@ public void preInit(FMLPreInitializationEvent e){ GameRegistry.addRecipe(new ItemStack(BlockCosyHouse, 1), new Object[] { "ABA", "BCB", "BDB", Character.valueOf('A'), Blocks.SNOW, Character.valueOf('B'), Blocks.BRICK_BLOCK, Character.valueOf('C'), Blocks.GLASS, Character.valueOf('D'), Blocks.OAK_DOOR, Character.valueOf('E'), Blocks.REDSTONE_TORCH, Character.valueOf('F'), Blocks.STONE_SLAB - }); + });*/ } + +@SubscribeEvent +public void registerItems(RegistryEvent.Register event) { + for (java.lang.reflect.Field field : IMSM.class.getDeclaredFields()) { + if (field.getType() == Block.class && java.lang.reflect.Modifier.isStatic(field.getModifiers())) { + try { + Block block = (Block) field.get(null); + if (block != null && block.getRegistryName() != null) { + event.getRegistry().register(new BlockItem(block, new Item.Properties().group(IMSM.Structures)).setRegistryName(block.getRegistryName())); + } + } catch (Exception e) { + e.printStackTrace(); + } + } + } +} - @EventHandler + @SubscribeEvent public void serverLoad(FMLServerStartingEvent event) { - event.registerServerCommand(new MazeCommand()); - event.registerServerCommand(new LiveCommand()); - event.registerServerCommand(new RideCommand()); - event.registerServerCommand(new UndoCommand()); + event.getCommandDispatcher().register( + net.minecraft.command.Commands.literal("imsm") + .then(net.minecraft.command.Commands.argument("structure", com.mojang.brigadier.arguments.StringArgumentType.string()) + .executes(ctx -> { + net.minecraft.entity.player.ServerPlayerEntity player = ctx.getSource().asPlayer(); + String structName = com.mojang.brigadier.arguments.StringArgumentType.getString(ctx, "structure"); + net.minecraft.util.math.BlockPos pos = new net.minecraft.util.math.BlockPos(player.getPosX(), player.getPosY(), player.getPosZ()); + modid.imsm.structureloader.SchematicStructure struct = new modid.imsm.structureloader.SchematicStructure(structName + ".structure", false); + struct.readFromFile(); + struct.process(player.getServerWorld(), pos.getX(), pos.getY(), pos.getZ()); + ctx.getSource().sendFeedback(new net.minecraft.util.text.StringTextComponent("Placed structure: " + structName), true); + return 1; + }) + ) + .executes(ctx -> { + ctx.getSource().sendFeedback(new net.minecraft.util.text.StringTextComponent("Usage: /imsm e.g. /imsm WoodenHouse"), false); + return 1; + }) + ); } } diff --git a/src/main/java/modid/imsm/core/IMSMClient.java b/src/main/java/modid/imsm/core/IMSMClient.java deleted file mode 100644 index e0d44820..00000000 --- a/src/main/java/modid/imsm/core/IMSMClient.java +++ /dev/null @@ -1,14 +0,0 @@ -package modid.imsm.core; - -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -public class IMSMClient extends IMSMProxy { - - @SideOnly(Side.CLIENT) - public void registerRenderInformation() - { - - } - -} diff --git a/src/main/java/modid/imsm/core/IMSMProxy.java b/src/main/java/modid/imsm/core/IMSMProxy.java deleted file mode 100644 index b340cc43..00000000 --- a/src/main/java/modid/imsm/core/IMSMProxy.java +++ /dev/null @@ -1,11 +0,0 @@ -package modid.imsm.core; - -public class IMSMProxy { - - public void registerRenderInformation() - { - - } - - -} diff --git a/src/main/java/modid/imsm/core/LiveStructure.java b/src/main/java/modid/imsm/core/LiveStructure.java index c8d18559..0d76e20d 100644 --- a/src/main/java/modid/imsm/core/LiveStructure.java +++ b/src/main/java/modid/imsm/core/LiveStructure.java @@ -8,16 +8,12 @@ import modid.imsm.livestructures.RideStructure; import modid.imsm.livestructures.YSync; import modid.imsm.structureloader.SchematicStructure; -import net.minecraft.block.BlockAir; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.client.Minecraft; -import net.minecraft.entity.player.EntityPlayerMP; -import net.minecraft.init.Blocks; +import net.minecraft.entity.player.ServerPlayerEntity; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; import net.minecraft.world.World; -import net.minecraft.world.chunk.Chunk; -import net.minecraft.world.chunk.storage.ExtendedBlockStorage; public class LiveStructure { public World world; @@ -68,7 +64,7 @@ protected LiveStructure(String structureName, World world, int x, int y, int z, } public boolean run() { - if(Minecraft.getMinecraft().thePlayer==null || distanceToPlayer(x,y,z)>100){ + if(Minecraft.getInstance().player==null || distanceToPlayer(x,y,z)>100){ return false; } if(animation!=null){ @@ -118,21 +114,20 @@ public boolean run() { } } if(animation!=null){ - for(Object playerObject : Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().playerEntities){ - EntityPlayerMP player = (EntityPlayerMP)playerObject; + for(ServerPlayerEntity player : Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).getPlayers()){ if(checkWithinBounds(player,struct.width, struct.height+5, struct.length)){ - //Minecraft.getMinecraft().thePlayer.motionX+=relativeSpawnPointX/2.25; + //Minecraft.getInstance().player.motionX+=relativeSpawnPointX/2.25; - double thisY = player.posY; + double thisY = player.getPosY(); if(relativeSpawnPointY>0){ if(IMSM.eventHandler.ySync!=null){ - if(Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().getBlockState(new BlockPos(player.posX,player.posY-1,player.posZ)).getBlock()!=Blocks.AIR || Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().getBlockState(new BlockPos(player.posX,player.posY,player.posZ)).getBlock()!=Blocks.AIR){ + if(Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).getBlockState(new BlockPos(player.getPosX(),player.getPosY()-1,player.getPosZ())).getBlock()!=Blocks.AIR || Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).getBlockState(new BlockPos(player.getPosX(),player.getPosY(),player.getPosZ())).getBlock()!=Blocks.AIR){ thisY=IMSM.eventHandler.ySync.getY()+1; } IMSM.eventHandler.ySync.setY(thisY); } else { - IMSM.eventHandler.ySync=new YSync(Minecraft.getMinecraft().thePlayer.posY); + IMSM.eventHandler.ySync=new YSync(Minecraft.getInstance().player.getPosY()); //setYSync=true; IMSM.eventHandler.ySync.isVehicle=this; } @@ -146,15 +141,15 @@ public boolean run() { } } - setPlayerToPosition(player,player.posX+relativeSpawnPointX,thisY,player.posZ+relativeSpawnPointZ); + setPlayerToPosition(player,player.getPosX()+relativeSpawnPointX,thisY,player.getPosZ()+relativeSpawnPointZ); //System.out.println("Moved "+player.getName()+" to "+player.posX+relativeSpawnPointX+", "+thisY+", "+player.posZ+relativeSpawnPointZ); - //setPlayerToPosition(Minecraft.getMinecraft().thePlayer.posX+relativeSpawnPointX,thisY,Minecraft.getMinecraft().thePlayer.posZ+relativeSpawnPointZ); + //setPlayerToPosition(Minecraft.getInstance().player.posX+relativeSpawnPointX,thisY,Minecraft.getInstance().player.posZ+relativeSpawnPointZ); } else if(IMSM.eventHandler.ySync!=null && IMSM.eventHandler.ySync.isVehicle==this){ IMSM.eventHandler.ySync=null; //setYSync=false; } } - //flightAtY=Minecraft.getMinecraft().thePlayer.posY; + //flightAtY=Minecraft.getInstance().player.posY; //worldIn.setBlockState(new BlockPos(x-struct.width-1, y+(struct.height/2), z-(struct.length/2)), Blocks.diamond_block.getDefaultState()); //System.out.println(worldIn.getBlockState(new BlockPos(x+struct.width, y+(struct.height/2), z+(struct.length/2))).getBlock()); if(relativeSpawnPointX!=0 || relativeSpawnPointZ!=0) { @@ -182,7 +177,7 @@ public boolean run() { //worldIn.setBlockState(new BlockPos(checkx, y+(struct.height/2), checkz), Blocks.redstone_block.getDefaultState()); //serverWorld.setBlockState(new BlockPos(checkx, y+(struct.height/2), checkz), Blocks.redstone_block.getDefaultState()); - if(!(world.getBlockState(new BlockPos(checkx, y+(struct.height/2), checkz)).getBlock() instanceof BlockAir)){ + if(!(world.getBlockState(new BlockPos(checkx, y+(struct.height/2), checkz)).getBlock() == Blocks.AIR)){ //System.out.println("Exploded due to "+worldIn.getBlockState(new BlockPos(checkx, y+(struct.height/2), checkz)).getBlock()+" at "+checkx+", "+(y+(struct.height/2))+", "+checkz); IMSM.eventHandler.scheduleExplosion(x-(struct.length/2), y+(struct.height/2), z-(struct.width/2)); removeThisLiveStructure(false); @@ -237,18 +232,18 @@ public boolean run() { //setAllPlayersToPosition(x-4,y+1,z-36); } else if (ride.progress==-1 && distanceToPlayer(x-4,y+1,z-36)==0){ //The ride is over bro ride.progress++; - IMSM.eventHandler.ySync=new YSync(Minecraft.getMinecraft().thePlayer.posY); + IMSM.eventHandler.ySync=new YSync(Minecraft.getInstance().player.getPosY()); } else if ((ride.progress>=0 && ride.progress1)){ //The ride is over bro - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Thanks for your visit. We hope to see you again soon!")); + Minecraft.getInstance().player.sendChatMessage("Thanks for your visit. We hope to see you again soon!"); ride=null; IMSM.eventHandler.isRiding=null; IMSM.eventHandler.ySync=null; - //System.out.println("BUT HAS POS "+Minecraft.getMinecraft().thePlayer.getPosition().getX()+", "+Minecraft.getMinecraft().thePlayer.getPosition().getY()+", "+Minecraft.getMinecraft().thePlayer.getPosition().getZ()); + //System.out.println("BUT HAS POS "+Minecraft.getInstance().player.getPosition().getX()+", "+Minecraft.getInstance().player.getPosition().getY()+", "+Minecraft.getInstance().player.getPosition().getZ()); }else if(ride.progress>=0 && ride.progress=0 && ride.progress=0 && ride.progress> 4]; if (storageArray == null) storageArray = chunk.getBlockStorageArray()[pos.getY() >> 4] = new ExtendedBlockStorage(pos.getY() >> 4 << 4, !world.provider.getHasNoSky()); if (storageArray.get(pos.getX() & 15, pos.getY() & 15, pos.getZ() & 15).getBlock() != state.getBlock()) { - IBlockState oldState = world.getBlockState(pos); + //IBlockState oldState = world.getBlockState(pos); storageArray.set(pos.getX() & 15, pos.getY() & 15, pos.getZ() & 15, state); } } catch (Exception e){ - } + }*/ } diff --git a/src/main/java/modid/imsm/core/LiveStructureClient.java b/src/main/java/modid/imsm/core/LiveStructureClient.java index 2c94a3de..22b20d77 100644 --- a/src/main/java/modid/imsm/core/LiveStructureClient.java +++ b/src/main/java/modid/imsm/core/LiveStructureClient.java @@ -6,7 +6,7 @@ public class LiveStructureClient extends LiveStructure { private LiveStructureClient(String structureName, int x, int y, int z, boolean doPlaceAir, int amountOfSlides, int waitTime, int id, int[][] animation, boolean doLoop) { - super(structureName, Minecraft.getMinecraft().theWorld, x, y, z, doPlaceAir, amountOfSlides, waitTime, id, animation, doLoop); + super(structureName, Minecraft.getInstance().world, x, y, z, doPlaceAir, amountOfSlides, waitTime, id, animation, doLoop); // TODO Auto-generated constructor stub } diff --git a/src/main/java/modid/imsm/core/LiveStructureServer.java b/src/main/java/modid/imsm/core/LiveStructureServer.java index 0f233b33..99cef3a0 100644 --- a/src/main/java/modid/imsm/core/LiveStructureServer.java +++ b/src/main/java/modid/imsm/core/LiveStructureServer.java @@ -6,7 +6,7 @@ public class LiveStructureServer extends LiveStructure { public LiveStructureServer(String structureName, int x, int y, int z, boolean doPlaceAir, int amountOfSlides, int waitTime, int id, int[][] animation, boolean doLoop) { - super(structureName, Minecraft.getMinecraft().getIntegratedServer().getEntityWorld(), x, y, z, doPlaceAir, amountOfSlides, waitTime, id, animation, doLoop); + super(structureName, Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension), x, y, z, doPlaceAir, amountOfSlides, waitTime, id, animation, doLoop); // TODO Auto-generated constructor stub } diff --git a/src/main/java/modid/imsm/core/StructureCreator.java b/src/main/java/modid/imsm/core/StructureCreator.java index a0d0850f..d0ca541a 100644 --- a/src/main/java/modid/imsm/core/StructureCreator.java +++ b/src/main/java/modid/imsm/core/StructureCreator.java @@ -82,8 +82,8 @@ protected void registerStructure(int at){ if(!world.isRemote){ PrintWriter writer; try { - (new File("saves/"+Minecraft.getMinecraft().getIntegratedServer().getFolderName()+"/Structures")).mkdirs(); - writer = new PrintWriter("saves/"+Minecraft.getMinecraft().getIntegratedServer().getFolderName()+"/Structures/"+at+".txt", "UTF-8"); + (new File("saves/"+Minecraft.getInstance().getIntegratedServer().getFolderName()+"/Structures")).mkdirs(); + writer = new PrintWriter("saves/"+Minecraft.getInstance().getIntegratedServer().getFolderName()+"/Structures/"+at+".txt", "UTF-8"); writer.println(structureName); writer.println(doReplaceAir); @@ -114,10 +114,10 @@ protected void removeThisStructure(){ ((StructureCreator)IMSM.eventHandler.creators.get(i)).id--; }} } - new File("saves/"+Minecraft.getMinecraft().getIntegratedServer().getFolderName()+"/Structures/"+id+".txt").delete(); + new File("saves/"+Minecraft.getInstance().getIntegratedServer().getFolderName()+"/Structures/"+id+".txt").delete(); System.out.println("Removed "+id); for(int i = id+1; i0 && UndoCommand.removedStates.size()>0){ for(int i = 0; i<100; i++){ - Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().setBlockState(UndoCommand.removedPositions.get(UndoCommand.removedPositions.size()-1), UndoCommand.removedStates.get(UndoCommand.removedStates.size()-1)); + Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).setBlockState(UndoCommand.removedPositions.get(UndoCommand.removedPositions.size()-1), UndoCommand.removedStates.get(UndoCommand.removedStates.size()-1)); UndoCommand.removedPositions.remove(UndoCommand.removedPositions.size()-1); UndoCommand.removedStates.remove(UndoCommand.removedStates.size()-1); if(UndoCommand.removedPositions.size()==0 || UndoCommand.removedStates.size()==0){ @@ -32,8 +32,8 @@ public boolean run() { // Get the default state(basically metadata 0) IBlockState state0=blk.getDefaultState(); // set the block - //Minecraft.getMinecraft().theWorld.setBlockState(pos0, state0); - Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().setBlockState(pos0, state0); + //Minecraft.getInstance().world.setBlockState(pos0, state0); + Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).setBlockState(pos0, state0); z++; if(z>struct.width){ z=0; @@ -43,7 +43,7 @@ public boolean run() { y=0; x++; if(x>struct.length){ - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("The last placed structure has been removed.")); + Minecraft.getInstance().player.sendChatMessage("The last placed structure has been removed.")); return true; } } diff --git a/src/main/java/modid/imsm/core/UpdateThread.java b/src/main/java/modid/imsm/core/UpdateThread.java deleted file mode 100644 index f3878339..00000000 --- a/src/main/java/modid/imsm/core/UpdateThread.java +++ /dev/null @@ -1,46 +0,0 @@ -package modid.imsm.core; - -import java.io.InputStream; -import java.io.InputStreamReader; -import java.net.URL; -import java.net.URLConnection; - -import net.minecraft.client.Minecraft; -import net.minecraft.util.text.TextComponentString; - -public class UpdateThread extends Thread { -public void run(){ - if(readFile("http://minecraftcreations.com/updates/update05062016.txt").equals("1")){ - if(Minecraft.getMinecraft().thePlayer!=null){ - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("There's a new update of Instant Massive Structures Mod available!! Download it now!!")); - } else { - IMSM.updateChecked=false; - System.out.println("Could not check for a Instant Massive Structures Mod update. It's SimJoo's fault, not yours"); - } - } -} - -private String readFile(String path) { - try { - String webPage = path; - URL url = new URL(webPage); - URLConnection urlConnection = url.openConnection(); - InputStream is = urlConnection.getInputStream(); - InputStreamReader isr = new InputStreamReader(is); - - int numCharsRead; - char[] charArray = new char[1024]; - StringBuffer sb = new StringBuffer(); - while ((numCharsRead = isr.read(charArray)) > 0) { - sb.append(charArray, 0, numCharsRead); - } - String result = sb.toString(); - - return result; - } catch (Exception e) { - - } - return "0"; - } - -} diff --git a/src/main/java/modid/imsm/livestructures/LiveStructureRemover.java b/src/main/java/modid/imsm/livestructures/LiveStructureRemover.java index 4d0d529f..30294042 100644 --- a/src/main/java/modid/imsm/livestructures/LiveStructureRemover.java +++ b/src/main/java/modid/imsm/livestructures/LiveStructureRemover.java @@ -1,39 +1,48 @@ package modid.imsm.livestructures; +import javax.annotation.Nullable; + +import com.google.common.collect.ImmutableMap; + import modid.imsm.core.IMSM; import modid.imsm.structureloader.SchematicStructure; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.util.EnumFacing; +import net.minecraft.entity.LivingEntity; +import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; +import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; import net.minecraft.world.World; public class LiveStructureRemover extends Block { public LiveStructureRemover(){ - super(Material.ROCK); + super(Block.Properties.create(Material.ROCK)); + } + + public Block setCreativeTab(ItemGroup g) { + //Item.BLOCK_TO_ITEM.get(this).getCreativeTabs().add(g); + return this; } @Override - public IBlockState onBlockPlaced(World worldIn, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer) - { - if(worldIn.isRemote){ + public void onBlockPlacedBy(World worldIn, BlockPos pos, BlockState state, @Nullable LivingEntity placer, ItemStack stack) { + if(worldIn.isRemote){ for(int i = 0; i> 4]; if (storageArray == null) storageArray = chunk.getBlockStorageArray()[pos.getY() >> 4] = new ExtendedBlockStorage(pos.getY() >> 4 << 4, !world.provider.getHasNoSky()); @@ -68,12 +65,14 @@ public static void setBlock(World world, BlockPos pos, IBlockState state){ } //world.checkLightFor(EnumSkyBlock.SKY, pos); //world.markBlockForUpdate(pos); - /*if(world.isRemote){ - IMSM.eventHandler.lightUpdate.processes.add(pos); - }*/ + //if(world.isRemote){ + //IMSM.eventHandler.lightUpdate.processes.add(pos); + //} } } catch (Exception e){ //e.printStackTrace(); } + */ + world.setBlockState(pos, state); } } diff --git a/src/main/java/modid/imsm/structureloader/BlockPlacer.java b/src/main/java/modid/imsm/structureloader/BlockPlacer.java index 2ae081cd..27c12ffd 100644 --- a/src/main/java/modid/imsm/structureloader/BlockPlacer.java +++ b/src/main/java/modid/imsm/structureloader/BlockPlacer.java @@ -2,30 +2,29 @@ import java.util.ArrayList; +import net.minecraft.block.BannerBlock; +import net.minecraft.block.BedBlock; import net.minecraft.block.Block; -import net.minecraft.block.BlockBanner; -import net.minecraft.block.BlockBasePressurePlate; -import net.minecraft.block.BlockBed; -import net.minecraft.block.BlockBrewingStand; -import net.minecraft.block.BlockBush; -import net.minecraft.block.BlockButton; -import net.minecraft.block.BlockCactus; -import net.minecraft.block.BlockCake; -import net.minecraft.block.BlockDoor; -import net.minecraft.block.BlockFlowerPot; -import net.minecraft.block.BlockLadder; -import net.minecraft.block.BlockLever; -import net.minecraft.block.BlockRailBase; -import net.minecraft.block.BlockRedstoneComparator; -import net.minecraft.block.BlockRedstoneTorch; -import net.minecraft.block.BlockRedstoneWire; -import net.minecraft.block.BlockSign; -import net.minecraft.block.BlockTorch; -import net.minecraft.block.BlockTripWireHook; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; +import net.minecraft.block.BrewingStandBlock; +import net.minecraft.block.BushBlock; +import net.minecraft.block.CactusBlock; +import net.minecraft.block.CakeBlock; +import net.minecraft.block.DoorBlock; +import net.minecraft.block.FlowerPotBlock; +import net.minecraft.block.LadderBlock; +import net.minecraft.block.LeverBlock; +import net.minecraft.block.PressurePlateBlock; +import net.minecraft.block.RedstoneTorchBlock; +import net.minecraft.block.RedstoneWireBlock; +import net.minecraft.block.StandingSignBlock; +import net.minecraft.block.TorchBlock; +import net.minecraft.block.TripWireHookBlock; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; +import net.minecraft.world.chunk.Chunk; public class BlockPlacer { @@ -33,9 +32,9 @@ public class BlockPlacer //private ArrayList updatePos; //private ArrayList updateState; boolean isLive; - private ArrayList specialBlocks = new ArrayList(); - private ArrayList specialBlockPos = new ArrayList(); - private ArrayList disabledPos = new ArrayList(); + private ArrayList specialBlocks = new ArrayList<>(); + private ArrayList specialBlockPos = new ArrayList<>(); + private ArrayList disabledPos = new ArrayList<>(); public BlockPlacer(World world, boolean isLive) { @@ -52,12 +51,12 @@ public void processSpecialBlocks(){ } } - public boolean add(IBlockState blockState, BlockPos blockPos) + public boolean add(BlockState blockState, BlockPos blockPos) { return add(blockState, blockPos, true); } - public boolean add(IBlockState blockState, BlockPos blockPos, boolean doCheckSpecialBlock) + public boolean add(BlockState blockState, BlockPos blockPos, boolean doCheckSpecialBlock) { /*Field field; try { @@ -86,13 +85,13 @@ public boolean add(IBlockState blockState, BlockPos blockPos, boolean doCheckSpe if(isLive){ return false; } - if(block instanceof BlockDoor){ + if(block instanceof DoorBlock){ BlockPos pos = new BlockPos(blockPos.getX(),blockPos.getY()+1,blockPos.getZ()); - world.setBlockState(blockPos, blockState.withProperty(BlockDoor.HALF, BlockDoor.EnumDoorHalf.LOWER), 2); - world.setBlockState(pos, blockState.withProperty(BlockDoor.HALF, BlockDoor.EnumDoorHalf.UPPER), 2); + //world.setBlockState(blockPos, blockState..with(BlockDoor.HALF, 0), 2); TODO + //world.setBlockState(pos, blockState.withProperty(BlockDoor.HALF, BlockDoor.EnumDoorHalf.UPPER), 2); disabledPos.add(pos); return true; - } else if(block instanceof BlockBed){ + } else if(block instanceof BedBlock){ //world.setBlockState(blockPos, blockState.withProperty(BlockBed.PART, BlockBed.EnumPartType.FOOT), 11); return false; } @@ -106,30 +105,30 @@ public boolean add(IBlockState blockState, BlockPos blockPos, boolean doCheckSpe boolean blockAdded = DropFuncBlock.setBlock(this.world, blockState, blockPos, false, isLive); //this.updatePos.add(blockPos); //this.updateState.add(blockState); - this.world.markAndNotifyBlock(blockPos, this.world.getChunkFromBlockCoords(blockPos), this.world.getBlockState(blockPos), blockState, 3); + this.world.markAndNotifyBlock(blockPos, (Chunk) this.world.getChunk(blockPos), this.world.getBlockState(blockPos), blockState, 3); return blockAdded; } private boolean isSpecialBlock(Block block) { - return (block instanceof BlockBanner || - block instanceof BlockBasePressurePlate || - block instanceof BlockBed || - block instanceof BlockBrewingStand || - block instanceof BlockButton || - block instanceof BlockCactus || - block instanceof BlockCake || - block instanceof BlockDoor || - block instanceof BlockFlowerPot || - block instanceof BlockLadder || - block instanceof BlockRailBase || - block instanceof BlockRedstoneComparator || - block instanceof BlockRedstoneTorch || - block instanceof BlockRedstoneWire || - block instanceof BlockSign || - block instanceof BlockBush || - block instanceof BlockTorch || - block instanceof BlockLever || - block instanceof BlockTripWireHook); + return (block instanceof BannerBlock || + block instanceof PressurePlateBlock || + block instanceof BedBlock || + block instanceof BrewingStandBlock || + block == Blocks.STONE_BUTTON || + block instanceof CactusBlock || + block instanceof CakeBlock || + block instanceof DoorBlock || + block instanceof FlowerPotBlock || + block instanceof LadderBlock || + block == Blocks.RAIL || + block == Blocks.COMPARATOR || + block instanceof RedstoneTorchBlock || + block instanceof RedstoneWireBlock || + block instanceof StandingSignBlock || + block instanceof BushBlock || + block instanceof TorchBlock || + block instanceof LeverBlock || + block instanceof TripWireHookBlock); } /*public void update() diff --git a/src/main/java/modid/imsm/structureloader/DropFuncBlock.java b/src/main/java/modid/imsm/structureloader/DropFuncBlock.java index 04ff0f67..4cae7ea5 100644 --- a/src/main/java/modid/imsm/structureloader/DropFuncBlock.java +++ b/src/main/java/modid/imsm/structureloader/DropFuncBlock.java @@ -1,42 +1,96 @@ package modid.imsm.structureloader; -import modid.imsm.core.IMSM; -import net.minecraft.block.BlockColored; -import net.minecraft.block.state.IBlockState; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.block.BlockState; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; +import net.minecraft.world.IWorld; import net.minecraft.world.World; -import net.minecraft.world.chunk.Chunk; -import net.minecraft.world.chunk.storage.ExtendedBlockStorage; public class DropFuncBlock { - public static boolean setBlock(World world, IBlockState state, BlockPos pos, boolean update, boolean isLive) + public static void setBlock(IWorld world, BlockState state, BlockPos pos, boolean update) { + setBlock(world, state, pos, null, update); + } + + public static void setBlock(IWorld world, BlockState state, BlockPos pos, + CompoundNBT tileEntity, boolean update) { + + if (world.getBlockState(pos) != state) + world.setBlockState(pos, state, 2); + + if (update && world instanceof World) + ((World) world).markAndNotifyBlock(pos, ((World) world).getChunkAt(pos), + world.getBlockState(pos), state, 3); + + if (tileEntity != null && state.getBlock().hasTileEntity(state)) { + setTileEntity(world, state, pos, tileEntity); + } + } + + public static void setTileEntity(IWorld world, BlockState state, + BlockPos pos, CompoundNBT tileEntityData) { + + TileEntity tileEntity = world.getTileEntity(pos); + if (tileEntity != null) { + tileEntity.handleUpdateTag(tileEntityData); + if (world instanceof World) + ((World) world).setTileEntity(pos, tileEntity); + } + + /* + if (tileEntityData != null && state.getBlock().hasTileEntity(state)) { + world.removeTileEntity(pos); + + TileEntity tileEntity = state.getBlock().createTileEntity(state, world); + + if (tileEntity == null) { + Lucky.error(null, "Invalid tile entity '" + tileEntityData + + "' for block '" + state); + return; + } + + tileEntity.read(tileEntityData); + world.setTileEntity(pos, tileEntity); + tileEntity.updateContainingBlockInfo(); + } + */ + } + + + + public static boolean setBlock(World world, BlockState state, BlockPos pos, boolean update, boolean isLive) { - setBlock(world, state, pos, null, update, isLive); + setBlock(world, state, pos, update, isLive); return true; } - private static boolean setBlock(World world, IBlockState state, BlockPos pos, NBTTagCompound tileEntity, boolean update, boolean isLive) + /*private static boolean setBlock(World world, BlockState state, BlockPos pos, NBTTagCompound tileEntity, boolean update, boolean isLive) { - try{ - Chunk chunk = world.getChunkFromBlockCoords(pos); - //Chunk chunkClient = Minecraft.getMinecraft().theWorld.getChunkFromBlockCoords(pos); - ExtendedBlockStorage storageArray = chunk.getBlockStorageArray()[pos.getY() >> 4]; + //try{ + Chunk chunk = world.getChunk(pos); + if (world.getBlockState(pos) != state) + world.setBlockState(pos, state, 2); + + if (update && world instanceof World) + ((World) world).markAndNotifyBlock(pos, ((World) world).getChunk(pos), + world.getBlockState(pos), state, 3); + + //Chunk chunkClient = Minecraft.getInstance().world.getChunkFromBlockCoords(pos); + //ExtendedBlockStorage storageArray = chunk.getBlockStorageArray()[pos.getY() >> 4]; //System.out.println(pos.getX()+", "+pos.getY()+", "+pos.getZ()); - if (storageArray == null) storageArray = chunk.getBlockStorageArray()[pos.getY() >> 4] = new ExtendedBlockStorage(pos.getY() >> 4 << 4, !world.provider.getHasNoSky()); + //if (storageArray == null) storageArray = chunk.getBlockStorageArray()[pos.getY() >> 4] = new ExtendedBlockStorage(pos.getY() >> 4 << 4, !world.provider.getHasNoSky()); - if (storageArray.get(pos.getX() & 15, pos.getY() & 15, pos.getZ() & 15).getBlock() != state.getBlock() || state.getBlock() instanceof BlockColored) - { - IBlockState oldState = world.getBlockState(pos); + //if (storageArray.get(pos.getX() & 15, pos.getY() & 15, pos.getZ() & 15).getBlock() != state.getBlock() || state.getBlock() instanceof BlockColored) + //{ + // IBlockState oldState = world.getBlockState(pos); //storageArray.set(pos.getX() & 15, pos.getY() & 15, pos.getZ() & 15, state); //chunkClient.getBlockStorageArray()[pos.getY() >> 4].set(pos.getX() & 15, pos.getY() & 15, pos.getZ() & 15, state); - storageArray.set(pos.getX() & 15, pos.getY() & 15, pos.getZ() & 15, state); + // storageArray.set(pos.getX() & 15, pos.getY() & 15, pos.getZ() & 15, state); //world.setBlockState(pos, state); //int timesFaster=1; - //if(!isLive || IMSM.eventHandler.lightUpdate.getProcessesSize()<200 /*&& pos.getX()%timesFaster==0 && pos.getY()%timesFaster==0 && pos.getZ()%timesFaster==0*/){ + //if(!isLive || IMSM.eventHandler.lightUpdate.getProcessesSize()<200 /*&& pos.getX()%timesFaster==0 && pos.getY()%timesFaster==0 && pos.getZ()%timesFaster==0*///){ //if(!isLive || IMSM.eventHandler.lightUpdate.getProcessesSize()<200){ //if(!world.isRemote){ //IMSM.eventHandler.lightUpdate.processes.add(pos); @@ -45,7 +99,7 @@ private static boolean setBlock(World world, IBlockState state, BlockPos pos, NB //world.checkLight(pos); //world.setLightFor(EnumSkyBlock.SKY, pos, 15); //world.setLightFor(EnumSkyBlock.BLOCK, pos, 15); - //System.out.println((Minecraft.getMinecraft().theWorld==world)+"=="+(Minecraft.getMinecraft().getIntegratedServer().worldServerForDimension(0)==world)); + //System.out.println((Minecraft.getInstance().world==world)+"=="+(Minecraft.getInstance().getIntegratedServer().worldServerForDimension(0)==world)); //} //world.notifyLightSet(pos); //world.checkLight(pos); @@ -53,7 +107,7 @@ private static boolean setBlock(World world, IBlockState state, BlockPos pos, NB //if(world.isRemote){ // IMSM.eventHandler.lightUpdate.addClientProcess(pos); //} else { - IMSM.eventHandler.lightUpdate.addServerProcess(pos); + // IMSM.eventHandler.lightUpdate.addServerProcess(pos); //IMSM.eventHandler.lightUpdate.addClientProcess(pos); //} /*if(world.isDaytime()){ @@ -67,42 +121,50 @@ private static boolean setBlock(World world, IBlockState state, BlockPos pos, NB } }*/ //world.setBlockState(pos, oldState) - chunk.setChunkModified(); + // chunk.setChunkModified(); //chunkClient.setChunkModified(); - world.markBlockRangeForRenderUpdate(pos,pos);//TODO: Stil a hack - //Minecraft.getMinecraft().theWorld.markBlockRangeForRenderUpdate(pos,pos);//TODO: Stil a hack + //world.markBlockRangeForRenderUpdate(pos,pos);//TODO: Stil a hack + //Minecraft.getInstance().world.markBlockRangeForRenderUpdate(pos,pos);//TODO: Stil a hack /*if(world.isRemote){ //world.checkLight(pos); world.setLightFor(EnumSkyBlock.SKY, pos, 15); world.setLightFor(EnumSkyBlock.BLOCK, pos, 15); }*/ //world.setLightFor(EnumSkyBlock.BLOCK, pos, 15); - /*if (update || state.getBlock()!=Blocks.air)*/ world.markAndNotifyBlock(pos, chunk, state, oldState, 3); - //Minecraft.getMinecraft().theWorld.markAndNotifyBlock(pos, chunk, state, oldState, 3); - } + /*if (update || state.getBlock()!=Blocks.air)*/ //world.markAndNotifyBlock(pos, chunk, state, oldState, 3); + //Minecraft.getInstance().world.markAndNotifyBlock(pos, chunk, state, oldState, 3); + //} - if (tileEntity != null && state.getBlock().hasTileEntity(state) && !isLive) + /*if (tileEntity != null && state.getBlock().hasTileEntity(state) && !isLive) { world.removeTileEntity(pos); BlockPos chunkPos = new BlockPos(pos.getX() & 15, pos.getY(), pos.getZ() & 15); TileEntity blockTileEntity = chunk.getTileEntity(chunkPos, Chunk.EnumCreateEntityType.CHECK); - blockTileEntity = state.getBlock().createTileEntity(world, state); - blockTileEntity.readFromNBT(tileEntity); + blockTileEntity = state.getBlock().createTileEntity(state, world); + blockTileEntity.read(tileEntity); world.setTileEntity(pos, blockTileEntity); blockTileEntity.updateContainingBlockInfo(); } - } catch (Exception e){ - return false; - } + //} catch (Exception e){ + // return false; + //} return true; - } + }*/ - public static synchronized void setTileEntity(World world, IBlockState state, BlockPos pos, NBTTagCompound tileEntity) + /*public static synchronized void setTileEntity(World world, BlockState state, BlockPos pos, NBTTagCompound nbt) { - if (tileEntity != null && state.getBlock().hasTileEntity(state)) + TileEntity tileEntity = world.getTileEntity(pos); + if (tileEntity != null) { + tileEntity.handleUpdateTag(nbt); + if (world instanceof World) + ((World) world).setTileEntity(pos, tileEntity); + } else { + System.out.println("Error setting tile entity for block: " + state); + } + /*if (tileEntity != null && state.getBlock().hasTileEntity(state)) { - Chunk chunk = world.getChunkFromBlockCoords(pos); + Chunk chunk = world.getChunk(pos); ExtendedBlockStorage storageArray = chunk.getBlockStorageArray()[pos.getY() >> 4]; if (storageArray == null) storageArray = chunk.getBlockStorageArray()[pos.getY() >> 4] = new ExtendedBlockStorage(pos.getY() >> 4 << 4, !world.provider.getHasNoSky()); @@ -110,10 +172,10 @@ public static synchronized void setTileEntity(World world, IBlockState state, Bl BlockPos chunkPos = new BlockPos(pos.getX() & 15, pos.getY(), pos.getZ() & 15); TileEntity blockTileEntity = chunk.getTileEntity(chunkPos, Chunk.EnumCreateEntityType.CHECK); - blockTileEntity = state.getBlock().createTileEntity(world, state); - blockTileEntity.readFromNBT(tileEntity); + blockTileEntity = state.getBlock().createTileEntity(state, world); + blockTileEntity.read(tileEntity); world.setTileEntity(pos, blockTileEntity); blockTileEntity.updateContainingBlockInfo(); - } - } + }*/ + //} } diff --git a/src/main/java/modid/imsm/structureloader/LightUpdateCheck.java b/src/main/java/modid/imsm/structureloader/LightUpdateCheck.java index 6bdbcecc..e968a40e 100644 --- a/src/main/java/modid/imsm/structureloader/LightUpdateCheck.java +++ b/src/main/java/modid/imsm/structureloader/LightUpdateCheck.java @@ -3,14 +3,13 @@ import java.util.ArrayList; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.EnumSkyBlock; import net.minecraft.world.World; public class LightUpdateCheck { private World worldIn; private World serverWorld; - private ArrayList serverProcesses = new ArrayList(); - public ArrayList clientProcesses = new ArrayList(); + private ArrayList serverProcesses = new ArrayList<>(); + public ArrayList clientProcesses = new ArrayList<>(); public LightUpdateCheck(World worldIn, World serverWorld){ @@ -29,7 +28,7 @@ public void addServerProcess(BlockPos pos){ public void runClient() { for(int i = clientProcesses.size()-1; i>=0; i--){ if(clientProcesses.get(i)!=null){ - worldIn.checkLightFor(EnumSkyBlock.SKY, clientProcesses.get(i)); + //worldIn.checkLightFor(EnumLightType.SKY, clientProcesses.get(i)); } clientProcesses.remove(i); } @@ -37,7 +36,7 @@ public void runClient() { public void runServer() { for(int i = serverProcesses.size()-1; i>=0; i--){ if(serverProcesses.get(i)!=null){ - serverWorld.checkLightFor(EnumSkyBlock.SKY, serverProcesses.get(i)); + //serverWorld.checkLightFor(EnumLightType.SKY, serverProcesses.get(i)); } serverProcesses.remove(i); } diff --git a/src/main/java/modid/imsm/structureloader/SchematicStructure.java b/src/main/java/modid/imsm/structureloader/SchematicStructure.java index 2836c1cb..34e12672 100644 --- a/src/main/java/modid/imsm/structureloader/SchematicStructure.java +++ b/src/main/java/modid/imsm/structureloader/SchematicStructure.java @@ -8,22 +8,25 @@ import modid.imsm.userstructures.OutlineCreator; import modid.imsm.worldgeneration.UndoCommand; import net.minecraft.block.Block; -import net.minecraft.block.BlockChest; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.client.Minecraft; -import net.minecraft.entity.EntityList; -import net.minecraft.init.Blocks; +import net.minecraft.entity.EntityType; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.nbt.CompressedStreamTools; -import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.nbt.NBTTagList; +import net.minecraft.nbt.ListNBT; +import net.minecraft.tileentity.ChestTileEntity; +import net.minecraft.tileentity.SignTileEntity; import net.minecraft.tileentity.TileEntity; -import net.minecraft.tileentity.TileEntityChest; -import net.minecraft.tileentity.TileEntitySign; +import net.minecraft.util.ResourceLocation; +import net.minecraft.util.datafix.fixes.ItemIntIDToString; +import net.minecraft.util.datafix.fixes.ItemStackDataFlattening; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Vec3d; import net.minecraft.world.World; +import net.minecraftforge.registries.ForgeRegistries; public class SchematicStructure extends Structure { @@ -53,8 +56,8 @@ private void wipeUndo(){ private Block[][][] blocks; private int[][][] blockData; - private NBTTagCompound[] entities; - private NBTTagCompound[] tileEntities; + private CompoundNBT[] entities; + private CompoundNBT[] tileEntities; private int blocksAdded; World world; int posX, posY, posZ; BlockPlacer blockPlacer; @@ -65,12 +68,12 @@ private void wipeUndo(){ public void process(World world, int posX, int posY, int posZ) { this.world=world;this.posX=posX;this.posY=posY;this.posZ=posZ; - //Minecraft.getMinecraft().thePlayer.sendChatMessage("Please be patient, I'm just creating "+(height*width*length)+" blocks for the structure..."); + //Minecraft.getInstance().player.sendChatMessage("Please be patient, I'm just creating "+(height*width*length)+" blocks for the structure..."); Block blk = Blocks.AIR; // Make a position. BlockPos pos0 = new BlockPos(posX,posY,posZ); // Get the default state(basically metadata 0) - IBlockState state0=blk.getDefaultState(); + BlockState state0=blk.getDefaultState(); // set the block world.setBlockState(pos0, state0); blocksAdded=0; @@ -92,7 +95,7 @@ public void process(World world, int posX, int posY, int posZ) //System.out.println("DATA=="+this.blocks[y][z][x]+blockPlacer+this.getCenterPos()+harvestPos); if (this.blockMode.equals("overlay") && this.blocks[y][z][x] == Blocks.AIR) continue; //StructureUtils.setBlock(blockPlacer2, this.blocks[y][z][x].getStateFromMeta(this.blockData[y][z][x]), new BlockPos(x, y, z), this.getCenterPos(), harvestPos); - StructureUtils.setBlock(blockPlacer, this.blocks[y][z][x].getStateFromMeta(this.blockData[y][z][x]), new BlockPos(x, y, z), this.getCenterPos(), harvestPos); + StructureUtils.setBlock(blockPlacer, this.blocks[y][z][x].getStateById(this.blockData[y][z][x]), new BlockPos(x, y, z), this.getCenterPos(), harvestPos); } //BlockPlaceHandler.setBlock(serverWorld, new BlockPos(this.posX+x, this.posY+y,this.posZ-z), this.blocks[y][z][x].getStateFromMeta(this.blockData[y][z][x])); //BlockPlaceHandler.setBlock(world, new BlockPos(this.posX+x, this.posY+y,this.posZ-z), this.blocks[y][z][x].getStateFromMeta(this.blockData[y][z][x]));} @@ -102,13 +105,13 @@ public void process(World world, int posX, int posY, int posZ) public void initSingleBlockPlacer(World world, int posX, int posY, int posZ){ this.world=world;this.posX=posX;this.posY=posY;this.posZ=posZ; - //Minecraft.getMinecraft().thePlayer.sendChatMessage("Please be patient, I'm just creating "+(height*width*length)+" blocks for the structure..."); + //Minecraft.getInstance().player.sendChatMessage("Please be patient, I'm just creating "+(height*width*length)+" blocks for the structure..."); Block blk = Blocks.AIR; // Make a position. BlockPos pos0 = new BlockPos(this.posX,this.posY,this.posZ); // Get the default state(basically metadata 0) - IBlockState state0=blk.getDefaultState(); + BlockState state0=blk.getDefaultState(); // set the block this.world.setBlockState(pos0, state0); @@ -138,14 +141,14 @@ public boolean placeBlock(StructureCreator daddy) BlockPos position = new BlockPos(daddy.k, daddy.i,daddy.j); if(IMSM.eventHandler.serverCreators.get(IMSM.eventHandler.serverCreators.size()-1) == daddy){ BlockPos translatedPosition = StructureUtils.getWorldPos(position, this.getCenterPos(), harvestPos); - UndoCommand.removedStates.add(Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().getBlockState(translatedPosition)); + UndoCommand.removedStates.add(Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).getBlockState(translatedPosition)); UndoCommand.removedPositions.add(translatedPosition); } //System.out.prinln(daddy.i+", "+daddy.j+", "+daddy.k+", "+height+", "+width+", "+length); - StructureUtils.setBlock(this.blockPlacer, this.blocks[daddy.i][daddy.j][daddy.k].getStateFromMeta(this.blockData[daddy.i][daddy.j][daddy.k]), position, this.getCenterPos(), this.harvestPos); + StructureUtils.setBlock(this.blockPlacer, this.blocks[daddy.i][daddy.j][daddy.k].getStateById(this.blockData[daddy.i][daddy.j][daddy.k]), position, this.getCenterPos(), this.harvestPos); //BlockPlaceHandler.setBlock(serverWorld, new BlockPos(daddy.x-daddy.k, daddy.y+daddy.i,daddy.z-daddy.j), this.blocks[daddy.i][daddy.j][daddy.k].getStateFromMeta(this.blockData[daddy.i][daddy.j][daddy.k])); //BlockPlaceHandler.setBlock(world, new BlockPos(daddy.x-daddy.k, daddy.y+daddy.i,daddy.z-daddy.j), this.blocks[daddy.i][daddy.j][daddy.k].getStateFromMeta(this.blockData[daddy.i][daddy.j][daddy.k])); - if(this.blocks[daddy.i][daddy.j][daddy.k] instanceof BlockChest){ + if(this.blocks[daddy.i][daddy.j][daddy.k] == Blocks.CHEST){ System.out.println("Chest at "+StructureUtils.getWorldPos(position, this.getCenterPos(), this.harvestPos).toString()); } } @@ -168,76 +171,75 @@ public boolean placeBlock(StructureCreator daddy) public void postProcess(){ //System.out.println("Structure Postprocessed!"); try{ - for (NBTTagCompound tileEntity : this.tileEntities){ + for (CompoundNBT tileEntity : this.tileEntities){ TileEntity tE; //System.out.println(tileEntity.getString("id")); if(tileEntity.getString("id").equals("Sign")){ - TileEntitySign signEntity = new TileEntitySign(); + SignTileEntity signEntity = new SignTileEntity(); for(int i = 0; ie), this.getCenterPos(), harvestPos); - for (NBTTagCompound tileEntity : this.tileEntities){ + for (CompoundNBT tileEntity : this.tileEntities){ TileEntity tE; if(tileEntity.getString("id").equals("Sign")){ - TileEntitySign signEntity = new TileEntitySign(); + SignTileEntity signEntity = new SignTileEntity(); for(int i = 0; ie), this.getCenterPos(), harvestPos); blockPlacer.processSpecialBlocks(); - world.markBlockRangeForRenderUpdate(new BlockPos(posX,posY,posZ),new BlockPos(posX+length, posY+height, posZ+width)); + //world.markBlockRangeForRenderUpdate(new BlockPos(posX,posY,posZ),new BlockPos(posX+length, posY+height, posZ+width)); /*if (this.blockUpdate){ @@ -248,7 +250,7 @@ public void postProcess(){ e.printStackTrace(); } - //Minecraft.getMinecraft().thePlayer.sendChatMessage("I just created "+blocksAdded+" out of "+(height*width*length)+" blocks in this structure!"); + //Minecraft.getInstance().player.sendChatMessage("I just created "+blocksAdded+" out of "+(height*width*length)+" blocks in this structure!"); } public void showOutline(int x, int modifierx, int y,int modifiery, int z, int modifierz, OutlineCreator creator){ @@ -262,7 +264,7 @@ public void showOutline(int x, int modifierx, int y,int modifiery, int z, int mo if(IMSM.eventHandler.serverCreators.get(IMSM.eventHandler.serverCreators.size()-1) == creator){ - UndoCommand.removedStates.add(Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().getBlockState(pos0)); + UndoCommand.removedStates.add(Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).getBlockState(pos0)); UndoCommand.removedPositions.add(pos0); } @@ -270,13 +272,13 @@ public void showOutline(int x, int modifierx, int y,int modifiery, int z, int mo // Make a position. - DropFuncBlock.setBlock(Minecraft.getMinecraft().getIntegratedServer().getEntityWorld(), blk.getDefaultState(), pos0, true, true); + DropFuncBlock.setBlock(Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension), blk.getDefaultState(), pos0, true, true); // Get the default state(basically metadata 0) - //IBlockState state0=blk.getDefaultState(); + //BlockState state0=blk.getDefaultState(); // set the block - //Minecraft.getMinecraft().theWorld.setBlockState(pos0, state0); - //Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().setBlockState(pos0, state0); + //Minecraft.getInstance().world.setBlockState(pos0, state0); + //Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).setBlockState(pos0, state0); //worldIn.spawnEntityInWorld(new EntitySnowball(worldIn, x+i,y+j,z+k)); }}} } @@ -292,16 +294,16 @@ public void removeOutline(int x, int modifierx, int y,int modifiery, int z, int for(int i=0; i STRUCTURE_BLOCK_LIMIT) @@ -341,13 +343,22 @@ public void readFromFile() this.blocks = new Block[this.height][this.width][this.length]; this.blockData = new int[this.height][this.width][this.length]; - byte[] blockIdsByte = nbtTagCompound.getByteArray("Blocks"); - byte[] blockDataByte = nbtTagCompound.getByteArray("Data"); + byte[] blockIdsByte = CompoundNBT.getByteArray("Blocks"); + byte[] blockDataByte = CompoundNBT.getByteArray("Data"); int x = 1, y = 1, z = 1; for (int i = 0; i < blockIdsByte.length; i++) { int blockId = (short) (blockIdsByte[i] & 0xFF); - this.blocks[y - 1][z - 1][x - 1] = Block.getBlockById(blockId); + byte blockData = blockDataByte[i]; + + String legacyName = ItemIntIDToString.getItem(blockId); + String name = ItemStackDataFlattening.updateItem(legacyName, blockData); + if (legacyName.equals("minecraft:air") && blockId > 0) name = "minecraft:stone"; + if (name == null) name = legacyName; + + Block block = ForgeRegistries.BLOCKS.getValue(new ResourceLocation(name)); + + this.blocks[y - 1][z - 1][x - 1] = block; this.blockData[y - 1][z - 1][x - 1] = blockDataByte[i]; x++; if (x > this.length) @@ -362,15 +373,15 @@ public void readFromFile() } } - NBTTagList entityList = nbtTagCompound.getTagList("Entities", 10); - this.entities = new NBTTagCompound[entityList.tagCount()]; - for (int i = 0; i < entityList.tagCount(); i++) - this.entities[i] = entityList.getCompoundTagAt(i); + ListNBT entityList = CompoundNBT.getList("Entities", 10); + this.entities = new CompoundNBT[entityList.size()]; + for (int i = 0; i < entityList.size(); i++) + this.entities[i] = entityList.getCompound(i); - NBTTagList tileEntityList = nbtTagCompound.getTagList("TileEntities", 10); - this.tileEntities = new NBTTagCompound[tileEntityList.tagCount()]; - for (int i = 0; i < tileEntityList.tagCount(); i++) - this.tileEntities[i] = tileEntityList.getCompoundTagAt(i); + ListNBT tileEntityList = CompoundNBT.getList("TileEntities", 10); + this.tileEntities = new CompoundNBT[tileEntityList.size()]; + for (int i = 0; i < tileEntityList.size(); i++) + this.tileEntities[i] = tileEntityList.getCompound(i); this.initCenterPos(); } diff --git a/src/main/java/modid/imsm/structureloader/StructureUtils.java b/src/main/java/modid/imsm/structureloader/StructureUtils.java index ba1dfe81..347cbf7d 100644 --- a/src/main/java/modid/imsm/structureloader/StructureUtils.java +++ b/src/main/java/modid/imsm/structureloader/StructureUtils.java @@ -1,13 +1,12 @@ package modid.imsm.structureloader; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; import net.minecraft.entity.Entity; -import net.minecraft.nbt.NBTTagCompound; +import net.minecraft.nbt.CompoundNBT; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Vec3d; import net.minecraft.world.World; -import net.minecraft.world.chunk.Chunk; public class StructureUtils { @@ -26,24 +25,23 @@ public static Vec3d getWorldPos(Vec3d structPos, Vec3d structCenter, Vec3d harve return harvestPos.add(structPos).subtract(structCenter); } - public static boolean setBlock(BlockPlacer blockPlacer, IBlockState blockState, BlockPos structPos, Vec3d structCenter, Vec3d harvestPos) + public static boolean setBlock(BlockPlacer blockPlacer, BlockState blockState, BlockPos structPos, Vec3d structCenter, Vec3d harvestPos) { return blockPlacer.add(blockState, StructureUtils.getWorldPos(structPos, structCenter, harvestPos)); } - public static void setTileEntity(World world, NBTTagCompound tileEntity, BlockPos structPos, Vec3d structCenter, Vec3d harvestPos) + public static void setTileEntity(World world, CompoundNBT tileEntity, BlockPos structPos, Vec3d structCenter, Vec3d harvestPos) { BlockPos pos = getWorldPos(structPos, structCenter, harvestPos); - IBlockState blockState = world.getBlockState(pos); + BlockState blockState = world.getBlockState(pos); world.removeTileEntity(pos); BlockPos chunkPos = new BlockPos(pos.getX() & 15, pos.getY(), pos.getZ() & 15); - TileEntity blockTileEntity = world.getChunkFromBlockCoords(pos).getTileEntity(chunkPos, Chunk.EnumCreateEntityType.CHECK); + TileEntity blockTileEntity = world.getChunk(pos).getTileEntity(chunkPos); - blockTileEntity = blockState.getBlock().createTileEntity(world, blockState); - blockTileEntity.readFromNBT(tileEntity); - blockTileEntity.setPos(pos); - blockTileEntity.setWorldObj(world); + blockTileEntity = blockState.getBlock().createTileEntity(blockState, world); + blockTileEntity.read(tileEntity); + blockTileEntity.setWorldAndPos(world, pos); world.setTileEntity(pos, blockTileEntity); blockTileEntity.updateContainingBlockInfo(); @@ -54,8 +52,7 @@ public static void setTileEntity(World world, TileEntity tileEntity, Vec3d struc try{ BlockPos pos = getWorldPos(tileEntity.getPos(), structCenter, harvestPos); world.removeTileEntity(pos); - tileEntity.setPos(pos); - tileEntity.setWorldObj(world); + tileEntity.setWorldAndPos(world, pos); world.setTileEntity(pos, tileEntity); } catch (ArrayIndexOutOfBoundsException e){ } @@ -64,7 +61,7 @@ public static void setTileEntity(World world, TileEntity tileEntity, Vec3d struc public static void setEntity(World world, Entity entity, Vec3d structCenter, Vec3d harvestPos) { Vec3d pos = getWorldPos(entity.getPositionVector(), structCenter, harvestPos); - entity.setPosition(pos.xCoord, pos.yCoord, pos.zCoord); - world.spawnEntityInWorld(entity); + entity.setPosition(pos.x, pos.y, pos.z); + world.addEntity(entity); } } diff --git a/src/main/java/modid/imsm/structures/RemoverLast.java b/src/main/java/modid/imsm/structures/RemoverLast.java index 7e6370b3..cf747fca 100644 --- a/src/main/java/modid/imsm/structures/RemoverLast.java +++ b/src/main/java/modid/imsm/structures/RemoverLast.java @@ -4,12 +4,16 @@ package modid.imsm.structures; +import javax.annotation.Nullable; + import modid.imsm.worldgeneration.UndoCommand; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.EntityLivingBase; -import net.minecraft.util.EnumFacing; +import net.minecraft.entity.LivingEntity; +import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; +import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; @@ -18,16 +22,18 @@ public class RemoverLast extends Block { public RemoverLast(int i) { - super(Material.ROCK); + super(Block.Properties.create(Material.ROCK)); //remove(IMSM.lastPlaced); } + public Block setCreativeTab(ItemGroup g) { + //Item.BLOCK_TO_ITEM.get(this).getCreativeTabs().add(g); + return this; + } + @Override - public IBlockState onBlockPlaced(World worldIn, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer) - { - + public void onBlockPlacedBy(World worldIn, BlockPos pos, BlockState state, @Nullable LivingEntity placer, ItemStack stack) { UndoCommand.runCommand(); - return this.getStateFromMeta(meta); } @@ -44,15 +50,15 @@ public IBlockState onBlockPlaced(World worldIn, BlockPos pos, EnumFacing facing, // Get the default state(basically metadata 0) IBlockState state0=blk.getDefaultState(); // set the block - Minecraft.getMinecraft().theWorld.setBlockState(pos0, state0); - Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().setBlockState(pos0, state0); + Minecraft.getInstance().world.setBlockState(pos0, state0); + Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).setBlockState(pos0, state0); } } } - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("The last placed structure has been removed.")); + Minecraft.getInstance().player.sendChatMessage("The last placed structure has been removed.")); IMSM.lastPlaced=null; }else { - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("You didn't place a structure to undo.")); + Minecraft.getInstance().player.sendChatMessage("You didn't place a structure to undo.")); } }*/ diff --git a/src/main/java/modid/imsm/userstructures/BlockRuntimeStructure.java b/src/main/java/modid/imsm/userstructures/BlockRuntimeStructure.java deleted file mode 100644 index cb4869b3..00000000 --- a/src/main/java/modid/imsm/userstructures/BlockRuntimeStructure.java +++ /dev/null @@ -1,78 +0,0 @@ -package modid.imsm.userstructures; - -import java.util.List; - -import net.minecraft.block.material.MapColor; -import net.minecraft.block.material.Material; -import net.minecraft.block.properties.IProperty; -import net.minecraft.block.properties.PropertyEnum; -import net.minecraft.block.state.BlockStateContainer; -import net.minecraft.block.state.IBlockState; -import net.minecraft.creativetab.CreativeTabs; -import net.minecraft.item.EnumDyeColor; -import net.minecraft.item.Item; -import net.minecraft.item.ItemStack; -import net.minecraftforge.fml.relauncher.Side; -import net.minecraftforge.fml.relauncher.SideOnly; - -public class BlockRuntimeStructure extends BlockUserStructure { - - public BlockRuntimeStructure(String name) { - super(name); - this.setDefaultState(this.blockState.getBaseState().withProperty(COLOR, EnumDyeColor.WHITE)); - this.setCreativeTab(CreativeTabs.BUILDING_BLOCKS); - } - - public static final PropertyEnum COLOR = PropertyEnum.create("color", EnumDyeColor.class); - - /** - * Gets the metadata of the item this Block can drop. This method is called when the block gets destroyed. It - * returns the metadata of the dropped item based on the old metadata of the block. - */ - public int damageDropped(IBlockState state) - { - return ((EnumDyeColor)state.getValue(COLOR)).getMetadata(); - } - - /** - * returns a list of blocks with the same ID, but different meta (eg: wood returns 4 blocks) - */ - @SideOnly(Side.CLIENT) - public void getSubBlocks(Item itemIn, CreativeTabs tab, List list) - { - for (EnumDyeColor enumdyecolor : EnumDyeColor.values()) - { - list.add(new ItemStack(itemIn, 1, enumdyecolor.getMetadata())); - } - } - - /** - * Get the MapColor for this Block and the given BlockState - */ - public MapColor getMapColor(IBlockState state) - { - return ((EnumDyeColor)state.getValue(COLOR)).getMapColor(); - } - - /** - * Convert the given metadata into a BlockState for this Block - */ - public IBlockState getStateFromMeta(int meta) - { - return this.getDefaultState().withProperty(COLOR, EnumDyeColor.byMetadata(meta)); - } - - /** - * Convert the BlockState into the correct metadata value - */ - public int getMetaFromState(IBlockState state) - { - return ((EnumDyeColor)state.getValue(COLOR)).getMetadata(); - } - - protected BlockStateContainer createBlockState() - { - return new BlockStateContainer(this, new IProperty[] {COLOR}); - } - -} diff --git a/src/main/java/modid/imsm/userstructures/BlockUnlimited.java b/src/main/java/modid/imsm/userstructures/BlockUnlimited.java index 90b2a53b..57b89f1e 100644 --- a/src/main/java/modid/imsm/userstructures/BlockUnlimited.java +++ b/src/main/java/modid/imsm/userstructures/BlockUnlimited.java @@ -3,26 +3,34 @@ import modid.imsm.core.ForgeEventHandler; import modid.imsm.core.IMSM; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.BlockRayTraceResult; import net.minecraft.util.text.TextFormatting; +import net.minecraft.util.ActionResultType; import net.minecraft.world.World; public class BlockUnlimited extends Block { public BlockUnlimited(int i) { - super(Material.ROCK); + super(Block.Properties.create(Material.ROCK)); } + public Block setCreativeTab(ItemGroup g) { + //Item.BLOCK_TO_ITEM.get(this).getCreativeTabs().add(g); + return this; + } + @Override - public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) - { + public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) { + if(!worldIn.isRemote){ if(IMSM.pmcParser != null && IMSM.pmcParser.isAlive()){ IMSM.pmcParser.stopThread(); @@ -42,7 +50,7 @@ public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, IMSM.dialoge = 11; ForgeEventHandler.searchingPage=1; } - worldIn.setBlockToAir(pos); - return true; + worldIn.setBlockState(pos, Blocks.AIR.getDefaultState()); + return ActionResultType.SUCCESS; } } diff --git a/src/main/java/modid/imsm/userstructures/BlockUserStructure.java b/src/main/java/modid/imsm/userstructures/BlockUserStructure.java index 3f2f6882..0add2fec 100644 --- a/src/main/java/modid/imsm/userstructures/BlockUserStructure.java +++ b/src/main/java/modid/imsm/userstructures/BlockUserStructure.java @@ -5,20 +5,18 @@ import modid.imsm.core.StructureCreatorServer; import modid.imsm.structureloader.SchematicStructure; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.init.Blocks; -import net.minecraft.item.ItemBook; -import net.minecraft.item.ItemFireball; -import net.minecraft.item.ItemRedstone; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; +import net.minecraft.item.Items; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; -import net.minecraft.world.Explosion; +import net.minecraft.util.math.BlockRayTraceResult; +import net.minecraft.util.ActionResultType; import net.minecraft.world.World; public class BlockUserStructure extends Block { @@ -30,34 +28,40 @@ public class BlockUserStructure extends Block { private int modifierz=0; public BlockUserStructure(String name){ - super(Material.ROCK); + super(Block.Properties.create(Material.ROCK)); this.name=name; } + public Block setCreativeTab(ItemGroup g) { + //Item.BLOCK_TO_ITEM.get(this).getCreativeTabs().add(g); + return this; + } + @Override - public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) - { + public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) { + + if(worldIn.isRemote){ - return true; + return ActionResultType.SUCCESS; } - if(playerIn.getHeldItemMainhand()!=null && playerIn.getHeldItemMainhand().getItem() instanceof ItemRedstone){ + if(player.getHeldItemMainhand()!=null && player.getHeldItemMainhand().getItem() == Items.REDSTONE){ IMSM.eventHandler.serverCreators.add(new OutlineCreator(name,pos,modifierx,modifiery,modifierz)); hasOutline=true; - } else if(playerIn.getHeldItemMainhand()!=null && playerIn.getHeldItemMainhand().getItem() instanceof ItemBook) { + } else if(player.getHeldItemMainhand()!=null && player.getHeldItemMainhand().getItem() == Items.BOOK) { doReplaceAir=!doReplaceAir; if(doReplaceAir){ - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("I will replace all existing blocks in the part I'm gonna spawn in with air now")); + Minecraft.getInstance().player.sendChatMessage("I will replace all existing blocks in the part I'm gonna spawn in with air now"); } else { - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("I won't replace any existing blocks with air")); + Minecraft.getInstance().player.sendChatMessage("I won't replace any existing blocks with air"); } } /*else if(playerIn.getCurrentEquippedItem()!=null && playerIn.getCurrentEquippedItem().getItem() instanceof ItemAppleGold) { if(worldIn.isRemote){ if(IMSM.spawnSpeed<10){ IMSM.spawnSpeed++; - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("The speed in which structures will be created has been increased to "+IMSM.spawnSpeed+" (default is 4)."); + Minecraft.getInstance().player.sendChatMessage("The speed in which structures will be created has been increased to "+IMSM.spawnSpeed+" (default is 4)."); }} - }*/ else if(playerIn.getHeldItemMainhand()!=null && playerIn.getHeldItemMainhand().getItem() instanceof ItemFireball) { + }*/ else if(player.getHeldItemMainhand()!=null && player.getHeldItemMainhand().getItem() == Items.FIRE_CHARGE) { remove(new StructureCreatorServer(name, pos.getX()+modifierx, pos.getY()+modifiery, pos.getZ()+modifierz, doReplaceAir,getSize(IMSM.eventHandler.creators.size()))); } else { /*if(hasOutline){ @@ -68,10 +72,10 @@ public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, }*/ BlockPos newPos = new BlockPos(pos.getX(), pos.getY(), pos.getZ()); IMSM.eventHandler.creators.add(new StructureCreatorUser(name, pos.getX()+modifierx, pos.getY()+modifiery, pos.getZ()+modifierz, doReplaceAir,getSize(IMSM.eventHandler.creators.size()))); - worldIn.setBlockToAir(newPos); + worldIn.setBlockState(newPos, Blocks.AIR.getDefaultState()); } - return true; + return ActionResultType.SUCCESS; } void remove(StructureCreator structure){ @@ -85,17 +89,17 @@ void remove(StructureCreator structure){ // Make a position. BlockPos pos0 = new BlockPos(structure.x-x, structure.y+y ,structure.z-z); // Get the default state(basically metadata 0) - IBlockState state0=blk.getDefaultState(); + BlockState state0=blk.getDefaultState(); // set the block - Minecraft.getMinecraft().theWorld.setBlockState(pos0, state0); - Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().setBlockState(pos0, state0); + Minecraft.getInstance().world.setBlockState(pos0, state0); + Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).setBlockState(pos0, state0); } } } - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("The last placed structure has been removed.")); + Minecraft.getInstance().player.sendChatMessage("The last placed structure has been removed."); //IMSM.lastPlaced=null; }else { - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("You didn't place a structure to undo.")); + Minecraft.getInstance().player.sendChatMessage("You didn't place a structure to undo."); } } @@ -106,9 +110,9 @@ public String getName() } @Override - public void onBlockDestroyedByPlayer(World worldIn, BlockPos pos, IBlockState state) { + public void onBlockHarvested(World worldIn, BlockPos pos, BlockState state, PlayerEntity player) { if(hasOutline && !worldIn.isRemote){ - if(Minecraft.getMinecraft().theWorld!=null){ + if(Minecraft.getInstance().world!=null){ SchematicStructure struct = new SchematicStructure(name+".structure"); struct.readFromFile(); //for(int i = 0; i> 4]; if (storageArray == null) storageArray = chunk.getBlockStorageArray()[pos.getY() >> 4] = new ExtendedBlockStorage(pos.getY() >> 4 << 4, !worldIn[k].provider.getHasNoSky()); @@ -110,6 +107,7 @@ public void createBlock(BlockPos pos, IBlockState state){ worldIn[k].checkLightFor(EnumSkyBlock.SKY, pos); } catch (Exception e){ - } + }*/ + worldIn[k].setBlockState(pos, state); } } diff --git a/src/main/java/modid/imsm/worldgeneration/BlockAtlantis.java b/src/main/java/modid/imsm/worldgeneration/BlockAtlantis.java index 835f816b..96e94bde 100644 --- a/src/main/java/modid/imsm/worldgeneration/BlockAtlantis.java +++ b/src/main/java/modid/imsm/worldgeneration/BlockAtlantis.java @@ -1,14 +1,19 @@ package modid.imsm.worldgeneration; +import com.google.common.collect.ImmutableMap; + import modid.imsm.core.IMSM; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemRedstone; -import net.minecraft.util.EnumFacing; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.Items; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.BlockRayTraceResult; +import net.minecraft.util.ActionResultType; import net.minecraft.world.World; public class BlockAtlantis extends Block @@ -20,19 +25,18 @@ public class BlockAtlantis extends Block public BlockAtlantis(int i) { - super(Material.ROCK); + super(Block.Properties.create(Material.ROCK)); this.name="BlockAtlantis"; } - public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumFacing side, float hitX, float hitY, float hitZ) - { - if(playerIn.getHeldItemMainhand()!=null && playerIn.getHeldItemMainhand().getItem() instanceof ItemRedstone){ + public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) { + if(player.getHeldItemMainhand()!=null && player.getHeldItemMainhand().getItem() == Items.REDSTONE){ if(worldIn.isRemote){ nCheckers*=2; if(nCheckers>20000){ nCheckers=1; } - Minecraft.getMinecraft().thePlayer.sendChatMessage("This block will now edit "+nCheckers+" rows of landscape"); + Minecraft.getInstance().player.sendChatMessage("This block will now edit "+nCheckers+" rows of landscape"); } } else { @@ -43,10 +47,10 @@ public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, BlockPos newPos = new BlockPos(pos.getX(), pos.getY(), pos.getZ()); //AtlantisThread loadThread = new AtlantisThread(pos.getX(), pos.getY(), pos.getZ(), nCheckers, worldIn,serverWorld); IMSM.eventHandler.creators.add(new AtlantisCreator(pos.getX(), pos.getY(), pos.getZ(), nCheckers, worldIn,serverWorld)); - worldIn.setBlockToAir(newPos); + worldIn.setBlockState(newPos, new BlockState(Blocks.AIR, ImmutableMap.of())); } } - return true; + return ActionResultType.SUCCESS; } public String getName() diff --git a/src/main/java/modid/imsm/worldgeneration/BlockBigWorld.java b/src/main/java/modid/imsm/worldgeneration/BlockBigWorld.java index 120cf414..8a2c451c 100644 --- a/src/main/java/modid/imsm/worldgeneration/BlockBigWorld.java +++ b/src/main/java/modid/imsm/worldgeneration/BlockBigWorld.java @@ -1,18 +1,22 @@ package modid.imsm.worldgeneration; +import com.google.common.collect.ImmutableMap; + import modid.imsm.core.IMSM; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemDye; -import net.minecraft.item.ItemRedstone; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.DyeItem; +import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; +import net.minecraft.item.Items; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.util.math.BlockRayTraceResult; +import net.minecraft.util.ActionResultType; import net.minecraft.world.World; public class BlockBigWorld extends Block @@ -25,29 +29,33 @@ public class BlockBigWorld extends Block public BlockBigWorld(int i) { - super(Material.ROCK); + super(Block.Properties.create(Material.ROCK)); this.name="BlockBigWorld"; } + public Block setCreativeTab(ItemGroup g) { + //Item.BLOCK_TO_ITEM.get(this).getCreativeTabs().add(g); + return this; + } + @Override - public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) - { - if(playerIn.getHeldItemMainhand()!=null && playerIn.getHeldItemMainhand().getItem() instanceof ItemRedstone){ + public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) { + if(player.getHeldItemMainhand()!=null && player.getHeldItemMainhand().getItem() == Items.REDSTONE){ if(worldIn.isRemote){ nCheckers*=2; if(nCheckers>20000){ nCheckers=1; } - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("This block will now edit "+nCheckers+" rows of landscape")); + Minecraft.getInstance().player.sendChatMessage("This block will now edit "+nCheckers+" rows of landscape"); } - } else if(playerIn.getActiveItemStack()!=null && playerIn.getActiveItemStack().getItem() instanceof ItemDye){ + } else if(player.getActiveItemStack()!=null && player.getActiveItemStack().getItem() instanceof DyeItem){ if(worldIn.isRemote){ checkerSize++; if(checkerSize>64){ checkerSize=2; } - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("This block will now increase the blocksize by "+checkerSize+"")); + Minecraft.getInstance().player.sendChatMessage("This block will now increase the blocksize by "+checkerSize+""); } } else { @@ -58,10 +66,10 @@ public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, BlockPos newPos = new BlockPos(pos.getX(), pos.getY(), pos.getZ()); //AtlantisThread loadThread = new AtlantisThread(pos.getX(), pos.getY(), pos.getZ(), nCheckers, worldIn,serverWorld); IMSM.eventHandler.creators.add(new BigWorldCreator(pos.getX(), pos.getY(), pos.getZ(), nCheckers, worldIn,serverWorld, checkerSize)); - worldIn.setBlockToAir(newPos); + worldIn.setBlockState(newPos, new BlockState(Blocks.AIR, ImmutableMap.of())); } } - return true; + return ActionResultType.SUCCESS; } public String getName() diff --git a/src/main/java/modid/imsm/worldgeneration/BlockCheckerboard.java b/src/main/java/modid/imsm/worldgeneration/BlockCheckerboard.java index 1cca1ce4..d2b09c17 100644 --- a/src/main/java/modid/imsm/worldgeneration/BlockCheckerboard.java +++ b/src/main/java/modid/imsm/worldgeneration/BlockCheckerboard.java @@ -1,17 +1,21 @@ package modid.imsm.worldgeneration; +import com.google.common.collect.ImmutableMap; + import modid.imsm.core.IMSM; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemRedstone; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; +import net.minecraft.item.Items; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.util.math.BlockRayTraceResult; +import net.minecraft.util.ActionResultType; import net.minecraft.world.World; public class BlockCheckerboard extends Block @@ -22,20 +26,24 @@ public class BlockCheckerboard extends Block public BlockCheckerboard(int i) { - super(Material.ROCK); + super(Block.Properties.create(Material.ROCK)); this.name="BlockCheckerboard"; } + public Block setCreativeTab(ItemGroup g) { + //Item.BLOCK_TO_ITEM.get(this).getCreativeTabs().add(g); + return this; + } + @Override - public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) - { - if(playerIn.getHeldItemMainhand()!=null && playerIn.getHeldItemMainhand().getItem() instanceof ItemRedstone){ + public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) { + if(player.getHeldItemMainhand()!=null && player.getHeldItemMainhand().getItem() == Items.REDSTONE){ if(worldIn.isRemote){ nCheckers*=2; if(nCheckers>2000){ nCheckers=1; } - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("This block will now create "+nCheckers+" rows of checkers")); + Minecraft.getInstance().player.sendChatMessage("This block will now create "+nCheckers+" rows of checkers"); } } else { @@ -43,10 +51,10 @@ public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, //AtlantisThread loadThread = new AtlantisThread(pos.getX(), pos.getY(), pos.getZ(), nCheckers, worldIn,serverWorld); BlockPos newPos = new BlockPos(pos.getX(), pos.getY(), pos.getZ()); IMSM.eventHandler.serverCreators.add(new CheckerboardCreator(pos.getX(), pos.getY(), pos.getZ(), nCheckers)); - worldIn.setBlockToAir(newPos); + worldIn.setBlockState(newPos, new BlockState(Blocks.AIR, ImmutableMap.of())); } } - return true; + return ActionResultType.SUCCESS; } public String getName() diff --git a/src/main/java/modid/imsm/worldgeneration/BlockCloud.java b/src/main/java/modid/imsm/worldgeneration/BlockCloud.java index bdf0be7d..dee22862 100644 --- a/src/main/java/modid/imsm/worldgeneration/BlockCloud.java +++ b/src/main/java/modid/imsm/worldgeneration/BlockCloud.java @@ -1,17 +1,21 @@ package modid.imsm.worldgeneration; +import com.google.common.collect.ImmutableMap; + import modid.imsm.core.IMSM; import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.block.material.Material; -import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; -import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemRedstone; -import net.minecraft.item.ItemStack; -import net.minecraft.util.EnumFacing; -import net.minecraft.util.EnumHand; +import net.minecraft.entity.player.PlayerEntity; +import net.minecraft.item.Item; +import net.minecraft.item.ItemGroup; +import net.minecraft.item.Items; +import net.minecraft.util.Hand; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; +import net.minecraft.util.math.BlockRayTraceResult; +import net.minecraft.util.ActionResultType; import net.minecraft.world.World; public class BlockCloud extends Block @@ -23,20 +27,24 @@ public class BlockCloud extends Block public BlockCloud(int i) { - super(Material.ROCK); + super(Block.Properties.create(Material.ROCK)); this.name="BlockCloud"; } + public Block setCreativeTab(ItemGroup g) { + //Item.BLOCK_TO_ITEM.get(this).getCreativeTabs().add(g); + return this; + } + @Override - public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ) - { - if(playerIn.getHeldItemMainhand()!=null && playerIn.getHeldItemMainhand().getItem() instanceof ItemRedstone){ + public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) { + if(player.getHeldItemMainhand()!=null && player.getHeldItemMainhand().getItem() == Items.REDSTONE){ if(worldIn.isRemote){ nCheckers*=2; if(nCheckers>2000){ nCheckers=1; } - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("This block will now create "+nCheckers+" rows of checkers")); + Minecraft.getInstance().player.sendChatMessage("This block will now create "+nCheckers+" rows of checkers"); } } else { @@ -46,10 +54,10 @@ public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, //AtlantisThread loadThread = new AtlantisThread(pos.getX(), pos.getY(), pos.getZ(), nCheckers, worldIn,serverWorld); BlockPos newPos = new BlockPos(pos.getX(), pos.getY(), pos.getZ()); IMSM.eventHandler.creators.add(new CloudCreator(pos.getX(), pos.getY(), pos.getZ(), nCheckers, worldIn,serverWorld)); - worldIn.setBlockToAir(newPos); + worldIn.setBlockState(newPos, new BlockState(Blocks.AIR, ImmutableMap.of())); } } - return true; + return ActionResultType.SUCCESS; } public String getName() diff --git a/src/main/java/modid/imsm/worldgeneration/CheckerboardCreator.java b/src/main/java/modid/imsm/worldgeneration/CheckerboardCreator.java index 51a391e4..74591265 100644 --- a/src/main/java/modid/imsm/worldgeneration/CheckerboardCreator.java +++ b/src/main/java/modid/imsm/worldgeneration/CheckerboardCreator.java @@ -3,11 +3,10 @@ import modid.imsm.core.CreatorBlocks; import modid.imsm.core.ICreatorBlock; import net.minecraft.block.Block; -import net.minecraft.block.state.IBlockState; +import net.minecraft.block.BlockState; +import net.minecraft.block.Blocks; import net.minecraft.client.Minecraft; -import net.minecraft.init.Blocks; import net.minecraft.util.math.BlockPos; -import net.minecraft.world.EnumSkyBlock; public class CheckerboardCreator extends CreatorBlocks implements ICreatorBlock { int i,j,k; @@ -17,7 +16,7 @@ public class CheckerboardCreator extends CreatorBlocks implements ICreatorBlock boolean color; public CheckerboardCreator(int x, int y, int z, int nCheckers){ - this.world= Minecraft.getMinecraft().getIntegratedServer().getEntityWorld(); + this.world= Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension); this.x=x; this.y=y; this.z=z; @@ -75,9 +74,9 @@ private void createChecker() { for(int i = 0; i dispatcher) { + dispatcher.register(Commands.literal("undo").executes(LiveCommand::ride)); + } - @Override - public List getCommandAliases() - { - return this.aliases; - } + private static int ride(CommandContext context) { + runCommand(); + return 1; + } - @Override - public void execute(MinecraftServer server, ICommandSender sender, String[] args) + public static void runCommand() { int j = 0; for(int i = 0; i dispatcher) { + dispatcher.register(Commands.literal("undo").executes(MazeCommand::ride)); + } + + private static int ride(CommandContext context) { + runCommand(); + return 1; + } + + public static void runCommand() + { + Minecraft.getInstance().player.sendChatMessage("-- MAZE RUNNER - MAZE GENERATOR --"); + Minecraft.getInstance().player.sendChatMessage("Do you want the default settings {1} or want to setup the maze yourself {2}?"); + Minecraft.getInstance().player.sendChatMessage("Please type the number of your choice in the chat"); IMSM.dialoge=4; } -@Override - public List getTabCompletionOptions(MinecraftServer server, ICommandSender sender, String[] args, BlockPos pos) - { - return null; - } - - @Override - public boolean isUsernameIndex(String[] astring, int i) - { - return false; - } - -@Override -public boolean checkPermission(MinecraftServer server, ICommandSender sender) { - // TODO Auto-generated method stub - return true; -} - -@Override -public int compareTo(ICommand o) { - // TODO Auto-generated method stub - return 0; -} } diff --git a/src/main/java/modid/imsm/worldgeneration/MazeGenerator.java b/src/main/java/modid/imsm/worldgeneration/MazeGenerator.java index b2a1b324..aced09a9 100644 --- a/src/main/java/modid/imsm/worldgeneration/MazeGenerator.java +++ b/src/main/java/modid/imsm/worldgeneration/MazeGenerator.java @@ -7,19 +7,18 @@ import modid.imsm.core.StructureCreatorClient; import modid.imsm.structureloader.BlockPlaceHandler; import net.minecraft.block.Block; +import net.minecraft.block.Blocks; import net.minecraft.client.Minecraft; -import net.minecraft.init.Blocks; -import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; -import net.minecraft.scoreboard.IScoreCriteria; -import net.minecraft.scoreboard.IScoreCriteria.EnumRenderType; +import net.minecraft.item.Items; import net.minecraft.scoreboard.Score; +import net.minecraft.scoreboard.ScoreCriteria; +import net.minecraft.scoreboard.ScoreCriteria.RenderType; import net.minecraft.scoreboard.ScoreObjective; import net.minecraft.scoreboard.Scoreboard; -import net.minecraft.tileentity.TileEntityChest; +import net.minecraft.tileentity.ChestTileEntity; import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; import net.minecraft.world.World; public class MazeGenerator extends CreatorBlocks implements ICreatorBlock { @@ -49,7 +48,7 @@ public MazeGenerator(int x, int y, int z){ public void startGeneration(){ //System.out.println("Running Start Generation"); - //Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("A huge random maze will now be generated at your location!")); + //Minecraft.getInstance().player.sendChatMessage("A huge random maze will now be generated at your location!")); IMSM.eventHandler.delayedPrints.add("A huge random maze will now be generated at your location!"); maze.initCollisions(true); init(); @@ -65,7 +64,7 @@ void placeAt(int posX, int posY){ int xPos = x+(posX*blockSize)+((int)(Math.random()*(blockSize-1))); int zPos = z+(posY*blockSize)+((int)(Math.random()*(blockSize-1))); BlockPlaceHandler.placeBlock(Blocks.CHEST, xPos, y, zPos); - TileEntityChest chest = (TileEntityChest) Minecraft.getMinecraft().getIntegratedServer().getEntityWorld().getTileEntity(new BlockPos(xPos, y, zPos)); + ChestTileEntity chest = (ChestTileEntity) Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension).getTileEntity(new BlockPos(xPos, y, zPos)); if(chest!=null){ generateChestContents(chest); } @@ -104,7 +103,7 @@ private int getSize(int size) { } - private void generateChestContents(TileEntityChest chest) { + private void generateChestContents(ChestTileEntity chest) { // TODO Auto-generated method stub for(int i = 0; i<27; i++){ if(Math.random()<0.2){ @@ -153,17 +152,17 @@ private Item getRandomItem() { case 34: return Items.PORKCHOP; case 35: return Items.COOKED_PORKCHOP; case 36: return Items.GOLDEN_APPLE; - case 37: return Items.REEDS; + case 37: return Items.GREEN_BED; case 38: return Items.SADDLE; case 39: return Items.SNOWBALL; case 40: return Items.PAPER; case 41: return Items.COMPASS; case 42: return Items.FISHING_ROD; case 43: return Items.CLOCK; - case 44: return Items.FISH; - case 45: return Items.COOKED_FISH; - case 46: return Items.CAKE; - case 47: return Items.BED; + case 44: return Items.PUFFERFISH; + case 45: return Items.TROPICAL_FISH; + case 46: return Items.TROPICAL_FISH_SPAWN_EGG; + case 47: return Items.BLACK_BED; case 48: return Items.COOKIE; case 49: return Items.MAP; case 50: return Items.BEEF; @@ -178,7 +177,7 @@ private Item getRandomItem() { case 59: return Items.BAKED_POTATO; case 60: return Items.POISONOUS_POTATO; case 61: return Items.GOLDEN_CARROT; - case 62: return Items.SKULL; + case 62: return Items.BEETROOT_SEEDS; case 63: return Items.PUMPKIN_PIE; case 64: return Items.RABBIT_STEW; case 65: return Items.RABBIT; @@ -203,8 +202,7 @@ private Item getRandomItem() { private void init(){ //Init scoreboard - scoreBoard = Minecraft.getMinecraft().theWorld.getScoreboard().addScoreObjective("Score", IScoreCriteria.DUMMY); - scoreBoard.setRenderType(EnumRenderType.INTEGER); + scoreBoard = Minecraft.getInstance().world.getScoreboard().addObjective("Score", ScoreCriteria.DUMMY, null ,RenderType.INTEGER); scoreBoard.getScoreboard().setObjectiveInDisplaySlot(Scoreboard.getObjectiveDisplaySlotNumber("sidebar"), scoreBoard); displayProgress = scoreBoard.getScoreboard().getOrCreateScore("Maze Building Progress (%)", scoreBoard); displayProgress.setScorePoints(0); @@ -213,8 +211,8 @@ private void init(){ this.size = maze.nodeRegister[0].length/2; this.x-=(blockSize*maze.nodeRegister[0].length)/2; this.z-=(blockSize*maze.nodeRegister[1].length)/2; - World worldIn = Minecraft.getMinecraft().theWorld; - World serverWorld = Minecraft.getMinecraft().getIntegratedServer().getEntityWorld(); + World worldIn = Minecraft.getInstance().world; + World serverWorld = Minecraft.getInstance().getIntegratedServer().getWorld(Minecraft.getInstance().player.dimension); BlockPos pos; Block block; for(int x = 0; x=maze.nodeRegister[0].length){ scoreBoard.getScoreboard().removeObjective(scoreBoard); - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("A random maze has been generated!")); + Minecraft.getInstance().player.sendChatMessage("A random maze has been generated!"); return true; } } @@ -312,7 +310,7 @@ public boolean run() { displayProgress.setScorePoints((int)(generated/(float)(maze.nodeRegister.length*maze.nodeRegister[0].length)*100.00)); if(generated>maze.nodeRegister.length*maze.nodeRegister[0].length){ scoreBoard.getScoreboard().removeObjective(scoreBoard); - Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("A random maze has been generated!")); + Minecraft.getInstance().player.sendChatMessage("A random maze has been generated!"); return true; } diff --git a/src/main/java/modid/imsm/worldgeneration/RideCommand.java b/src/main/java/modid/imsm/worldgeneration/RideCommand.java index d8481b5f..12e7f65b 100644 --- a/src/main/java/modid/imsm/worldgeneration/RideCommand.java +++ b/src/main/java/modid/imsm/worldgeneration/RideCommand.java @@ -1,106 +1,56 @@ package modid.imsm.worldgeneration; -import java.util.ArrayList; -import java.util.List; +import com.mojang.brigadier.CommandDispatcher; +import com.mojang.brigadier.context.CommandContext; import modid.imsm.core.IMSM; import modid.imsm.livestructures.RideStructure; import modid.imsm.structureloader.SchematicStructure; import net.minecraft.client.Minecraft; -import net.minecraft.command.ICommand; -import net.minecraft.command.ICommandSender; -import net.minecraft.server.MinecraftServer; -import net.minecraft.util.math.BlockPos; -import net.minecraft.util.text.TextComponentString; - -public class RideCommand implements ICommand -{ - private List aliases; - public RideCommand() - { - this.aliases = new ArrayList(); - this.aliases.add("ridestructure"); - this.aliases.add("ridethis"); - } - - @Override - public String getCommandName() - { - return "ride"; - } - - @Override - public String getCommandUsage(ICommandSender icommandsender) - { - return "ride"; - } - - public String getCommandUsage() - { - return "ride"; - } - - @Override - public List getCommandAliases() - { - return this.aliases; - } - - @Override - public void execute(MinecraftServer server, ICommandSender sender, String[] args) - { - // Minecraft.getMinecraft().thePlayer.addChatMessage(new TextComponentString("Structure riding went broken in the 1.9 upgrade... Will fix asap!")); - if(IMSM.eventHandler.isRiding==null){ - for(int i = 0; i dispatcher) { + dispatcher.register(Commands.literal("undo").executes(RideCommand::ride)); + } + + private static int ride(CommandContext context) { + runCommand(); + return 1; + } + + private static void runCommand() + { + // Minecraft.getInstance().player.sendChatMessage("Structure riding went broken in the 1.9 upgrade... Will fix asap!")); + if(IMSM.eventHandler.isRiding==null){ + for(int i = 0; i removedStates = new ArrayList(); - public static ArrayList removedPositions = new ArrayList(); -public static int numBlocksUndoable = 0; - public UndoCommand() - { - this.aliases = new ArrayList(); - this.aliases.add("undo"); - } - - @Override - public String getCommandName() - { - return "undo"; - } - - @Override - public String getCommandUsage(ICommandSender icommandsender) - { - return "undo"; - } - - public String getCommandUsage() - { - return "undo"; - } - - @Override - public List getCommandAliases() - { - return this.aliases; - } - - @Override - public void execute(MinecraftServer server, ICommandSender sender, String[] args) - { - runCommand(); - } - - public static void runCommand(){ - if(removedStates.size()>0 && removedPositions.size()>0){ - for(int i = 0; i removedStates = new ArrayList<>(); + public static ArrayList removedPositions = new ArrayList<>(); + public static int numBlocksUndoable = 0; + + private UndoCommand() {} + + public static void register(CommandDispatcher dispatcher) { + dispatcher.register(Commands.literal("undo").executes(UndoCommand::undo)); + } + + private static int undo(CommandContext context) { + runCommand(); + return 1; + } + + public static void runCommand(){ + if(removedStates.size()>0 && removedPositions.size()>0){ + for(int i = 0; i +updateJSONURL="http://myurl.me/" #optional +# A URL for the "homepage" for this mod, displayed in the mod UI +displayURL="https://www.planetminecraft.com/mod/11-instant-massive-structures-mod-v10/" #optional +# A file name (in the root of the mod JAR) containing a logo for display +logoFile="" #optional +# A text field displayed in the mod UI +credits="SimJoo" #optional +# A text field displayed in the mod UI +authors="SimJoo" #optional +# The description text for the mod (multi line!) (#mandatory) +description=''' +Build massive structures instantly using the Instant Massive Structures Mod. I made this mod to be awesome in both survival and creative. This mod has a set of more than 30 survival structures, that are optimized for usage in your survival world and enhance your survival experience. If you are not much the builder (but love tnt :P), this mod is perfect for you. + +There are also over 800 structures optimized to create the biggest cities. With this mod you should be able to create entire cities in no time! Also, with the use of the upcoming checkerboard-chunk generator, building gets even easier. I will upload a video very soon explaining this even better, and show some examples of cities build in 1 hour, or even 10 minutes! + +So, do you have ideas for the most awesome cities, but have very little time to actually create these cities, this mod is perfect for you! Click the "Download this mod" button on the yellow button on the right of this text to download this mod right now! +''' +# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. +[[dependencies.imsm]] #optional + # the modid of the dependency + modId="forge" #mandatory + # Does this dependency have to exist - if not, ordering below must be specified + mandatory=true #mandatory + # The version range of the dependency + versionRange="[31,)" #mandatory + # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory + ordering="NONE" + # Side this dependency is applied on - BOTH, CLIENT or SERVER + side="BOTH" +# Here's another dependency +[[dependencies.imsm]] + modId="minecraft" + mandatory=true + versionRange="[1.15.2]" + ordering="NONE" + side="BOTH" diff --git a/src/main/resources/assets/imsm/blockstates/BlockAirBalloon.json b/src/main/resources/assets/imsm/blockstates/BlockAirBalloon.json deleted file mode 100644 index 1ba850b3..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockAirBalloon.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockAirBalloon" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockAirplane.json b/src/main/resources/assets/imsm/blockstates/BlockAirplane.json deleted file mode 100644 index 35e9d7ea..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockAirplane.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockAirplane" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockApplepie.json b/src/main/resources/assets/imsm/blockstates/BlockApplepie.json deleted file mode 100644 index 25d06729..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockApplepie.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockApplepie" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockArena1.json b/src/main/resources/assets/imsm/blockstates/BlockArena1.json deleted file mode 100644 index 3d2627e5..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockArena1.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockArena1" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockArena2.json b/src/main/resources/assets/imsm/blockstates/BlockArena2.json deleted file mode 100644 index 7b608ea9..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockArena2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockArena2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockAtlantis.json b/src/main/resources/assets/imsm/blockstates/BlockAtlantis.json deleted file mode 100644 index b1aed457..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockAtlantis.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockAtlantis" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockBigPyramid.json b/src/main/resources/assets/imsm/blockstates/BlockBigPyramid.json deleted file mode 100644 index 24f23670..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockBigPyramid.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockBigPyramid" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockBigWorld.json b/src/main/resources/assets/imsm/blockstates/BlockBigWorld.json deleted file mode 100644 index 32ebd1da..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockBigWorld.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockBigWorld" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockBlackRock.json b/src/main/resources/assets/imsm/blockstates/BlockBlackRock.json deleted file mode 100644 index 1586e509..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockBlackRock.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockBlackRock" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockBoat.json b/src/main/resources/assets/imsm/blockstates/BlockBoat.json deleted file mode 100644 index cfa68c13..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockBoat.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockBoat" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockBunker.json b/src/main/resources/assets/imsm/blockstates/BlockBunker.json deleted file mode 100644 index e7e84096..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockBunker.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockBunker" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockCactus2.json b/src/main/resources/assets/imsm/blockstates/BlockCactus2.json deleted file mode 100644 index a609d9a1..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockCactus2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockCactus2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockCake2.json b/src/main/resources/assets/imsm/blockstates/BlockCake2.json deleted file mode 100644 index f0b9e217..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockCake2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockCake2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockCastleTower.json b/src/main/resources/assets/imsm/blockstates/BlockCastleTower.json deleted file mode 100644 index 6e244925..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockCastleTower.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockCastleTower" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockCave.json b/src/main/resources/assets/imsm/blockstates/BlockCave.json deleted file mode 100644 index 9dbb508a..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockCave.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockCave" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockChallengeEight.json b/src/main/resources/assets/imsm/blockstates/BlockChallengeEight.json deleted file mode 100644 index 2dc30732..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockChallengeEight.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockChallengeEight" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockChallengeFive.json b/src/main/resources/assets/imsm/blockstates/BlockChallengeFive.json deleted file mode 100644 index fd6c21c5..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockChallengeFive.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockChallengeFive" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockChallengeFour.json b/src/main/resources/assets/imsm/blockstates/BlockChallengeFour.json deleted file mode 100644 index 48c9ab88..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockChallengeFour.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockChallengeFour" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockChallengeNine.json b/src/main/resources/assets/imsm/blockstates/BlockChallengeNine.json deleted file mode 100644 index 8d0b0a67..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockChallengeNine.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockChallengeNine" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockChallengeOne.json b/src/main/resources/assets/imsm/blockstates/BlockChallengeOne.json deleted file mode 100644 index 9e84a600..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockChallengeOne.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockChallengeOne" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockChallengeSeven.json b/src/main/resources/assets/imsm/blockstates/BlockChallengeSeven.json deleted file mode 100644 index a3683aa1..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockChallengeSeven.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockChallengeSeven" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockChallengeSix.json b/src/main/resources/assets/imsm/blockstates/BlockChallengeSix.json deleted file mode 100644 index 76bf3093..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockChallengeSix.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockChallengeSix" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockChallengeTen.json b/src/main/resources/assets/imsm/blockstates/BlockChallengeTen.json deleted file mode 100644 index d863c388..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockChallengeTen.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockChallengeTen" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockChallengeThree.json b/src/main/resources/assets/imsm/blockstates/BlockChallengeThree.json deleted file mode 100644 index 0b223790..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockChallengeThree.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockChallengeThree" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockChallengeTwo.json b/src/main/resources/assets/imsm/blockstates/BlockChallengeTwo.json deleted file mode 100644 index 9d2d7e22..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockChallengeTwo.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockChallengeTwo" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockCheckerboard.json b/src/main/resources/assets/imsm/blockstates/BlockCheckerboard.json deleted file mode 100644 index c8af8af4..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockCheckerboard.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockCheckerboard" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockCloud.json b/src/main/resources/assets/imsm/blockstates/BlockCloud.json deleted file mode 100644 index da3ec4ce..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockCloud.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockCloud" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockColumn.json b/src/main/resources/assets/imsm/blockstates/BlockColumn.json deleted file mode 100644 index 83337cf5..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockColumn.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockColumn" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockCosyHouse.json b/src/main/resources/assets/imsm/blockstates/BlockCosyHouse.json deleted file mode 100644 index 8050f83f..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockCosyHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockCosyHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockDungeon.json b/src/main/resources/assets/imsm/blockstates/BlockDungeon.json deleted file mode 100644 index 7d7e89a9..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockDungeon.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockDungeon" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockEnchantmentRoom.json b/src/main/resources/assets/imsm/blockstates/BlockEnchantmentRoom.json deleted file mode 100644 index dd7ef1ad..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockEnchantmentRoom.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockEnchantmentRoom" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockFarm.json b/src/main/resources/assets/imsm/blockstates/BlockFarm.json deleted file mode 100644 index 126c6d49..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockFarm.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockFarm" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockFarm2.json b/src/main/resources/assets/imsm/blockstates/BlockFarm2.json deleted file mode 100644 index bb8fde5e..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockFarm2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockFarm2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockFarm3.json b/src/main/resources/assets/imsm/blockstates/BlockFarm3.json deleted file mode 100644 index ae16e0bb..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockFarm3.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockFarm3" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockFarm4.json b/src/main/resources/assets/imsm/blockstates/BlockFarm4.json deleted file mode 100644 index 3bbe4fbe..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockFarm4.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockFarm4" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockFerrisWheel.json b/src/main/resources/assets/imsm/blockstates/BlockFerrisWheel.json deleted file mode 100644 index 1f163558..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockFerrisWheel.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockFerrisWheel" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockFloatingSphere.json b/src/main/resources/assets/imsm/blockstates/BlockFloatingSphere.json deleted file mode 100644 index eb4bf1f2..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockFloatingSphere.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockFloatingSphere" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockGiantTree.json b/src/main/resources/assets/imsm/blockstates/BlockGiantTree.json deleted file mode 100644 index 67b7fda8..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockGiantTree.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockGiantTree" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockGlassHouse.json b/src/main/resources/assets/imsm/blockstates/BlockGlassHouse.json deleted file mode 100644 index 1e6dd59b..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockGlassHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockGlassHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockHountedHouse.json b/src/main/resources/assets/imsm/blockstates/BlockHountedHouse.json deleted file mode 100644 index ecba58cf..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockHountedHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockHountedHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockHouse.json b/src/main/resources/assets/imsm/blockstates/BlockHouse.json deleted file mode 100644 index 27c66764..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockHouse2.json b/src/main/resources/assets/imsm/blockstates/BlockHouse2.json deleted file mode 100644 index 06909fb6..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockHouse2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockHouse2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockHouseTrap1.json b/src/main/resources/assets/imsm/blockstates/BlockHouseTrap1.json deleted file mode 100644 index f44d57c0..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockHouseTrap1.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockHouseTrap1" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockHouseTrap2.json b/src/main/resources/assets/imsm/blockstates/BlockHouseTrap2.json deleted file mode 100644 index 4cde1b73..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockHouseTrap2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockHouseTrap2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockLeaves2.json b/src/main/resources/assets/imsm/blockstates/BlockLeaves2.json deleted file mode 100644 index 7150d320..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockLeaves2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockLeaves2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockLighthouse.json b/src/main/resources/assets/imsm/blockstates/BlockLighthouse.json deleted file mode 100644 index 26ea0303..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockLighthouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockLighthouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockMegaHouse.json b/src/main/resources/assets/imsm/blockstates/BlockMegaHouse.json deleted file mode 100644 index be32a482..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockMegaHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockMegaHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockMegaHouse2.json b/src/main/resources/assets/imsm/blockstates/BlockMegaHouse2.json deleted file mode 100644 index 4cb186f7..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockMegaHouse2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockMegaHouse2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockMegaTower.json b/src/main/resources/assets/imsm/blockstates/BlockMegaTower.json deleted file mode 100644 index 05b88615..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockMegaTower.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockMegaTower" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockPenIron.json b/src/main/resources/assets/imsm/blockstates/BlockPenIron.json deleted file mode 100644 index fb0cd2ad..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockPenIron.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockPenIron" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockPenNether.json b/src/main/resources/assets/imsm/blockstates/BlockPenNether.json deleted file mode 100644 index 37accd83..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockPenNether.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockPenNether" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockPenWood.json b/src/main/resources/assets/imsm/blockstates/BlockPenWood.json deleted file mode 100644 index fd0e9ba0..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockPenWood.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockPenWood" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockPlane.json b/src/main/resources/assets/imsm/blockstates/BlockPlane.json deleted file mode 100644 index b08dc284..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockPlane.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockPlane" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockPrison.json b/src/main/resources/assets/imsm/blockstates/BlockPrison.json deleted file mode 100644 index 048a49bb..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockPrison.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockPrison" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockPrison2.json b/src/main/resources/assets/imsm/blockstates/BlockPrison2.json deleted file mode 100644 index 1cac71b2..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockPrison2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockPrison2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockPyramid.json b/src/main/resources/assets/imsm/blockstates/BlockPyramid.json deleted file mode 100644 index d80bda6d..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockPyramid.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockPyramid" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockRollerCoaster2.json b/src/main/resources/assets/imsm/blockstates/BlockRollerCoaster2.json deleted file mode 100644 index 092f4174..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockRollerCoaster2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockRollerCoaster2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockRollercoaster.json b/src/main/resources/assets/imsm/blockstates/BlockRollercoaster.json deleted file mode 100644 index b9a51ad1..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockRollercoaster.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockRollercoaster" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockShelter.json b/src/main/resources/assets/imsm/blockstates/BlockShelter.json deleted file mode 100644 index 1caaa6c8..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockShelter.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockShelter" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockSkyscraper.json b/src/main/resources/assets/imsm/blockstates/BlockSkyscraper.json deleted file mode 100644 index 4f9e4e8f..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockSkyscraper.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockSkyscraper" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockSkyscraper2.json b/src/main/resources/assets/imsm/blockstates/BlockSkyscraper2.json deleted file mode 100644 index cdf2af03..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockSkyscraper2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockSkyscraper2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockStadium.json b/src/main/resources/assets/imsm/blockstates/BlockStadium.json deleted file mode 100644 index a5dcf985..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockStadium.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockStadium" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockStadium2.json b/src/main/resources/assets/imsm/blockstates/BlockStadium2.json deleted file mode 100644 index af2782ac..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockStadium2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockStadium2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockStandardBrickHouse.json b/src/main/resources/assets/imsm/blockstates/BlockStandardBrickHouse.json deleted file mode 100644 index fa36b579..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockStandardBrickHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockStandardBrickHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockStoreHouse.json b/src/main/resources/assets/imsm/blockstates/BlockStoreHouse.json deleted file mode 100644 index 75a4c066..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockStoreHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockStoreHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockStreet.json b/src/main/resources/assets/imsm/blockstates/BlockStreet.json deleted file mode 100644 index fbe770f8..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockStreet.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockStreet" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockTorch2.json b/src/main/resources/assets/imsm/blockstates/BlockTorch2.json deleted file mode 100644 index effe0d9c..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockTorch2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockTorch2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockTouchable.json b/src/main/resources/assets/imsm/blockstates/BlockTouchable.json deleted file mode 100644 index 295669d7..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockTouchable.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockTouchable" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockTower.json b/src/main/resources/assets/imsm/blockstates/BlockTower.json deleted file mode 100644 index ac6643f4..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockTower.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockTower" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockUnlimited.json b/src/main/resources/assets/imsm/blockstates/BlockUnlimited.json deleted file mode 100644 index c844dc99..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockUnlimited.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockUnlimited" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/BlockWaterSlide.json b/src/main/resources/assets/imsm/blockstates/BlockWaterSlide.json deleted file mode 100644 index ac50fc69..00000000 --- a/src/main/resources/assets/imsm/blockstates/BlockWaterSlide.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:BlockWaterSlide" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ChristmasHouse.json b/src/main/resources/assets/imsm/blockstates/ChristmasHouse.json deleted file mode 100644 index af2eb442..00000000 --- a/src/main/resources/assets/imsm/blockstates/ChristmasHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ChristmasHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ChristmasHouse2.json b/src/main/resources/assets/imsm/blockstates/ChristmasHouse2.json deleted file mode 100644 index 56db3129..00000000 --- a/src/main/resources/assets/imsm/blockstates/ChristmasHouse2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ChristmasHouse2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ChristmasHouse3.json b/src/main/resources/assets/imsm/blockstates/ChristmasHouse3.json deleted file mode 100644 index 890e06d8..00000000 --- a/src/main/resources/assets/imsm/blockstates/ChristmasHouse3.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ChristmasHouse3" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ChristmasMarket.json b/src/main/resources/assets/imsm/blockstates/ChristmasMarket.json deleted file mode 100644 index 8fe426d8..00000000 --- a/src/main/resources/assets/imsm/blockstates/ChristmasMarket.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ChristmasMarket" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ChristmasSleigh.json b/src/main/resources/assets/imsm/blockstates/ChristmasSleigh.json deleted file mode 100644 index 83a9b501..00000000 --- a/src/main/resources/assets/imsm/blockstates/ChristmasSleigh.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ChristmasSleigh" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ChristmasSleigh2.json b/src/main/resources/assets/imsm/blockstates/ChristmasSleigh2.json deleted file mode 100644 index d6e6498d..00000000 --- a/src/main/resources/assets/imsm/blockstates/ChristmasSleigh2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ChristmasSleigh2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ChristmasSnowman.json b/src/main/resources/assets/imsm/blockstates/ChristmasSnowman.json deleted file mode 100644 index d876a1ca..00000000 --- a/src/main/resources/assets/imsm/blockstates/ChristmasSnowman.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ChristmasSnowman" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ChristmasTree.json b/src/main/resources/assets/imsm/blockstates/ChristmasTree.json deleted file mode 100644 index 5c224dbe..00000000 --- a/src/main/resources/assets/imsm/blockstates/ChristmasTree.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ChristmasTree" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationGrassNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/DecorationGrassNorthEastSouthWest.json deleted file mode 100644 index f16b420c..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationGrassNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationGrassNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkEast.json b/src/main/resources/assets/imsm/blockstates/DecorationParkEast.json deleted file mode 100644 index cad3636c..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkNorth.json b/src/main/resources/assets/imsm/blockstates/DecorationParkNorth.json deleted file mode 100644 index 56952293..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkSouth.json b/src/main/resources/assets/imsm/blockstates/DecorationParkSouth.json deleted file mode 100644 index 938eab91..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkWest.json b/src/main/resources/assets/imsm/blockstates/DecorationParkWest.json deleted file mode 100644 index 94b21535..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageEast.json b/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageEast.json deleted file mode 100644 index ec196984..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkingGarageEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageNorth.json b/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageNorth.json deleted file mode 100644 index 9f2e5d8e..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkingGarageNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageSouth.json b/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageSouth.json deleted file mode 100644 index 3a542eec..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkingGarageSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageWest.json b/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageWest.json deleted file mode 100644 index 8255c480..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkingGarageWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkingGarageWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsEast.json b/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsEast.json deleted file mode 100644 index c8ba2edc..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkingLotsEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsNorth.json b/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsNorth.json deleted file mode 100644 index 7e0c35fb..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkingLotsNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsSouth.json b/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsSouth.json deleted file mode 100644 index e9f28c45..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkingLotsSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsWest.json b/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsWest.json deleted file mode 100644 index 43cc294f..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationParkingLotsWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationParkingLotsWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationPlazaFountainNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/DecorationPlazaFountainNorthEastSouthWest.json deleted file mode 100644 index 1a6c4ccf..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationPlazaFountainNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationPlazaFountainNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationPlazaNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/DecorationPlazaNorthEastSouthWest.json deleted file mode 100644 index e77df1c0..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationPlazaNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationPlazaNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationSoccerStadiumEastWest.json b/src/main/resources/assets/imsm/blockstates/DecorationSoccerStadiumEastWest.json deleted file mode 100644 index 201b6598..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationSoccerStadiumEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationSoccerStadiumEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationSoccerStadiumNorthSouth.json b/src/main/resources/assets/imsm/blockstates/DecorationSoccerStadiumNorthSouth.json deleted file mode 100644 index 7add2fe3..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationSoccerStadiumNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationSoccerStadiumNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationSquareNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/DecorationSquareNorthEastSouthWest.json deleted file mode 100644 index bb9a1fda..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationSquareNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationSquareNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeEast.json b/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeEast.json deleted file mode 100644 index d1203493..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationSquareTreeEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeNorth.json b/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeNorth.json deleted file mode 100644 index b75b6a72..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationSquareTreeNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeSouth.json b/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeSouth.json deleted file mode 100644 index 99696f01..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationSquareTreeSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeWest.json b/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeWest.json deleted file mode 100644 index 97bfab24..00000000 --- a/src/main/resources/assets/imsm/blockstates/DecorationSquareTreeWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:DecorationSquareTreeWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/FoodCarrotsEastWest.json b/src/main/resources/assets/imsm/blockstates/FoodCarrotsEastWest.json deleted file mode 100644 index aa4eb0d1..00000000 --- a/src/main/resources/assets/imsm/blockstates/FoodCarrotsEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:FoodCarrotsEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/FoodCarrotsNorthSouth.json b/src/main/resources/assets/imsm/blockstates/FoodCarrotsNorthSouth.json deleted file mode 100644 index b3c11eb0..00000000 --- a/src/main/resources/assets/imsm/blockstates/FoodCarrotsNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:FoodCarrotsNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/FoodFarmEast.json b/src/main/resources/assets/imsm/blockstates/FoodFarmEast.json deleted file mode 100644 index d736648a..00000000 --- a/src/main/resources/assets/imsm/blockstates/FoodFarmEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:FoodFarmEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/FoodFarmNorth.json b/src/main/resources/assets/imsm/blockstates/FoodFarmNorth.json deleted file mode 100644 index 6fe227a0..00000000 --- a/src/main/resources/assets/imsm/blockstates/FoodFarmNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:FoodFarmNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/FoodFarmSouth.json b/src/main/resources/assets/imsm/blockstates/FoodFarmSouth.json deleted file mode 100644 index 04aa3fd9..00000000 --- a/src/main/resources/assets/imsm/blockstates/FoodFarmSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:FoodFarmSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/FoodFarmWest.json b/src/main/resources/assets/imsm/blockstates/FoodFarmWest.json deleted file mode 100644 index 85e98ed8..00000000 --- a/src/main/resources/assets/imsm/blockstates/FoodFarmWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:FoodFarmWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/FoodPotatoesNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/FoodPotatoesNorthEastSouthWest.json deleted file mode 100644 index 28a78479..00000000 --- a/src/main/resources/assets/imsm/blockstates/FoodPotatoesNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:FoodPotatoesNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/FoodStableEastWest.json b/src/main/resources/assets/imsm/blockstates/FoodStableEastWest.json deleted file mode 100644 index 310683f7..00000000 --- a/src/main/resources/assets/imsm/blockstates/FoodStableEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:FoodStableEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/FoodStableNorthSouth.json b/src/main/resources/assets/imsm/blockstates/FoodStableNorthSouth.json deleted file mode 100644 index 10638716..00000000 --- a/src/main/resources/assets/imsm/blockstates/FoodStableNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:FoodStableNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/FoodWheatNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/FoodWheatNorthEastSouthWest.json deleted file mode 100644 index 842ffc4e..00000000 --- a/src/main/resources/assets/imsm/blockstates/FoodWheatNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:FoodWheatNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueEast.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueEast.json deleted file mode 100644 index 0fd3d430..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityBlueEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueNorth.json deleted file mode 100644 index ca14f182..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityBlueNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueSouth.json deleted file mode 100644 index 30bbc85c..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityBlueSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueWest.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueWest.json deleted file mode 100644 index 78905afd..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBlueWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityBlueWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickEast.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickEast.json deleted file mode 100644 index d42355f0..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityBrickEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickNorth.json deleted file mode 100644 index bc0f1152..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityBrickNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickSouth.json deleted file mode 100644 index 0702e4c6..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityBrickSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickWest.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickWest.json deleted file mode 100644 index 5c851a90..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityBrickWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityBrickWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneyEast.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneyEast.json deleted file mode 100644 index 8b66c148..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneyEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityChimneyEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneyNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneyNorth.json deleted file mode 100644 index 8574da92..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneyNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityChimneyNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneySouth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneySouth.json deleted file mode 100644 index b9e8f3a9..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneySouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityChimneySouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneyWest.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneyWest.json deleted file mode 100644 index e53f6a13..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityChimneyWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityChimneyWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipEast.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipEast.json deleted file mode 100644 index 028ade59..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityComputerChipEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipNorth.json deleted file mode 100644 index 080bda0c..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityComputerChipNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipSouth.json deleted file mode 100644 index ea6bd2c6..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityComputerChipSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipWest.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipWest.json deleted file mode 100644 index 0e5770ef..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityComputerChipWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityComputerChipWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenEast.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenEast.json deleted file mode 100644 index 3b673eba..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityGreenEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenNorth.json deleted file mode 100644 index 7e512966..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityGreenNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenSouth.json deleted file mode 100644 index bfe4aaa8..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityGreenSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenWest.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenWest.json deleted file mode 100644 index 64c3eeaa..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityGreenWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityGreenWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueEast.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueEast.json deleted file mode 100644 index 24ec9af8..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityLightBlueEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueNorth.json deleted file mode 100644 index cab61d2a..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityLightBlueNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueSouth.json deleted file mode 100644 index 0f86ec0d..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityLightBlueSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueWest.json b/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueWest.json deleted file mode 100644 index 6b731793..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryHigh_DensityLightBlueWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryHigh_DensityLightBlueWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingEast.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingEast.json deleted file mode 100644 index c85c562b..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_Density3DPrintingEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingNorth.json deleted file mode 100644 index 608d5bbb..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_Density3DPrintingNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingSouth.json deleted file mode 100644 index c80dd671..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_Density3DPrintingSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingWest.json deleted file mode 100644 index ca6f942e..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_Density3DPrintingWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_Density3DPrintingWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueEast.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueEast.json deleted file mode 100644 index 3075b944..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBlueEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueNorth.json deleted file mode 100644 index 1a6942a8..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBlueNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueSouth.json deleted file mode 100644 index 07026ee4..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBlueSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueWest.json deleted file mode 100644 index 376dc9e5..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBlueWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBlueWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickEast.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickEast.json deleted file mode 100644 index b23dfb82..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrickEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickEastWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickEastWest.json deleted file mode 100644 index b9818ad8..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrickEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickNorth.json deleted file mode 100644 index bc4a1346..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrickNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickNorthSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickNorthSouth.json deleted file mode 100644 index 71274f75..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrickNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickSouth.json deleted file mode 100644 index 8f3f64a2..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrickSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickWest.json deleted file mode 100644 index e3011714..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrickWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrickWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownEast.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownEast.json deleted file mode 100644 index 331b061f..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrownEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownEast2.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownEast2.json deleted file mode 100644 index faabc9b3..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownEast2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrownEast2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownNorth.json deleted file mode 100644 index 8cc4d7ba..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrownNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownNorth2.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownNorth2.json deleted file mode 100644 index 2a256754..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownNorth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrownNorth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownSouth.json deleted file mode 100644 index 008da573..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrownSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownSouth2.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownSouth2.json deleted file mode 100644 index 2c8d23b3..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownSouth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrownSouth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownWest.json deleted file mode 100644 index a03a97b0..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrownWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownWest2.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownWest2.json deleted file mode 100644 index 3eee9fae..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityBrownWest2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityBrownWest2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneyEast.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneyEast.json deleted file mode 100644 index 1eb7153c..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneyEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityChimneyEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneyNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneyNorth.json deleted file mode 100644 index 9e6cc51c..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneyNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityChimneyNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneySouth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneySouth.json deleted file mode 100644 index 1edccd7e..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneySouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityChimneySouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneyWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneyWest.json deleted file mode 100644 index 83af1840..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityChimneyWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityChimneyWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenEast.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenEast.json deleted file mode 100644 index 1ebf92d0..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityGreenEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenNorth.json deleted file mode 100644 index 20a268a7..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityGreenNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenSouth.json deleted file mode 100644 index 3ef9e2bf..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityGreenSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenWest.json deleted file mode 100644 index 859bdf7c..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityGreenWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityGreenWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronEast.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronEast.json deleted file mode 100644 index 1a8cfde3..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityIronEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronNorth.json deleted file mode 100644 index 79f84a0b..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityIronNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronSouth.json deleted file mode 100644 index 657dac8c..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityIronSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronWest.json deleted file mode 100644 index aaa5e156..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityIronWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityIronWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaEast.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaEast.json deleted file mode 100644 index 330e0935..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityParabolicAntennaEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaNorth.json deleted file mode 100644 index 63593887..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityParabolicAntennaNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaSouth.json deleted file mode 100644 index 01088496..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityParabolicAntennaSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaWest.json deleted file mode 100644 index 1b5acb41..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityParabolicAntennaWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityParabolicAntennaWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTankNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTankNorthEastSouthWest.json deleted file mode 100644 index 0fa1c85c..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTankNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityTankNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeEast.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeEast.json deleted file mode 100644 index 58cadab6..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityTelescopeEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeNorth.json deleted file mode 100644 index c18e288e..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityTelescopeNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeSouth.json deleted file mode 100644 index 2dabdb12..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityTelescopeSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeWest.json b/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeWest.json deleted file mode 100644 index e87adf18..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryLow_DensityTelescopeWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryLow_DensityTelescopeWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueEast.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueEast.json deleted file mode 100644 index 66688b87..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBlueEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueNorth.json deleted file mode 100644 index bc583ec9..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBlueNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueSouth.json deleted file mode 100644 index 474ca458..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBlueSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueWest.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueWest.json deleted file mode 100644 index 0351e85c..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBlueWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBlueWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickEast.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickEast.json deleted file mode 100644 index 0bbd820e..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBrickEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickNorth.json deleted file mode 100644 index 6173e8f5..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBrickNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickSouth.json deleted file mode 100644 index 508f5c87..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBrickSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickWest.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickWest.json deleted file mode 100644 index c999d4bb..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrickWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBrickWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownEast.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownEast.json deleted file mode 100644 index bea89c31..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBrownEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownNorth.json deleted file mode 100644 index 0e0b5b98..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBrownNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownSouth.json deleted file mode 100644 index 70bb3bc5..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBrownSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownWest.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownWest.json deleted file mode 100644 index 14ea4289..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityBrownWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityBrownWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChemicalPressEastWest.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChemicalPressEastWest.json deleted file mode 100644 index 0dd659b0..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChemicalPressEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityChemicalPressEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChemicalPressNorthSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChemicalPressNorthSouth.json deleted file mode 100644 index 58c0fdea..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChemicalPressNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityChemicalPressNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneyEast.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneyEast.json deleted file mode 100644 index 092fd94e..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneyEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityChimneyEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneyNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneyNorth.json deleted file mode 100644 index 5d2e4389..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneyNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityChimneyNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneySouth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneySouth.json deleted file mode 100644 index 61e6aaaf..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneySouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityChimneySouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneyWest.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneyWest.json deleted file mode 100644 index d7dfbef0..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityChimneyWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityChimneyWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenEast.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenEast.json deleted file mode 100644 index 75dfeea6..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityGreenEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenNorth.json deleted file mode 100644 index 08a2fa6a..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityGreenNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenSouth.json deleted file mode 100644 index e15441c5..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityGreenSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenWest.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenWest.json deleted file mode 100644 index 2f10565e..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityGreenWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityGreenWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceEast.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceEast.json deleted file mode 100644 index 754ed5a7..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityIceEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceNorth.json deleted file mode 100644 index d917f84c..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityIceNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceSouth.json deleted file mode 100644 index b76a639b..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityIceSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceWest.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceWest.json deleted file mode 100644 index 609971f6..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityIceWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityIceWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneEast.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneEast.json deleted file mode 100644 index 31ad790a..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensitySandstoneEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneNorth.json deleted file mode 100644 index b04f9fdd..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensitySandstoneNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneSouth.json deleted file mode 100644 index 568321c9..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensitySandstoneSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneWest.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneWest.json deleted file mode 100644 index 466faaa2..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensitySandstoneWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensitySandstoneWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankEast.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankEast.json deleted file mode 100644 index 599087c0..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityTankEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankNorth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankNorth.json deleted file mode 100644 index 4d9d81c0..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityTankNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankSouth.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankSouth.json deleted file mode 100644 index 2f48c127..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityTankSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankWest.json b/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankWest.json deleted file mode 100644 index 04228c14..00000000 --- a/src/main/resources/assets/imsm/blockstates/IndustryMedium_DensityTankWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:IndustryMedium_DensityTankWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/LiveAirBalloon.json b/src/main/resources/assets/imsm/blockstates/LiveAirBalloon.json deleted file mode 100644 index 59549914..00000000 --- a/src/main/resources/assets/imsm/blockstates/LiveAirBalloon.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:LiveAirBalloon" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/LiveAirplane.json b/src/main/resources/assets/imsm/blockstates/LiveAirplane.json deleted file mode 100644 index f544b5cb..00000000 --- a/src/main/resources/assets/imsm/blockstates/LiveAirplane.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:LiveAirplane" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/LiveBoat.json b/src/main/resources/assets/imsm/blockstates/LiveBoat.json deleted file mode 100644 index 03d42f40..00000000 --- a/src/main/resources/assets/imsm/blockstates/LiveBoat.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:LiveBoat" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/LiveFlyingShip.json b/src/main/resources/assets/imsm/blockstates/LiveFlyingShip.json deleted file mode 100644 index d0617bae..00000000 --- a/src/main/resources/assets/imsm/blockstates/LiveFlyingShip.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:LiveFlyingShip" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/LiveFlyingShip2.json b/src/main/resources/assets/imsm/blockstates/LiveFlyingShip2.json deleted file mode 100644 index 93f0b7fd..00000000 --- a/src/main/resources/assets/imsm/blockstates/LiveFlyingShip2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:LiveFlyingShip2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/LivePlane.json b/src/main/resources/assets/imsm/blockstates/LivePlane.json deleted file mode 100644 index 2c5098bb..00000000 --- a/src/main/resources/assets/imsm/blockstates/LivePlane.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:LivePlane" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/LiveStructureRemover.json b/src/main/resources/assets/imsm/blockstates/LiveStructureRemover.json deleted file mode 100644 index ba71664f..00000000 --- a/src/main/resources/assets/imsm/blockstates/LiveStructureRemover.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:LiveStructureRemover" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Live_Bus.json b/src/main/resources/assets/imsm/blockstates/Live_Bus.json deleted file mode 100644 index c4ce7fc6..00000000 --- a/src/main/resources/assets/imsm/blockstates/Live_Bus.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Live_Bus" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Live_Bus2.json b/src/main/resources/assets/imsm/blockstates/Live_Bus2.json deleted file mode 100644 index 7f1e5d5f..00000000 --- a/src/main/resources/assets/imsm/blockstates/Live_Bus2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Live_Bus2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Live_Cinema.json b/src/main/resources/assets/imsm/blockstates/Live_Cinema.json deleted file mode 100644 index f6b0b177..00000000 --- a/src/main/resources/assets/imsm/blockstates/Live_Cinema.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Live_Cinema" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Live_Fair_FreeFall.json b/src/main/resources/assets/imsm/blockstates/Live_Fair_FreeFall.json deleted file mode 100644 index 324a2374..00000000 --- a/src/main/resources/assets/imsm/blockstates/Live_Fair_FreeFall.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Live_Fair_FreeFall" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Live_Flying_Helicopter.json b/src/main/resources/assets/imsm/blockstates/Live_Flying_Helicopter.json deleted file mode 100644 index 1ab33a36..00000000 --- a/src/main/resources/assets/imsm/blockstates/Live_Flying_Helicopter.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Live_Flying_Helicopter" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Live_Helicopter.json b/src/main/resources/assets/imsm/blockstates/Live_Helicopter.json deleted file mode 100644 index 476fa0b7..00000000 --- a/src/main/resources/assets/imsm/blockstates/Live_Helicopter.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Live_Helicopter" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Live_Mill.json b/src/main/resources/assets/imsm/blockstates/Live_Mill.json deleted file mode 100644 index d45ce6a2..00000000 --- a/src/main/resources/assets/imsm/blockstates/Live_Mill.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Live_Mill" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Live_Power_Windmill_East.json b/src/main/resources/assets/imsm/blockstates/Live_Power_Windmill_East.json deleted file mode 100644 index e29bb2d5..00000000 --- a/src/main/resources/assets/imsm/blockstates/Live_Power_Windmill_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Live_Power_Windmill_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Live_WaterMill.json b/src/main/resources/assets/imsm/blockstates/Live_WaterMill.json deleted file mode 100644 index 03f05911..00000000 --- a/src/main/resources/assets/imsm/blockstates/Live_WaterMill.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Live_WaterMill" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityBrickEastWest.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityBrickEastWest.json deleted file mode 100644 index b068da3a..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityBrickEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityBrickEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityBrickNorthSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityBrickNorthSouth.json deleted file mode 100644 index 2eac4613..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityBrickNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityBrickNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanEast.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanEast.json deleted file mode 100644 index a27e53c5..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityCyanEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanNorth.json deleted file mode 100644 index 6b6d7cc9..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityCyanNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanSouth.json deleted file mode 100644 index 76208dae..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityCyanSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanWest.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanWest.json deleted file mode 100644 index e16a85bc..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityCyanWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityCyanWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopEast.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopEast.json deleted file mode 100644 index ea62cadb..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityHoleOnTopEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopNorth.json deleted file mode 100644 index cf9b4b56..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityHoleOnTopNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopSouth.json deleted file mode 100644 index 01c6be43..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityHoleOnTopSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopWest.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopWest.json deleted file mode 100644 index 1c70deee..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityHoleOnTopWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityHoleOnTopWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityLightBlueEastWest.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityLightBlueEastWest.json deleted file mode 100644 index 76131b9a..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityLightBlueEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityLightBlueEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityLightBlueNorthSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityLightBlueNorthSouth.json deleted file mode 100644 index 9c3c16ee..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensityLightBlueNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensityLightBlueNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingEast.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingEast.json deleted file mode 100644 index 498e4315..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensitySpirolBuildingEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingNorth.json deleted file mode 100644 index a7759f73..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensitySpirolBuildingNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingSouth.json deleted file mode 100644 index e8ce785a..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensitySpirolBuildingSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingWest.json b/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingWest.json deleted file mode 100644 index f31053df..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeHigh_DensitySpirolBuildingWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeHigh_DensitySpirolBuildingWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueEast.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueEast.json deleted file mode 100644 index eb13083e..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityBlueEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueNorth.json deleted file mode 100644 index 559ea5a4..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityBlueNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueSouth.json deleted file mode 100644 index 02f6e21b..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityBlueSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueWest.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueWest.json deleted file mode 100644 index fb41c694..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityBlueWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityBlueWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenEast.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenEast.json deleted file mode 100644 index 07f43995..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityGreenEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenNorth.json deleted file mode 100644 index c3ea5ff1..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityGreenNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenSouth.json deleted file mode 100644 index f3e572cf..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityGreenSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenWest.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenWest.json deleted file mode 100644 index 7e7abced..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityGreenWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityGreenWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteEast.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteEast.json deleted file mode 100644 index fe4cfa8c..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityWhiteEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteNorth.json deleted file mode 100644 index 704a2bf6..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityWhiteNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteSouth.json deleted file mode 100644 index 70f8cba4..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityWhiteSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteWest.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteWest.json deleted file mode 100644 index 5269b5dc..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityWhiteWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityWhiteWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowEast.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowEast.json deleted file mode 100644 index 3689f942..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityYellowEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowNorth.json deleted file mode 100644 index b591e8b7..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityYellowNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowSouth.json deleted file mode 100644 index 38b6e443..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityYellowSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowWest.json b/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowWest.json deleted file mode 100644 index 54593722..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeLow_DensityYellowWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeLow_DensityYellowWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanEast.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanEast.json deleted file mode 100644 index cf5d6888..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityCyanEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanNorth.json deleted file mode 100644 index 3f19e89d..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityCyanNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanSouth.json deleted file mode 100644 index b25e619b..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityCyanSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanWest.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanWest.json deleted file mode 100644 index 9b15bfbe..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityCyanWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityCyanWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueEast.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueEast.json deleted file mode 100644 index 5e8f6fca..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityLightBlueEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueNorth.json deleted file mode 100644 index 9f46f1ef..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityLightBlueNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueSouth.json deleted file mode 100644 index 27f53a27..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityLightBlueSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueWest.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueWest.json deleted file mode 100644 index 551cd8b1..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityLightBlueWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityLightBlueWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkEast.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkEast.json deleted file mode 100644 index 992eaabb..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityPinkEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkNorth.json deleted file mode 100644 index 094eb061..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityPinkNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkSouth.json deleted file mode 100644 index b5aacd93..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityPinkSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkWest.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkWest.json deleted file mode 100644 index 58347513..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensityPinkWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensityPinkWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneEast.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneEast.json deleted file mode 100644 index ae8c77bf..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensitySandstoneEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneNorth.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneNorth.json deleted file mode 100644 index 64cc5ee7..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensitySandstoneNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneSouth.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneSouth.json deleted file mode 100644 index 5f525095..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensitySandstoneSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneWest.json b/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneWest.json deleted file mode 100644 index 9aa5022f..00000000 --- a/src/main/resources/assets/imsm/blockstates/OfficeMedium_DensitySandstoneWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OfficeMedium_DensitySandstoneWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherBrickHouse.json b/src/main/resources/assets/imsm/blockstates/OtherBrickHouse.json deleted file mode 100644 index c8326b8b..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherBrickHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherBrickHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherGrandHouse.json b/src/main/resources/assets/imsm/blockstates/OtherGrandHouse.json deleted file mode 100644 index 41c805a3..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherGrandHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherGrandHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherLighthouse.json b/src/main/resources/assets/imsm/blockstates/OtherLighthouse.json deleted file mode 100644 index b2a06398..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherLighthouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherLighthouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherStable.json b/src/main/resources/assets/imsm/blockstates/OtherStable.json deleted file mode 100644 index 557f2075..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherStable.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherStable" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse.json b/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse.json deleted file mode 100644 index b22070d5..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherSurvivorHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse2.json b/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse2.json deleted file mode 100644 index e0f4785d..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherSurvivorHouse2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse3.json b/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse3.json deleted file mode 100644 index 7c737bf2..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse3.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherSurvivorHouse3" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse4.json b/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse4.json deleted file mode 100644 index 4525d5ab..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse4.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherSurvivorHouse4" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse5.json b/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse5.json deleted file mode 100644 index 74c0034d..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse5.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherSurvivorHouse5" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse6.json b/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse6.json deleted file mode 100644 index a23d7f0f..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse6.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherSurvivorHouse6" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse7.json b/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse7.json deleted file mode 100644 index 27359a7c..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse7.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherSurvivorHouse7" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse8.json b/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse8.json deleted file mode 100644 index e028df97..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherSurvivorHouse8.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherSurvivorHouse8" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/OtherTemple.json b/src/main/resources/assets/imsm/blockstates/OtherTemple.json deleted file mode 100644 index d854e848..00000000 --- a/src/main/resources/assets/imsm/blockstates/OtherTemple.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:OtherTemple" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigEast.json b/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigEast.json deleted file mode 100644 index 3e689130..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicFireServiceBigEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigNorth.json b/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigNorth.json deleted file mode 100644 index 9c3c5af2..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicFireServiceBigNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigSouth.json b/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigSouth.json deleted file mode 100644 index 5102a3c4..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicFireServiceBigSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigWest.json b/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigWest.json deleted file mode 100644 index 76f4b0e2..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicFireServiceBigWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicFireServiceBigWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallEast.json b/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallEast.json deleted file mode 100644 index 4c922ea7..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicFireServiceSmallEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallNorth.json b/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallNorth.json deleted file mode 100644 index d5c11f09..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicFireServiceSmallNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallSouth.json b/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallSouth.json deleted file mode 100644 index 41feae42..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicFireServiceSmallSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallWest.json b/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallWest.json deleted file mode 100644 index 629e4719..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicFireServiceSmallWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicFireServiceSmallWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicHospitalBigEast.json b/src/main/resources/assets/imsm/blockstates/PublicHospitalBigEast.json deleted file mode 100644 index 53460739..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicHospitalBigEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicHospitalBigEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicHospitalBigNorth.json b/src/main/resources/assets/imsm/blockstates/PublicHospitalBigNorth.json deleted file mode 100644 index 92d92821..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicHospitalBigNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicHospitalBigNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicHospitalBigSouth.json b/src/main/resources/assets/imsm/blockstates/PublicHospitalBigSouth.json deleted file mode 100644 index 7b357b51..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicHospitalBigSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicHospitalBigSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicHospitalBigWest.json b/src/main/resources/assets/imsm/blockstates/PublicHospitalBigWest.json deleted file mode 100644 index 778bbe2a..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicHospitalBigWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicHospitalBigWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallEast.json b/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallEast.json deleted file mode 100644 index 105a8af0..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicHospitalSmallEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallNorth.json b/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallNorth.json deleted file mode 100644 index 2a5814c5..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicHospitalSmallNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallSouth.json b/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallSouth.json deleted file mode 100644 index ab29fb4f..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicHospitalSmallSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallWest.json b/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallWest.json deleted file mode 100644 index 8fdad91d..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicHospitalSmallWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicHospitalSmallWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicLibraryEastWest.json b/src/main/resources/assets/imsm/blockstates/PublicLibraryEastWest.json deleted file mode 100644 index 54975027..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicLibraryEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicLibraryEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicLibraryNorthSouth.json b/src/main/resources/assets/imsm/blockstates/PublicLibraryNorthSouth.json deleted file mode 100644 index 26cdd873..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicLibraryNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicLibraryNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicPoliceBigEast.json b/src/main/resources/assets/imsm/blockstates/PublicPoliceBigEast.json deleted file mode 100644 index 8dcee06c..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicPoliceBigEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicPoliceBigEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicPoliceBigNorth.json b/src/main/resources/assets/imsm/blockstates/PublicPoliceBigNorth.json deleted file mode 100644 index 27e86644..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicPoliceBigNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicPoliceBigNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicPoliceBigSouth.json b/src/main/resources/assets/imsm/blockstates/PublicPoliceBigSouth.json deleted file mode 100644 index 047e999e..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicPoliceBigSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicPoliceBigSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicPoliceBigWest.json b/src/main/resources/assets/imsm/blockstates/PublicPoliceBigWest.json deleted file mode 100644 index 7944ab41..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicPoliceBigWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicPoliceBigWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallEast.json b/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallEast.json deleted file mode 100644 index e9deb643..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicPoliceSmallEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallNorth.json b/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallNorth.json deleted file mode 100644 index b130eb2a..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicPoliceSmallNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallSouth.json b/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallSouth.json deleted file mode 100644 index eaec3a51..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicPoliceSmallSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallWest.json b/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallWest.json deleted file mode 100644 index f4750416..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicPoliceSmallWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicPoliceSmallWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicSchoolBigNorthEast.json b/src/main/resources/assets/imsm/blockstates/PublicSchoolBigNorthEast.json deleted file mode 100644 index e745e4b1..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicSchoolBigNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicSchoolBigNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicSchoolBigNorthWest.json b/src/main/resources/assets/imsm/blockstates/PublicSchoolBigNorthWest.json deleted file mode 100644 index 45103384..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicSchoolBigNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicSchoolBigNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicSchoolBigSouthEast.json b/src/main/resources/assets/imsm/blockstates/PublicSchoolBigSouthEast.json deleted file mode 100644 index 7ac3fc36..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicSchoolBigSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicSchoolBigSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicSchoolBigSouthWest.json b/src/main/resources/assets/imsm/blockstates/PublicSchoolBigSouthWest.json deleted file mode 100644 index 701012f6..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicSchoolBigSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicSchoolBigSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallNorthEast.json b/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallNorthEast.json deleted file mode 100644 index ab987183..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicSchoolSmallNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallNorthWest.json b/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallNorthWest.json deleted file mode 100644 index ad0e0682..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicSchoolSmallNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallSouthEast.json b/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallSouthEast.json deleted file mode 100644 index 40986cf5..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicSchoolSmallSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallSouthWest.json b/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallSouthWest.json deleted file mode 100644 index 3064c4a3..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicSchoolSmallSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicSchoolSmallSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicTownhallBigEastWest.json b/src/main/resources/assets/imsm/blockstates/PublicTownhallBigEastWest.json deleted file mode 100644 index 52c73cb2..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicTownhallBigEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicTownhallBigEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicTownhallBigNorthSouth.json b/src/main/resources/assets/imsm/blockstates/PublicTownhallBigNorthSouth.json deleted file mode 100644 index 817a4db3..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicTownhallBigNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicTownhallBigNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallEast.json b/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallEast.json deleted file mode 100644 index 5fd19541..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicTownhallSmallEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallNorth.json b/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallNorth.json deleted file mode 100644 index 1c1f4e71..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicTownhallSmallNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallSouth.json b/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallSouth.json deleted file mode 100644 index 70aeb42d..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicTownhallSmallSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallWest.json b/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallWest.json deleted file mode 100644 index 20f8830a..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicTownhallSmallWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicTownhallSmallWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicUniversityEast.json b/src/main/resources/assets/imsm/blockstates/PublicUniversityEast.json deleted file mode 100644 index ff636149..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicUniversityEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicUniversityEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicUniversityNorth.json b/src/main/resources/assets/imsm/blockstates/PublicUniversityNorth.json deleted file mode 100644 index b83fea72..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicUniversityNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicUniversityNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicUniversitySouth.json b/src/main/resources/assets/imsm/blockstates/PublicUniversitySouth.json deleted file mode 100644 index 7592441d..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicUniversitySouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicUniversitySouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/PublicUniversityWest.json b/src/main/resources/assets/imsm/blockstates/PublicUniversityWest.json deleted file mode 100644 index 1b16713f..00000000 --- a/src/main/resources/assets/imsm/blockstates/PublicUniversityWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:PublicUniversityWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomAirballoon2.json b/src/main/resources/assets/imsm/blockstates/RandomAirballoon2.json deleted file mode 100644 index 65784729..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomAirballoon2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomAirballoon2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomBuildingComplex.json b/src/main/resources/assets/imsm/blockstates/RandomBuildingComplex.json deleted file mode 100644 index 89b14cbd..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomBuildingComplex.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomBuildingComplex" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomEntrance.json b/src/main/resources/assets/imsm/blockstates/RandomEntrance.json deleted file mode 100644 index c3581423..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomEntrance.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomEntrance" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomFlyingShip.json b/src/main/resources/assets/imsm/blockstates/RandomFlyingShip.json deleted file mode 100644 index 8dfd03a8..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomFlyingShip.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomFlyingShip" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomGreenTent.json b/src/main/resources/assets/imsm/blockstates/RandomGreenTent.json deleted file mode 100644 index 75985a12..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomGreenTent.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomGreenTent" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomGreyTent.json b/src/main/resources/assets/imsm/blockstates/RandomGreyTent.json deleted file mode 100644 index 0e83a217..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomGreyTent.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomGreyTent" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomImmense_Buildingcomplex.json b/src/main/resources/assets/imsm/blockstates/RandomImmense_Buildingcomplex.json deleted file mode 100644 index cbefefaf..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomImmense_Buildingcomplex.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomImmense_Buildingcomplex" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomImmense_White_House.json b/src/main/resources/assets/imsm/blockstates/RandomImmense_White_House.json deleted file mode 100644 index 44f63051..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomImmense_White_House.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomImmense_White_House" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomImmense_WorkingBuilding.json b/src/main/resources/assets/imsm/blockstates/RandomImmense_WorkingBuilding.json deleted file mode 100644 index 9a0aa1cb..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomImmense_WorkingBuilding.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomImmense_WorkingBuilding" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomImmense_greenroof.json b/src/main/resources/assets/imsm/blockstates/RandomImmense_greenroof.json deleted file mode 100644 index 1d694421..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomImmense_greenroof.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomImmense_greenroof" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomLightHouse.json b/src/main/resources/assets/imsm/blockstates/RandomLightHouse.json deleted file mode 100644 index 3692c529..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomLightHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomLightHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomLittlePalace.json b/src/main/resources/assets/imsm/blockstates/RandomLittlePalace.json deleted file mode 100644 index 5908c097..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomLittlePalace.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomLittlePalace" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomLittleWoodenCabin.json b/src/main/resources/assets/imsm/blockstates/RandomLittleWoodenCabin.json deleted file mode 100644 index 0268ea72..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomLittleWoodenCabin.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomLittleWoodenCabin" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomMinerTent.json b/src/main/resources/assets/imsm/blockstates/RandomMinerTent.json deleted file mode 100644 index a0dc3266..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomMinerTent.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomMinerTent" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomNetherEntranceSurvival.json b/src/main/resources/assets/imsm/blockstates/RandomNetherEntranceSurvival.json deleted file mode 100644 index d44ccaa3..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomNetherEntranceSurvival.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomNetherEntranceSurvival" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomRandomBrickHouse.json b/src/main/resources/assets/imsm/blockstates/RandomRandomBrickHouse.json deleted file mode 100644 index 31f5e9d8..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomRandomBrickHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomRandomBrickHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomSandStoneChurch.json b/src/main/resources/assets/imsm/blockstates/RandomSandStoneChurch.json deleted file mode 100644 index 14261e56..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomSandStoneChurch.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomSandStoneChurch" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomSandstoneBuilding.json b/src/main/resources/assets/imsm/blockstates/RandomSandstoneBuilding.json deleted file mode 100644 index 975c2a5c..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomSandstoneBuilding.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomSandstoneBuilding" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomSandstonewithFarm.json b/src/main/resources/assets/imsm/blockstates/RandomSandstonewithFarm.json deleted file mode 100644 index 78950b9d..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomSandstonewithFarm.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomSandstonewithFarm" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomSimpleSandstone.json b/src/main/resources/assets/imsm/blockstates/RandomSimpleSandstone.json deleted file mode 100644 index a2be61f7..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomSimpleSandstone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomSimpleSandstone" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomSpawnHouseProd.json b/src/main/resources/assets/imsm/blockstates/RandomSpawnHouseProd.json deleted file mode 100644 index aacb14ba..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomSpawnHouseProd.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomSpawnHouseProd" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomSurvivalHouse1.json b/src/main/resources/assets/imsm/blockstates/RandomSurvivalHouse1.json deleted file mode 100644 index d0e831af..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomSurvivalHouse1.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomSurvivalHouse1" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomSurvivalHouseSandstone.json b/src/main/resources/assets/imsm/blockstates/RandomSurvivalHouseSandstone.json deleted file mode 100644 index ccc44748..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomSurvivalHouseSandstone.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomSurvivalHouseSandstone" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomTentCamp.json b/src/main/resources/assets/imsm/blockstates/RandomTentCamp.json deleted file mode 100644 index 741bcf30..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomTentCamp.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomTentCamp" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomWoodenHouse.json b/src/main/resources/assets/imsm/blockstates/RandomWoodenHouse.json deleted file mode 100644 index fc711265..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomWoodenHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomWoodenHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RandomWoodenStonebrickHouse.json b/src/main/resources/assets/imsm/blockstates/RandomWoodenStonebrickHouse.json deleted file mode 100644 index 34686c40..00000000 --- a/src/main/resources/assets/imsm/blockstates/RandomWoodenStonebrickHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RandomWoodenStonebrickHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover16.json b/src/main/resources/assets/imsm/blockstates/Remover16.json deleted file mode 100644 index 355d179e..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover16.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover16" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover16256.json b/src/main/resources/assets/imsm/blockstates/Remover16256.json deleted file mode 100644 index ca6357d9..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover16256.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover16256" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover1632.json b/src/main/resources/assets/imsm/blockstates/Remover1632.json deleted file mode 100644 index ec0d2a0a..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover1632.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover1632" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover168.json b/src/main/resources/assets/imsm/blockstates/Remover168.json deleted file mode 100644 index aed24422..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover168.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover168" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover32.json b/src/main/resources/assets/imsm/blockstates/Remover32.json deleted file mode 100644 index 2986e96b..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover32.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover32" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover3216.json b/src/main/resources/assets/imsm/blockstates/Remover3216.json deleted file mode 100644 index 3db8b84f..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover3216.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover3216" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover32256.json b/src/main/resources/assets/imsm/blockstates/Remover32256.json deleted file mode 100644 index 12d06a6a..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover32256.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover32256" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover328.json b/src/main/resources/assets/imsm/blockstates/Remover328.json deleted file mode 100644 index 93b46b1c..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover328.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover328" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover64.json b/src/main/resources/assets/imsm/blockstates/Remover64.json deleted file mode 100644 index 8f2b419e..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover64.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover64" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover64256.json b/src/main/resources/assets/imsm/blockstates/Remover64256.json deleted file mode 100644 index e400bf60..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover64256.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover64256" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover8.json b/src/main/resources/assets/imsm/blockstates/Remover8.json deleted file mode 100644 index 23630581..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover8.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover8" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover816.json b/src/main/resources/assets/imsm/blockstates/Remover816.json deleted file mode 100644 index 9966f146..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover816.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover816" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover8256.json b/src/main/resources/assets/imsm/blockstates/Remover8256.json deleted file mode 100644 index cddb1527..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover8256.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover8256" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/Remover832.json b/src/main/resources/assets/imsm/blockstates/Remover832.json deleted file mode 100644 index 505b7f58..00000000 --- a/src/main/resources/assets/imsm/blockstates/Remover832.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:Remover832" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/RemoverLast.json b/src/main/resources/assets/imsm/blockstates/RemoverLast.json deleted file mode 100644 index 1d5ba18b..00000000 --- a/src/main/resources/assets/imsm/blockstates/RemoverLast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:RemoverLast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBlockNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBlockNorthEastSouthWest.json deleted file mode 100644 index 6e276703..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBlockNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityBlockNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigEast.json deleted file mode 100644 index 2ee376b1..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityBrickBigEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigNorth.json deleted file mode 100644 index 6c7dc869..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityBrickBigNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigSouth.json deleted file mode 100644 index f2b32309..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityBrickBigSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigWest.json deleted file mode 100644 index 39eb02c1..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickBigWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityBrickBigWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.json deleted file mode 100644 index 9b105046..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityBrickSmallNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreyEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreyEast.json deleted file mode 100644 index d6433c85..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreyEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityGreyEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreyNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreyNorth.json deleted file mode 100644 index c0e0971e..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreyNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityGreyNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreySouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreySouth.json deleted file mode 100644 index 0d315856..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreySouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityGreySouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreyWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreyWest.json deleted file mode 100644 index 59e695f4..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityGreyWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityGreyWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernEast.json deleted file mode 100644 index f61e5a56..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityModernEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernNorth.json deleted file mode 100644 index 59a26489..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityModernNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernSouth.json deleted file mode 100644 index 9bb89601..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityModernSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernWest.json deleted file mode 100644 index 6e4732ef..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityModernWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityModernWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityRedEastWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityRedEastWest.json deleted file mode 100644 index edf227aa..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityRedEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityRedEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityRedNorthSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityRedNorthSouth.json deleted file mode 100644 index ff93a0d1..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityRedNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityRedNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityRoundNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityRoundNorthEastSouthWest.json deleted file mode 100644 index 80483c78..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityRoundNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityRoundNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneEast.json deleted file mode 100644 index 572a5cf8..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityStoneEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneEast2.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneEast2.json deleted file mode 100644 index be92ef63..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneEast2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityStoneEast2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneNorth.json deleted file mode 100644 index ea0afde9..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityStoneNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneNorth2.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneNorth2.json deleted file mode 100644 index 7871c5ce..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneNorth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityStoneNorth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneSouth.json deleted file mode 100644 index 21bd5beb..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityStoneSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneSouth2.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneSouth2.json deleted file mode 100644 index 0af3d195..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneSouth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityStoneSouth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneWest.json deleted file mode 100644 index 91082433..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityStoneWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneWest2.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneWest2.json deleted file mode 100644 index 00106b13..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityStoneWest2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityStoneWest2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityYellowNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityYellowNorthEastSouthWest.json deleted file mode 100644 index 5aa029fc..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalEnormous_DensityYellowNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalEnormous_DensityYellowNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueEast.json deleted file mode 100644 index 9f5f6a77..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBlueEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueEastWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueEastWest.json deleted file mode 100644 index aaf4bcd6..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBlueEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueNorth.json deleted file mode 100644 index b7d07709..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBlueNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueNorthSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueNorthSouth.json deleted file mode 100644 index eab1c002..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBlueNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueSouth.json deleted file mode 100644 index d5ebec22..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBlueSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueWest.json deleted file mode 100644 index 9a41c138..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBlueWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBlueWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickEast.json deleted file mode 100644 index f49aede0..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBrickEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickEastWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickEastWest.json deleted file mode 100644 index e2b275cc..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBrickEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickNorth.json deleted file mode 100644 index 9e68418c..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBrickNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickNorthSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickNorthSouth.json deleted file mode 100644 index 6dbd8132..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBrickNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickSouth.json deleted file mode 100644 index ea751e66..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBrickSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickWest.json deleted file mode 100644 index 5530777e..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityBrickWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityBrickWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreyEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreyEast.json deleted file mode 100644 index 316c0590..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreyEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityGreenGreyEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreyNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreyNorth.json deleted file mode 100644 index ce4872f0..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreyNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityGreenGreyNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreySouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreySouth.json deleted file mode 100644 index 111d719f..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreySouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityGreenGreySouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreyWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreyWest.json deleted file mode 100644 index 210a4c4b..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityGreenGreyWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityGreenGreyWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerNorthEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerNorthEast.json deleted file mode 100644 index 2df2dc3e..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityRedCornerNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerNorthWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerNorthWest.json deleted file mode 100644 index a3ba2875..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityRedCornerNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerSouthEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerSouthEast.json deleted file mode 100644 index ddd95d30..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityRedCornerSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerSouthWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerSouthWest.json deleted file mode 100644 index 848d0e90..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedCornerSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityRedCornerSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowEast.json deleted file mode 100644 index 6a0590af..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityRedYellowEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowNorth.json deleted file mode 100644 index 140f262f..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityRedYellowNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowSouth.json deleted file mode 100644 index 9b6c682d..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityRedYellowSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowWest.json deleted file mode 100644 index c62db4b4..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityRedYellowWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityRedYellowWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneEast.json deleted file mode 100644 index 6dfc47d1..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityStoneEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneEast2.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneEast2.json deleted file mode 100644 index cd6bd4ec..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneEast2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityStoneEast2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneNorth.json deleted file mode 100644 index 5b828ead..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityStoneNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneNorth2.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneNorth2.json deleted file mode 100644 index 34b9e916..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneNorth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityStoneNorth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneSouth.json deleted file mode 100644 index c75292cd..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityStoneSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneSouth2.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneSouth2.json deleted file mode 100644 index e4e97190..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneSouth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityStoneSouth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneWest.json deleted file mode 100644 index f20d37a3..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityStoneWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneWest2.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneWest2.json deleted file mode 100644 index 98c0961a..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityStoneWest2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityStoneWest2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowEast.json deleted file mode 100644 index 06728d53..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityYellowEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowNorth.json deleted file mode 100644 index 0c7e3eed..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityYellowNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowSouth.json deleted file mode 100644 index 4b0690a1..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityYellowSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowWest.json deleted file mode 100644 index 62f76e0d..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalHigh_DensityYellowWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalHigh_DensityYellowWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeEast.json deleted file mode 100644 index c915f447..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityBeigeEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeNorth.json deleted file mode 100644 index b9fea025..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityBeigeNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeSouth.json deleted file mode 100644 index 76ca74d3..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityBeigeSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeWest.json deleted file mode 100644 index df13c7cf..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityBeigeWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityBeigeWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanEast.json deleted file mode 100644 index abab50c0..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityCyanEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanNorth.json deleted file mode 100644 index fa8e3691..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityCyanNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanSouth.json deleted file mode 100644 index e8e126bf..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityCyanSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanWest.json deleted file mode 100644 index 82996f91..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityCyanWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityCyanWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenEast.json deleted file mode 100644 index a0851abb..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityGreenEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenEast2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenEast2.json deleted file mode 100644 index bd0ce488..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenEast2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityGreenEast2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenNorth.json deleted file mode 100644 index 81b30ddb..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityGreenNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenNorth2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenNorth2.json deleted file mode 100644 index 3ee13d86..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenNorth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityGreenNorth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenSouth.json deleted file mode 100644 index 563747f8..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityGreenSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenSouth2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenSouth2.json deleted file mode 100644 index ca374b49..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenSouth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityGreenSouth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenWest.json deleted file mode 100644 index 089f2eb6..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityGreenWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenWest2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenWest2.json deleted file mode 100644 index b70656d4..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityGreenWest2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityGreenWest2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueEast.json deleted file mode 100644 index 11fe9f4b..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightBlueEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueEast2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueEast2.json deleted file mode 100644 index 8857dc80..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueEast2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightBlueEast2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueNorth.json deleted file mode 100644 index 11853a30..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightBlueNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueNorth2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueNorth2.json deleted file mode 100644 index 21df9f5d..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueNorth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightBlueNorth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueSouth.json deleted file mode 100644 index 9a9de81c..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightBlueSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueSouth2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueSouth2.json deleted file mode 100644 index fa4d3645..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueSouth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightBlueSouth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueWest.json deleted file mode 100644 index 6a855468..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightBlueWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueWest2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueWest2.json deleted file mode 100644 index 702ef213..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightBlueWest2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightBlueWest2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreyEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreyEast.json deleted file mode 100644 index 83394fae..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreyEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightGreyEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreyNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreyNorth.json deleted file mode 100644 index 42ceae35..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreyNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightGreyNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreySouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreySouth.json deleted file mode 100644 index 33dbc680..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreySouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightGreySouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreyWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreyWest.json deleted file mode 100644 index 445e28ef..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityLightGreyWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityLightGreyWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernEast.json deleted file mode 100644 index 1ca532e2..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityModernEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernNorth.json deleted file mode 100644 index c8b3a33e..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityModernNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernSouth.json deleted file mode 100644 index 47733118..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityModernSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernWest.json deleted file mode 100644 index 621f905a..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityModernWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityModernWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeEast.json deleted file mode 100644 index 92cc8d1c..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityOrangeEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeNorth.json deleted file mode 100644 index 6864dcff..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityOrangeNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeSouth.json deleted file mode 100644 index 9e38f22b..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityOrangeSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeWest.json deleted file mode 100644 index c9c170cd..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityOrangeWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityOrangeWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedEast.json deleted file mode 100644 index 635fe444..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityRedEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedNorth.json deleted file mode 100644 index 5a96a70a..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityRedNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedSouth.json deleted file mode 100644 index 7d6f88c0..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityRedSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedWest.json deleted file mode 100644 index 8a055843..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityRedWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityRedWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneEast.json deleted file mode 100644 index 45259515..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityStoneEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneNorth.json deleted file mode 100644 index e1c46cb8..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityStoneNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneSouth.json deleted file mode 100644 index 3e9d73ca..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityStoneSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneWest.json deleted file mode 100644 index 2fda9ff8..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityStoneWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityStoneWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteEast.json deleted file mode 100644 index 506146be..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityWhiteEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteNorth.json deleted file mode 100644 index a01f6c59..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityWhiteNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteSouth.json deleted file mode 100644 index 4a15ad87..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityWhiteSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteWest.json deleted file mode 100644 index d47ee834..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWhiteWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityWhiteWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodEast.json deleted file mode 100644 index cbe4d022..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityWoodEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodNorth.json deleted file mode 100644 index 062217d4..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityWoodNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodSouth.json deleted file mode 100644 index 0dc49d31..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityWoodSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodWest.json deleted file mode 100644 index 0b2f42a9..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityWoodWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityWoodWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowEast.json deleted file mode 100644 index c30522ab..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityYellowEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowEast2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowEast2.json deleted file mode 100644 index 1663f05e..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowEast2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityYellowEast2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowNorth.json deleted file mode 100644 index 3040c38e..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityYellowNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowNorth2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowNorth2.json deleted file mode 100644 index 423822e2..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowNorth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityYellowNorth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowSouth.json deleted file mode 100644 index a7cbc45a..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityYellowSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowSouth2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowSouth2.json deleted file mode 100644 index c16056dd..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowSouth2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityYellowSouth2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowWest.json deleted file mode 100644 index 8d4c51e7..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityYellowWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowWest2.json b/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowWest2.json deleted file mode 100644 index cb47d579..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalLow_DensityYellowWest2.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalLow_DensityYellowWest2" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenEast.json deleted file mode 100644 index 1fec6d0e..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBlueGreenEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenNorth.json deleted file mode 100644 index 4e78feb2..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBlueGreenNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenSouth.json deleted file mode 100644 index b7c25afc..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBlueGreenSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenWest.json deleted file mode 100644 index 5083d0cf..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueGreenWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBlueGreenWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedEast.json deleted file mode 100644 index 80b3f7f9..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBlueRedEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedNorth.json deleted file mode 100644 index e17628d0..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBlueRedNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedSouth.json deleted file mode 100644 index 2ee2aa0d..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBlueRedSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedWest.json deleted file mode 100644 index 178c573f..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBlueRedWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBlueRedWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickEast.json deleted file mode 100644 index cd790999..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBrickEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickNorth.json deleted file mode 100644 index d86c68a3..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBrickNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickSouth.json deleted file mode 100644 index 8b400e9c..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBrickSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickWest.json deleted file mode 100644 index 8a0aa813..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityBrickWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityBrickWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalEast.json deleted file mode 100644 index d9daebfc..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityHorizontalEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalNorth.json deleted file mode 100644 index 608be431..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityHorizontalNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalSouth.json deleted file mode 100644 index 14cbe804..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityHorizontalSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalWest.json deleted file mode 100644 index 7a38f3b9..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityHorizontalWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityHorizontalWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenEast.json deleted file mode 100644 index cd5791da..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityOrangeGreenEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenNorth.json deleted file mode 100644 index 634e5568..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityOrangeGreenNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenSouth.json deleted file mode 100644 index ea2613e3..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityOrangeGreenSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenWest.json deleted file mode 100644 index 40a23cb5..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityOrangeGreenWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityOrangeGreenWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzEast.json deleted file mode 100644 index ae222292..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityQuartzEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzNorth.json deleted file mode 100644 index 1ade0ad8..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityQuartzNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzSouth.json deleted file mode 100644 index 420837ae..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityQuartzSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzWest.json deleted file mode 100644 index c916b954..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityQuartzWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityQuartzWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenEast.json deleted file mode 100644 index d0530b47..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityRedGreenEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenNorth.json deleted file mode 100644 index c38d9217..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityRedGreenNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenSouth.json deleted file mode 100644 index 8c7f1bab..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityRedGreenSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenWest.json deleted file mode 100644 index 0d0dbceb..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRedGreenWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityRedGreenWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofEast.json deleted file mode 100644 index dd94d940..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityRoofEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofNorth.json deleted file mode 100644 index c3de812f..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityRoofNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofSouth.json deleted file mode 100644 index 3c33c34d..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityRoofSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofWest.json deleted file mode 100644 index 4ce49bb8..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityRoofWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityRoofWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone1EastWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone1EastWest.json deleted file mode 100644 index f8ffc990..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStone1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone1NorthSouth.json deleted file mode 100644 index 27e4d2dc..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStone1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone2EastWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone2EastWest.json deleted file mode 100644 index 3a83a9c3..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone2EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStone2EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone2NorthSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone2NorthSouth.json deleted file mode 100644 index 6e18e49c..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStone2NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStone2NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerNorthEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerNorthEast.json deleted file mode 100644 index d8593e91..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneCornerNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerNorthWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerNorthWest.json deleted file mode 100644 index c2e9e195..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneCornerNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerSouthEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerSouthEast.json deleted file mode 100644 index 56a105f4..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneCornerSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerSouthWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerSouthWest.json deleted file mode 100644 index dd5cce16..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneCornerSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneCornerSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEast.json deleted file mode 100644 index fe6e2bd0..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndNorthEastWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndNorthEastWest.json deleted file mode 100644 index af340e63..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndNorthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneEndNorthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndNorthSouthEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndNorthSouthEast.json deleted file mode 100644 index 97df517f..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndNorthSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneEndNorthSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndNorthSouthWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndNorthSouthWest.json deleted file mode 100644 index 653c248b..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndNorthSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneEndNorthSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndSouthEastWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndSouthEastWest.json deleted file mode 100644 index d1d2fa13..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneEndSouthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneEndSouthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneNorth.json deleted file mode 100644 index 752e8bba..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneSouth.json deleted file mode 100644 index 60b181a3..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneWest.json deleted file mode 100644 index 8a40fd8a..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityStoneWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityStoneWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalEast.json deleted file mode 100644 index b7192b3e..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityVerticalEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalNorth.json deleted file mode 100644 index 4394830e..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityVerticalNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalSouth.json deleted file mode 100644 index 03899f18..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityVerticalSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalWest.json deleted file mode 100644 index 90d97f81..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityVerticalWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityVerticalWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedEast.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedEast.json deleted file mode 100644 index 8fc1389c..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityYellowRedEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedNorth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedNorth.json deleted file mode 100644 index 0ae10fb0..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityYellowRedNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedSouth.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedSouth.json deleted file mode 100644 index 766a2b02..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityYellowRedSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedWest.json b/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedWest.json deleted file mode 100644 index 5188f2e0..00000000 --- a/src/main/resources/assets/imsm/blockstates/ResidentalMedium_DensityYellowRedWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ResidentalMedium_DensityYellowRedWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingHigh_DensityQuartzEastWest.json b/src/main/resources/assets/imsm/blockstates/ShoppingHigh_DensityQuartzEastWest.json deleted file mode 100644 index 44bb7aa5..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingHigh_DensityQuartzEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingHigh_DensityQuartzEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingHigh_DensityQuartzNorthSouth.json b/src/main/resources/assets/imsm/blockstates/ShoppingHigh_DensityQuartzNorthSouth.json deleted file mode 100644 index 8dbab7f1..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingHigh_DensityQuartzNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingHigh_DensityQuartzNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickEast.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickEast.json deleted file mode 100644 index 3bd27b35..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityBrickEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickNorth.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickNorth.json deleted file mode 100644 index 9061d933..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityBrickNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickSouth.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickSouth.json deleted file mode 100644 index 57a27dd9..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityBrickSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickWest.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickWest.json deleted file mode 100644 index 8b24c9a8..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityBrickWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityBrickWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenEast.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenEast.json deleted file mode 100644 index b47335cb..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityGreenEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenNorth.json deleted file mode 100644 index 78b87754..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityGreenNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenSouth.json deleted file mode 100644 index f66710ab..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityGreenSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenWest.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenWest.json deleted file mode 100644 index 7dfee38b..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityGreenWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityGreenWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeEast.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeEast.json deleted file mode 100644 index 8842dd60..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityOrangeEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeNorth.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeNorth.json deleted file mode 100644 index 114215a7..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityOrangeNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeSouth.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeSouth.json deleted file mode 100644 index 41670566..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityOrangeSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeWest.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeWest.json deleted file mode 100644 index 6d5df44f..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityOrangeWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityOrangeWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkEast.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkEast.json deleted file mode 100644 index 1d25e659..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityPinkEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkNorth.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkNorth.json deleted file mode 100644 index 1fd1def0..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityPinkNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkSouth.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkSouth.json deleted file mode 100644 index b8a973d4..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityPinkSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkWest.json b/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkWest.json deleted file mode 100644 index 9b9c0a12..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingLow_DensityPinkWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingLow_DensityPinkWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernEast.json b/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernEast.json deleted file mode 100644 index 02950c63..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingMedium_DensityModernEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernNorth.json b/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernNorth.json deleted file mode 100644 index c46fa52a..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingMedium_DensityModernNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernSouth.json b/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernSouth.json deleted file mode 100644 index f76192ad..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingMedium_DensityModernSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernWest.json b/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernWest.json deleted file mode 100644 index 269d8552..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityModernWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingMedium_DensityModernWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzEast.json b/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzEast.json deleted file mode 100644 index b8bcb380..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingMedium_DensityQuartzEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzNorth.json b/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzNorth.json deleted file mode 100644 index b63bb12b..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingMedium_DensityQuartzNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzSouth.json b/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzSouth.json deleted file mode 100644 index 24de889f..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingMedium_DensityQuartzSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzWest.json b/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzWest.json deleted file mode 100644 index abedde23..00000000 --- a/src/main/resources/assets/imsm/blockstates/ShoppingMedium_DensityQuartzWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:ShoppingMedium_DensityQuartzWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/SurvivalSmallBuilding.json b/src/main/resources/assets/imsm/blockstates/SurvivalSmallBuilding.json deleted file mode 100644 index a6835034..00000000 --- a/src/main/resources/assets/imsm/blockstates/SurvivalSmallBuilding.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:SurvivalSmallBuilding" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/SurvivalWoodenHouse.json b/src/main/resources/assets/imsm/blockstates/SurvivalWoodenHouse.json deleted file mode 100644 index 520fe0c5..00000000 --- a/src/main/resources/assets/imsm/blockstates/SurvivalWoodenHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:SurvivalWoodenHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_EastWestBuilding_North.json b/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_EastWestBuilding_North.json deleted file mode 100644 index 05c9b025..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_EastWestBuilding_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAirportRunway_EastWestBuilding_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_EastWestBuilding_South.json b/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_EastWestBuilding_South.json deleted file mode 100644 index 602db38f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_EastWestBuilding_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAirportRunway_EastWestBuilding_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_NorthSouthBuilding_East.json b/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_NorthSouthBuilding_East.json deleted file mode 100644 index acb4bf10..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_NorthSouthBuilding_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAirportRunway_NorthSouthBuilding_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_NorthSouthBuilding_West.json b/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_NorthSouthBuilding_West.json deleted file mode 100644 index 6afbd024..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAirportRunway_NorthSouthBuilding_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAirportRunway_NorthSouthBuilding_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenue1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportAvenue1EastWest.json deleted file mode 100644 index f20483c4..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenue1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenue1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenue1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportAvenue1NorthSouth.json deleted file mode 100644 index bc021b1b..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenue1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenue1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenue2EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportAvenue2EastWest.json deleted file mode 100644 index f3982059..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenue2EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenue2EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenue2NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportAvenue2NorthSouth.json deleted file mode 100644 index bff91268..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenue2NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenue2NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueEEast.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueEEast.json deleted file mode 100644 index 2b2d7266..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueEEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueEEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueENorth.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueENorth.json deleted file mode 100644 index 3b19bcb4..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueENorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueENorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueESouth.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueESouth.json deleted file mode 100644 index a6d09fb0..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueESouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueESouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueEWest.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueEWest.json deleted file mode 100644 index 33f96dda..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueEWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueEWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueLNorthEast.json deleted file mode 100644 index fb9bc0c4..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueLNorthWest.json deleted file mode 100644 index fb943f92..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueLSouthEast.json deleted file mode 100644 index 82309209..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueLSouthWest.json deleted file mode 100644 index 76108b12..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueTNorthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueTNorthEastWest.json deleted file mode 100644 index 4215e47b..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueTNorthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueTNorthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueTNorthSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueTNorthSouthEast.json deleted file mode 100644 index 81f171bb..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueTNorthSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueTNorthSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueTNorthSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueTNorthSouthWest.json deleted file mode 100644 index e4e5e191..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueTNorthSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueTNorthSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueTSouthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueTSouthEastWest.json deleted file mode 100644 index 1ca1e164..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueTSouthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueTSouthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportAvenueXNorthSouthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportAvenueXNorthSouthEastWest.json deleted file mode 100644 index d998f965..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportAvenueXNorthSouthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportAvenueXNorthSouthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue1EastWest.json deleted file mode 100644 index dfad64c7..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenue1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue1NorthSouth.json deleted file mode 100644 index 7a5ae06e..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenue1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue2NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue2NorthSouth.json deleted file mode 100644 index ed7314f5..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue2NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenue2NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue2SouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue2SouthWest.json deleted file mode 100644 index 614e5dcb..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue2SouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenue2SouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue3EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue3EastWest.json deleted file mode 100644 index 5bf0d7dc..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue3EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenue3EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue3NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue3NorthSouth.json deleted file mode 100644 index 8166b99c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue3NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenue3NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue4EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue4EastWest.json deleted file mode 100644 index e87cdd00..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue4EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenue4EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue4NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue4NorthSouth.json deleted file mode 100644 index 8c328fbd..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenue4NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenue4NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLNorthEast.json deleted file mode 100644 index 067b0b08..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenueLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLNorthWest.json deleted file mode 100644 index ac0903c8..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenueLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLSouthEast.json deleted file mode 100644 index af08b8af..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenueLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLSouthWest.json deleted file mode 100644 index 5770368a..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeAvenueLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeAvenueLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway1EastWest.json deleted file mode 100644 index b2918744..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighway1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway1NorthSouth.json deleted file mode 100644 index aa86de4a..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighway1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway2EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway2EastWest.json deleted file mode 100644 index b0e8407b..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway2EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighway2EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway2NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway2NorthSouth.json deleted file mode 100644 index 72e86554..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway2NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighway2NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway3EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway3EastWest.json deleted file mode 100644 index 38cdff98..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway3EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighway3EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway3NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway3NorthSouth.json deleted file mode 100644 index 6547ad5f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway3NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighway3NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway4EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway4EastWest.json deleted file mode 100644 index 3a4d7304..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway4EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighway4EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway4NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway4NorthSouth.json deleted file mode 100644 index a80ad492..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighway4NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighway4NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLNorthEast.json deleted file mode 100644 index 61950f09..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighwayLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLNorthWest.json deleted file mode 100644 index 256fe521..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighwayLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLSouthEast.json deleted file mode 100644 index 2944ddcb..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighwayLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLSouthWest.json deleted file mode 100644 index 5b7695dc..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeHighwayLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeHighwayLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad1EastWest.json deleted file mode 100644 index dd8b2a97..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeRoad1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad1NorthSouth.json deleted file mode 100644 index e98ac553..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeRoad1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad2EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad2EastWest.json deleted file mode 100644 index a9455112..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad2EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeRoad2EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad2NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad2NorthSouth.json deleted file mode 100644 index e434c5ec..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoad2NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeRoad2NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLNorthEast.json deleted file mode 100644 index 276a0e37..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeRoadLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLNorthWest.json deleted file mode 100644 index 1e29ce2a..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeRoadLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLSouthEast.json deleted file mode 100644 index df135ca8..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeRoadLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLSouthWest.json deleted file mode 100644 index 72773faa..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeRoadLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeRoadLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet1EastWest.json deleted file mode 100644 index f8a8bb40..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeStreet1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet1NorthSouth.json deleted file mode 100644 index 7bc71744..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeStreet1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet2EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet2EastWest.json deleted file mode 100644 index c85d27fa..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet2EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeStreet2EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet2NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet2NorthSouth.json deleted file mode 100644 index fa831eb8..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreet2NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeStreet2NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLNorthEast.json deleted file mode 100644 index 9372e781..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeStreetLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLNorthWest.json deleted file mode 100644 index 6124bd00..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeStreetLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLSouthEast.json deleted file mode 100644 index db5bfe1c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeStreetLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLSouthWest.json deleted file mode 100644 index 4af98ea2..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportBridgeStreetLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportBridgeStreetLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.json deleted file mode 100644 index 190ec294..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.json deleted file mode 100644 index 4145205b..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.json deleted file mode 100644 index 69c6e131..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.json deleted file mode 100644 index f96ccd17..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.json deleted file mode 100644 index a2722ee9..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.json deleted file mode 100644 index 128391e3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.json deleted file mode 100644 index 4d6ead70..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.json deleted file mode 100644 index 104bbe10..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_EastStreet_North.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_EastStreet_North.json deleted file mode 100644 index 13ba36e3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_EastStreet_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetLAvenue_EastStreet_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_EastStreet_South.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_EastStreet_South.json deleted file mode 100644 index 735e0f83..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_EastStreet_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetLAvenue_EastStreet_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.json deleted file mode 100644 index 5f489bf8..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetLAvenue_NorthStreet_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.json deleted file mode 100644 index a96e8cd3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetLAvenue_NorthStreet_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.json deleted file mode 100644 index 82125a4a..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetLAvenue_SouthStreet_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.json deleted file mode 100644 index 8ab799aa..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetLAvenue_SouthStreet_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_WestStreet_North.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_WestStreet_North.json deleted file mode 100644 index 464cdb14..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_WestStreet_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetLAvenue_WestStreet_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_WestStreet_South.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_WestStreet_South.json deleted file mode 100644 index 5c897a37..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetLAvenue_WestStreet_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetLAvenue_WestStreet_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.json deleted file mode 100644 index 6ac4cb0d..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.json deleted file mode 100644 index 1bd8f363..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.json deleted file mode 100644 index ae8f8b1c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.json deleted file mode 100644 index d2a5324e..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.json deleted file mode 100644 index bee9a070..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.json deleted file mode 100644 index 3f9fd625..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.json deleted file mode 100644 index 23b26b5b..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.json deleted file mode 100644 index 54474761..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.json deleted file mode 100644 index 042dd685..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.json deleted file mode 100644 index f90d8c21..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_EastAvenue_West.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_EastAvenue_West.json deleted file mode 100644 index fb1243f8..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_EastAvenue_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_AvenueBridge_EastAvenue_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_NorthAvenue_South.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_NorthAvenue_South.json deleted file mode 100644 index e15b450a..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_NorthAvenue_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_AvenueBridge_NorthAvenue_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_SouthAvenue_North.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_SouthAvenue_North.json deleted file mode 100644 index 9f64e353..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_SouthAvenue_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_AvenueBridge_SouthAvenue_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_WestAvenue_East.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_WestAvenue_East.json deleted file mode 100644 index a281ea4b..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_AvenueBridge_WestAvenue_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_AvenueBridge_WestAvenue_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_EastRoad_West.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_EastRoad_West.json deleted file mode 100644 index 8bf73c32..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_EastRoad_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_RoadBridge_EastRoad_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_NorthRoad_South.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_NorthRoad_South.json deleted file mode 100644 index 660607fb..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_NorthRoad_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_RoadBridge_NorthRoad_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_SouthRoad_North.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_SouthRoad_North.json deleted file mode 100644 index a5950b87..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_SouthRoad_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_RoadBridge_SouthRoad_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_WestRoad_East.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_WestRoad_East.json deleted file mode 100644 index 588b8105..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_RoadBridge_WestRoad_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_RoadBridge_WestRoad_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_EastStreet_West.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_EastStreet_West.json deleted file mode 100644 index a371c68b..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_EastStreet_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_StreetBridge_EastStreet_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_NorthStreet_South.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_NorthStreet_South.json deleted file mode 100644 index d01848e9..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_NorthStreet_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_StreetBridge_NorthStreet_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_SouthStreet_North.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_SouthStreet_North.json deleted file mode 100644 index e1afcbb7..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_SouthStreet_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_StreetBridge_SouthStreet_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_WestStreet_East.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_WestStreet_East.json deleted file mode 100644 index 993d4e1d..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorBridge_StreetBridge_WestStreet_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorBridge_StreetBridge_WestStreet_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.json deleted file mode 100644 index aaa7f447..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.json deleted file mode 100644 index 032fd135..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.json deleted file mode 100644 index ec0ba49e..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.json deleted file mode 100644 index 261831ec..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_EastAvenue_West.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_EastAvenue_West.json deleted file mode 100644 index c643d4a8..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_EastAvenue_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighway_AvenueHighway_EastAvenue_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_NorthAvenue_South.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_NorthAvenue_South.json deleted file mode 100644 index 00cd9558..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_NorthAvenue_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighway_AvenueHighway_NorthAvenue_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_SouthAvenue_North.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_SouthAvenue_North.json deleted file mode 100644 index 00761992..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_SouthAvenue_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighway_AvenueHighway_SouthAvenue_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_WestAvenue_East.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_WestAvenue_East.json deleted file mode 100644 index a367e85d..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_AvenueHighway_WestAvenue_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighway_AvenueHighway_WestAvenue_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.json deleted file mode 100644 index 496770fa..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.json deleted file mode 100644 index 2cb2d170..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.json deleted file mode 100644 index 73c73a89..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.json b/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.json deleted file mode 100644 index eeeb94e6..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourBigEast.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourBigEast.json deleted file mode 100644 index aede213c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourBigEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourBigEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourBigNorth.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourBigNorth.json deleted file mode 100644 index 589e7fd9..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourBigNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourBigNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourBigSouth.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourBigSouth.json deleted file mode 100644 index 5da7db26..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourBigSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourBigSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourBigWest.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourBigWest.json deleted file mode 100644 index 306d6fb7..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourBigWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourBigWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerNorthEast.json deleted file mode 100644 index c65cb77f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide1CornerNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerNorthWest.json deleted file mode 100644 index d4a6c0fc..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide1CornerNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerSouthEast.json deleted file mode 100644 index affb487c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide1CornerSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerSouthWest.json deleted file mode 100644 index e1883670..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide1CornerSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide1CornerSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneEast.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneEast.json deleted file mode 100644 index 1bcc1830..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide2CornerCraneEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneNorth.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneNorth.json deleted file mode 100644 index e92086bd..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide2CornerCraneNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneSouth.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneSouth.json deleted file mode 100644 index db166785..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide2CornerCraneSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneWest.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneWest.json deleted file mode 100644 index da712bf9..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerCraneWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide2CornerCraneWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerEast.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerEast.json deleted file mode 100644 index 3cd26a3d..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide2CornerEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerNorth.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerNorth.json deleted file mode 100644 index a091ae22..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide2CornerNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerSouth.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerSouth.json deleted file mode 100644 index ff503b80..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide2CornerSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerWest.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerWest.json deleted file mode 100644 index 69a68a16..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide2CornerWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide2CornerWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.json deleted file mode 100644 index 50564ae6..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.json deleted file mode 100644 index ff72b47a..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.json deleted file mode 100644 index ad03dc0a..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.json deleted file mode 100644 index 1617a7d7..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallEast.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallEast.json deleted file mode 100644 index 2f799819..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSmallEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallNorth.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallNorth.json deleted file mode 100644 index a23cbcf7..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSmallNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallSouth.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallSouth.json deleted file mode 100644 index d7c9cb5f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSmallSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallWest.json b/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallWest.json deleted file mode 100644 index a321cf46..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHarbourSmallWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHarbourSmallWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighway05EastWestNorthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighway05EastWestNorthside.json deleted file mode 100644 index af4d516a..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighway05EastWestNorthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighway05EastWestNorthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighway05EastWestSouthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighway05EastWestSouthside.json deleted file mode 100644 index 50d66ae3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighway05EastWestSouthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighway05EastWestSouthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighway05NorthSouthEastside.json b/src/main/resources/assets/imsm/blockstates/TransportHighway05NorthSouthEastside.json deleted file mode 100644 index 46b780aa..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighway05NorthSouthEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighway05NorthSouthEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighway05NorthSouthWestside.json b/src/main/resources/assets/imsm/blockstates/TransportHighway05NorthSouthWestside.json deleted file mode 100644 index 34806ec5..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighway05NorthSouthWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighway05NorthSouthWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighway1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighway1EastWest.json deleted file mode 100644 index a69b72e8..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighway1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighway1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighway1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportHighway1NorthSouth.json deleted file mode 100644 index 08baa32f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighway1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighway1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighway2EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighway2EastWest.json deleted file mode 100644 index 771a6e6c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighway2EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighway2EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighway2NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportHighway2NorthSouth.json deleted file mode 100644 index cde3e375..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighway2NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighway2NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayEastWestEastside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayEastWestEastside.json deleted file mode 100644 index f78332e2..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayEastWestEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayDrivewayEastWestEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayEastWestWestside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayEastWestWestside.json deleted file mode 100644 index 9be60bea..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayEastWestWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayDrivewayEastWestWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitEastWestEastside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitEastWestEastside.json deleted file mode 100644 index 13a22bb3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitEastWestEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayDrivewayExitEastWestEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitEastWestWestside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitEastWestWestside.json deleted file mode 100644 index e83912c4..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitEastWestWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayDrivewayExitEastWestWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitNorthSouthNorthside.json deleted file mode 100644 index ecb97fcc..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitNorthSouthNorthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayDrivewayExitNorthSouthNorthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitNorthSouthSouthside.json deleted file mode 100644 index 8bb9a100..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayExitNorthSouthSouthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayDrivewayExitNorthSouthSouthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayNorthSouthNorthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayNorthSouthNorthside.json deleted file mode 100644 index 0c520184..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayNorthSouthNorthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayDrivewayNorthSouthNorthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayNorthSouthSouthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayNorthSouthSouthside.json deleted file mode 100644 index e6673534..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayDrivewayNorthSouthSouthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayDrivewayNorthSouthSouthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayExitEastWestEastside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayExitEastWestEastside.json deleted file mode 100644 index 08f765c9..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayExitEastWestEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayExitEastWestEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayExitEastWestWestside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayExitEastWestWestside.json deleted file mode 100644 index fec2e4a3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayExitEastWestWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayExitEastWestWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayExitNorthSouthNorthside.json deleted file mode 100644 index 10c4ed84..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayExitNorthSouthNorthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayExitNorthSouthNorthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayExitNorthSouthSouthside.json deleted file mode 100644 index 4719e42f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayExitNorthSouthSouthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayExitNorthSouthSouthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05EastWestNorthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05EastWestNorthside.json deleted file mode 100644 index 26485e4e..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05EastWestNorthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloor05EastWestNorthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05EastWestSouthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05EastWestSouthside.json deleted file mode 100644 index 06cb04ae..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05EastWestSouthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloor05EastWestSouthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05NorthSouthEastside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05NorthSouthEastside.json deleted file mode 100644 index 569e0742..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05NorthSouthEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloor05NorthSouthEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05NorthSouthWestside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05NorthSouthWestside.json deleted file mode 100644 index 284b7491..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor05NorthSouthWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloor05NorthSouthWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor1EastWest.json deleted file mode 100644 index 257ba802..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloor1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor1NorthSouth.json deleted file mode 100644 index a071929c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloor1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor2EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor2EastWest.json deleted file mode 100644 index b37536bc..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor2EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloor2EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor2NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor2NorthSouth.json deleted file mode 100644 index 904c2327..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloor2NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloor2NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayEastWestEastside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayEastWestEastside.json deleted file mode 100644 index 23d9e9f6..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayEastWestEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorDrivewayEastWestEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayEastWestWestside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayEastWestWestside.json deleted file mode 100644 index b572f528..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayEastWestWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorDrivewayEastWestWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitEastWestEastside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitEastWestEastside.json deleted file mode 100644 index 17a48275..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitEastWestEastside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorDrivewayExitEastWestEastside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitEastWestWestside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitEastWestWestside.json deleted file mode 100644 index a029442f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitEastWestWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorDrivewayExitEastWestWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitNorthSouthNorthside.json deleted file mode 100644 index a4da23cc..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitNorthSouthNorthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorDrivewayExitNorthSouthNorthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitNorthSouthSouthside.json deleted file mode 100644 index 74d41f40..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayExitNorthSouthSouthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorDrivewayExitNorthSouthSouthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayNorthSouthNorthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayNorthSouthNorthside.json deleted file mode 100644 index ba38c1a3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayNorthSouthNorthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorDrivewayNorthSouthNorthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayNorthSouthSouthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayNorthSouthSouthside.json deleted file mode 100644 index 2681cee9..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorDrivewayNorthSouthSouthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorDrivewayNorthSouthSouthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitEastWestEast.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitEastWestEast.json deleted file mode 100644 index a2389543..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitEastWestEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorExitEastWestEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitEastWestWestside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitEastWestWestside.json deleted file mode 100644 index 74fb9037..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitEastWestWestside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorExitEastWestWestside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitNorthSouthNorthside.json deleted file mode 100644 index 477184f9..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitNorthSouthNorthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorExitNorthSouthNorthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitNorthSouthSouthside.json deleted file mode 100644 index 32d5f1e0..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorExitNorthSouthSouthside.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorExitNorthSouthSouthside" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLNorthEast.json deleted file mode 100644 index 7763579c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLNorthWest.json deleted file mode 100644 index e96cf61c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLSouthEast.json deleted file mode 100644 index 0f769b70..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLSouthWest.json deleted file mode 100644 index e92342e5..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTNorthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTNorthEastWest.json deleted file mode 100644 index 5e5d1761..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTNorthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorTNorthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTNorthSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTNorthSouthEast.json deleted file mode 100644 index f5e31a9b..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTNorthSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorTNorthSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTNorthSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTNorthSouthWest.json deleted file mode 100644 index 4b797700..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTNorthSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorTNorthSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTSouthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTSouthEastWest.json deleted file mode 100644 index 1fd43d84..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorTSouthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorTSouthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorXNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorXNorthEastSouthWest.json deleted file mode 100644 index cf90ccb8..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayFloorXNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayFloorXNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayLNorthEast.json deleted file mode 100644 index 345c29f6..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayLNorthWest.json deleted file mode 100644 index af419ee3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayLSouthEast.json deleted file mode 100644 index 9677987f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayLSouthWest.json deleted file mode 100644 index b2d05a0f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayTNorthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayTNorthEastWest.json deleted file mode 100644 index 8f2f2e81..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayTNorthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayTNorthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayTNorthSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayTNorthSouthEast.json deleted file mode 100644 index 100ed67c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayTNorthSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayTNorthSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayTNorthSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayTNorthSouthWest.json deleted file mode 100644 index e3430b09..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayTNorthSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayTNorthSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayTSouthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayTSouthEastWest.json deleted file mode 100644 index 26153764..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayTSouthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayTSouthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportHighwayXNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportHighwayXNorthEastSouthWest.json deleted file mode 100644 index 4ebad4af..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportHighwayXNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportHighwayXNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_EastTram_West.json b/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_EastTram_West.json deleted file mode 100644 index 489b78c1..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_EastTram_West.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicConnectorHightram_TramHightram_EastTram_West" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_NorthTram_South.json b/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_NorthTram_South.json deleted file mode 100644 index ae3bb691..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_NorthTram_South.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicConnectorHightram_TramHightram_NorthTram_South" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_SouthTram_North.json b/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_SouthTram_North.json deleted file mode 100644 index 30f9e8a8..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_SouthTram_North.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicConnectorHightram_TramHightram_SouthTram_North" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_WestTram_East.json b/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_WestTram_East.json deleted file mode 100644 index 81b9598f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicConnectorHightram_TramHightram_WestTram_East.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicConnectorHightram_TramHightram_WestTram_East" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightram1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightram1EastWest.json deleted file mode 100644 index e8a65877..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightram1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightram1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightram1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightram1NorthSouth.json deleted file mode 100644 index c40a864d..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightram1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightram1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramEEast.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramEEast.json deleted file mode 100644 index 4b74530e..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramEEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramEEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramENorth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramENorth.json deleted file mode 100644 index bce6b162..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramENorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramENorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramESouth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramESouth.json deleted file mode 100644 index ff9911f2..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramESouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramESouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramEWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramEWest.json deleted file mode 100644 index aaebde29..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramEWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramEWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLNorthEast.json deleted file mode 100644 index f1e27485..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLNorthWest.json deleted file mode 100644 index b140fa41..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLSouthEast.json deleted file mode 100644 index f4a6e35c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLSouthWest.json deleted file mode 100644 index 5bb85d13..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramStationEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramStationEastWest.json deleted file mode 100644 index ad78b7a7..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramStationEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramStationEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramStationNorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramStationNorthSouth.json deleted file mode 100644 index 05638c3f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramStationNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramStationNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramXNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicHightramXNorthEastSouthWest.json deleted file mode 100644 index dcee4506..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicHightramXNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicHightramXNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram1EastWest.json deleted file mode 100644 index e711a892..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram1NorthSouth.json deleted file mode 100644 index 91f40fe4..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramEEast.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramEEast.json deleted file mode 100644 index 1928a7b0..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramEEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramEEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramENorth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramENorth.json deleted file mode 100644 index 24d8b795..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramENorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramENorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramESouth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramESouth.json deleted file mode 100644 index 207e24f0..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramESouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramESouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramEWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramEWest.json deleted file mode 100644 index 570a6dcf..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramEWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramEWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramLNorthEast.json deleted file mode 100644 index f2ffc7c3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramLNorthWest.json deleted file mode 100644 index 5311951b..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramLSouthEast.json deleted file mode 100644 index b50ac7c5..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramLSouthWest.json deleted file mode 100644 index ca641271..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramStationEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramStationEastWest.json deleted file mode 100644 index b2288778..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramStationEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramStationEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramStationNorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramStationNorthSouth.json deleted file mode 100644 index 44f04d19..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramStationNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramStationNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTramXNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTramXNorthEastSouthWest.json deleted file mode 100644 index 047b644c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTramXNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTramXNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_road1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_road1EastWest.json deleted file mode 100644 index 937304f9..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_road1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram_on_road1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_road1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_road1NorthSouth.json deleted file mode 100644 index bec5398f..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_road1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram_on_road1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadEEast.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadEEast.json deleted file mode 100644 index 363b90b7..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadEEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram_on_roadEEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadENorth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadENorth.json deleted file mode 100644 index 0ea4e80c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadENorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram_on_roadENorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadESouth.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadESouth.json deleted file mode 100644 index 70ace7c9..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadESouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram_on_roadESouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadEWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadEWest.json deleted file mode 100644 index aac886f2..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadEWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram_on_roadEWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLNorthEast.json deleted file mode 100644 index 2b10ab12..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram_on_roadLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLNorthWest.json deleted file mode 100644 index dc562356..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram_on_roadLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLSouthEast.json deleted file mode 100644 index 7c77d262..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram_on_roadLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLSouthWest.json deleted file mode 100644 index 62f0de88..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportPublicTram_on_roadLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportPublicTram_on_roadLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoad1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportRoad1EastWest.json deleted file mode 100644 index d6d28059..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoad1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoad1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoad1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportRoad1NorthSouth.json deleted file mode 100644 index 2df77188..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoad1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoad1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadEEast.json b/src/main/resources/assets/imsm/blockstates/TransportRoadEEast.json deleted file mode 100644 index c0a89a9c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadEEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadEEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadENorth.json b/src/main/resources/assets/imsm/blockstates/TransportRoadENorth.json deleted file mode 100644 index e6b2b9b4..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadENorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadENorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadESouth.json b/src/main/resources/assets/imsm/blockstates/TransportRoadESouth.json deleted file mode 100644 index 678b07ca..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadESouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadESouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadEWest.json b/src/main/resources/assets/imsm/blockstates/TransportRoadEWest.json deleted file mode 100644 index 43938d91..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadEWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadEWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportRoadLNorthEast.json deleted file mode 100644 index 9634bda8..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportRoadLNorthWest.json deleted file mode 100644 index f5d485fc..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportRoadLSouthEast.json deleted file mode 100644 index 544f6e44..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportRoadLSouthWest.json deleted file mode 100644 index c4f4e3c0..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadTNorthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportRoadTNorthEastWest.json deleted file mode 100644 index a100795e..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadTNorthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadTNorthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadTNorthSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportRoadTNorthSouthEast.json deleted file mode 100644 index 66b63313..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadTNorthSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadTNorthSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadTNorthSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportRoadTNorthSouthWest.json deleted file mode 100644 index 7fbadd4c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadTNorthSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadTNorthSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadTSouthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportRoadTSouthEastWest.json deleted file mode 100644 index fb1b4037..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadTSouthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadTSouthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportRoadXNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportRoadXNorthEastSouthWest.json deleted file mode 100644 index 7add70d3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportRoadXNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportRoadXNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreet1EastWest.json b/src/main/resources/assets/imsm/blockstates/TransportStreet1EastWest.json deleted file mode 100644 index 56e50e29..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreet1EastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreet1EastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreet1NorthSouth.json b/src/main/resources/assets/imsm/blockstates/TransportStreet1NorthSouth.json deleted file mode 100644 index 3ab5a57d..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreet1NorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreet1NorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetEEast.json b/src/main/resources/assets/imsm/blockstates/TransportStreetEEast.json deleted file mode 100644 index cd230f65..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetEEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetEEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetENorth.json b/src/main/resources/assets/imsm/blockstates/TransportStreetENorth.json deleted file mode 100644 index 379a56fa..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetENorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetENorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetESouth.json b/src/main/resources/assets/imsm/blockstates/TransportStreetESouth.json deleted file mode 100644 index 80f119cb..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetESouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetESouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetEWest.json b/src/main/resources/assets/imsm/blockstates/TransportStreetEWest.json deleted file mode 100644 index 8a164b9c..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetEWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetEWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetLNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportStreetLNorthEast.json deleted file mode 100644 index c3eca4dc..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetLNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetLNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetLNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportStreetLNorthWest.json deleted file mode 100644 index 6066267a..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetLNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetLNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetLSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportStreetLSouthEast.json deleted file mode 100644 index 712f41a5..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetLSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetLSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetLSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportStreetLSouthWest.json deleted file mode 100644 index 3e6d8940..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetLSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetLSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetRoundaboutNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportStreetRoundaboutNorthEastSouthWest.json deleted file mode 100644 index 62f4a523..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetRoundaboutNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetRoundaboutNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetTNorthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportStreetTNorthEastWest.json deleted file mode 100644 index 5d18e405..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetTNorthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetTNorthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetTNorthSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportStreetTNorthSouthEast.json deleted file mode 100644 index 78dd7cbb..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetTNorthSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetTNorthSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetTNorthSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportStreetTNorthSouthWest.json deleted file mode 100644 index 2e6261b0..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetTNorthSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetTNorthSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetTSouthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportStreetTSouthEastWest.json deleted file mode 100644 index cc431423..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetTSouthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetTSouthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportStreetXNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportStreetXNorthEastSouthWest.json deleted file mode 100644 index bcdf2b5d..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportStreetXNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportStreetXNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater1CornerNorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportWater1CornerNorthEast.json deleted file mode 100644 index 44363c6d..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater1CornerNorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater1CornerNorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater1CornerNorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportWater1CornerNorthWest.json deleted file mode 100644 index f7a09d84..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater1CornerNorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater1CornerNorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater1CornerSouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportWater1CornerSouthEast.json deleted file mode 100644 index bd6ee02d..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater1CornerSouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater1CornerSouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater1CornerSouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportWater1CornerSouthWest.json deleted file mode 100644 index 7f707d65..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater1CornerSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater1CornerSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater2CornerEast.json b/src/main/resources/assets/imsm/blockstates/TransportWater2CornerEast.json deleted file mode 100644 index 87e839a0..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater2CornerEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater2CornerEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater2CornerNorth.json b/src/main/resources/assets/imsm/blockstates/TransportWater2CornerNorth.json deleted file mode 100644 index 198683f6..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater2CornerNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater2CornerNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater2CornerSouth.json b/src/main/resources/assets/imsm/blockstates/TransportWater2CornerSouth.json deleted file mode 100644 index ba728729..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater2CornerSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater2CornerSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater2CornerWest.json b/src/main/resources/assets/imsm/blockstates/TransportWater2CornerWest.json deleted file mode 100644 index 3eae739d..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater2CornerWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater2CornerWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater3CornerNorthEast_NorthWest_SouthEast.json b/src/main/resources/assets/imsm/blockstates/TransportWater3CornerNorthEast_NorthWest_SouthEast.json deleted file mode 100644 index d29cf207..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater3CornerNorthEast_NorthWest_SouthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater3CornerNorthEast_NorthWest_SouthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater3CornerNorthEast_NorthWest_SouthWest.json b/src/main/resources/assets/imsm/blockstates/TransportWater3CornerNorthEast_NorthWest_SouthWest.json deleted file mode 100644 index b02aa5ef..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater3CornerNorthEast_NorthWest_SouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater3CornerNorthEast_NorthWest_SouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater3CornerSouthEast_SouthWest_NorthEast.json b/src/main/resources/assets/imsm/blockstates/TransportWater3CornerSouthEast_SouthWest_NorthEast.json deleted file mode 100644 index 0615d9c9..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater3CornerSouthEast_SouthWest_NorthEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater3CornerSouthEast_SouthWest_NorthEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater3CornerSouthEast_SouthWest_NorthWest.json b/src/main/resources/assets/imsm/blockstates/TransportWater3CornerSouthEast_SouthWest_NorthWest.json deleted file mode 100644 index d9edd3ec..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater3CornerSouthEast_SouthWest_NorthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater3CornerSouthEast_SouthWest_NorthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/TransportWater4CornerNorthSouthEastWest.json b/src/main/resources/assets/imsm/blockstates/TransportWater4CornerNorthSouthEastWest.json deleted file mode 100644 index 2c91c8f3..00000000 --- a/src/main/resources/assets/imsm/blockstates/TransportWater4CornerNorthSouthEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:TransportWater4CornerNorthSouthEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearEast.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearEast.json deleted file mode 100644 index 68b4a91c..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_NuclearEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearNorth.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearNorth.json deleted file mode 100644 index 916dd364..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_NuclearNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearSouth.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearSouth.json deleted file mode 100644 index 0d49a9b6..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_NuclearSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearWest.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearWest.json deleted file mode 100644 index f06fbfe5..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_NuclearWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_NuclearWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalEast.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalEast.json deleted file mode 100644 index eba29d29..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_OilCoalEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalNorth.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalNorth.json deleted file mode 100644 index 190182b1..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_OilCoalNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalSouth.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalSouth.json deleted file mode 100644 index bc89349f..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_OilCoalSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalWest.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalWest.json deleted file mode 100644 index 5f042661..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_OilCoalWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_OilCoalWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_SunNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_SunNorthEastSouthWest.json deleted file mode 100644 index c6231de8..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_SunNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_SunNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_WindEast.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_WindEast.json deleted file mode 100644 index f2af7370..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_WindEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_WindEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_WindNorth.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_WindNorth.json deleted file mode 100644 index de0acd90..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_WindNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_WindNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_WindSouth.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_WindSouth.json deleted file mode 100644 index 7e5e8cd2..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_WindSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_WindSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPower_WindWest.json b/src/main/resources/assets/imsm/blockstates/UtilityPower_WindWest.json deleted file mode 100644 index aa6aef74..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPower_WindWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPower_WindWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPumpjackEastWest.json b/src/main/resources/assets/imsm/blockstates/UtilityPumpjackEastWest.json deleted file mode 100644 index 8c242dca..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPumpjackEastWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPumpjackEastWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityPumpjackNorthSouth.json b/src/main/resources/assets/imsm/blockstates/UtilityPumpjackNorthSouth.json deleted file mode 100644 index 824a07f2..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityPumpjackNorthSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityPumpjackNorthSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningEast.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningEast.json deleted file mode 100644 index b6faac2a..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_BurningEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningNorth.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningNorth.json deleted file mode 100644 index c9eea1ca..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_BurningNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningSouth.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningSouth.json deleted file mode 100644 index d0c7477d..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_BurningSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningWest.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningWest.json deleted file mode 100644 index e87222fa..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_BurningWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_BurningWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapEast.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapEast.json deleted file mode 100644 index 56ab0503..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_HeapEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapNorth.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapNorth.json deleted file mode 100644 index 9f6b55ae..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_HeapNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapSouth.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapSouth.json deleted file mode 100644 index 6b6afac7..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_HeapSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapWest.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapWest.json deleted file mode 100644 index 2ed46aa4..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_HeapWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_HeapWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleEast.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleEast.json deleted file mode 100644 index 4ea81b1d..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_RecycleEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleNorth.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleNorth.json deleted file mode 100644 index 6e42f1f6..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_RecycleNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleSouth.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleSouth.json deleted file mode 100644 index a589332d..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_RecycleSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleWest.json b/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleWest.json deleted file mode 100644 index d4540bf7..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityScrap_RecycleWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityScrap_RecycleWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpEast.json b/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpEast.json deleted file mode 100644 index 91c2b693..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityWater_PumpEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpNorth.json b/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpNorth.json deleted file mode 100644 index f9606eb2..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityWater_PumpNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpSouth.json b/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpSouth.json deleted file mode 100644 index 9f1fb70e..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityWater_PumpSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpWest.json b/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpWest.json deleted file mode 100644 index 8e8ffc2c..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityWater_PumpWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityWater_PumpWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityWater_TowerNorthEastSouthWest.json b/src/main/resources/assets/imsm/blockstates/UtilityWater_TowerNorthEastSouthWest.json deleted file mode 100644 index bdbb9126..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityWater_TowerNorthEastSouthWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityWater_TowerNorthEastSouthWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentEast.json b/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentEast.json deleted file mode 100644 index d95fd54c..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentEast.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityWater_TreatmentEast" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentNorth.json b/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentNorth.json deleted file mode 100644 index 7db7d819..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentNorth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityWater_TreatmentNorth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentSouth.json b/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentSouth.json deleted file mode 100644 index a518f59a..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentSouth.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityWater_TreatmentSouth" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentWest.json b/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentWest.json deleted file mode 100644 index 9855ff8a..00000000 --- a/src/main/resources/assets/imsm/blockstates/UtilityWater_TreatmentWest.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:UtilityWater_TreatmentWest" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/WoodenHouse.json b/src/main/resources/assets/imsm/blockstates/WoodenHouse.json deleted file mode 100644 index 6352420a..00000000 --- a/src/main/resources/assets/imsm/blockstates/WoodenHouse.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "normal": { "model": "imsm:WoodenHouse" } - } -} diff --git a/src/main/resources/assets/imsm/blockstates/blockairballoon.json b/src/main/resources/assets/imsm/blockstates/blockairballoon.json new file mode 100644 index 00000000..fc69b63c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockairballoon.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockairballoon"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockairplane.json b/src/main/resources/assets/imsm/blockstates/blockairplane.json new file mode 100644 index 00000000..10d36691 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockairplane.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockairplane"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockapplepie.json b/src/main/resources/assets/imsm/blockstates/blockapplepie.json new file mode 100644 index 00000000..b70034b5 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockapplepie.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockapplepie"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockarena1.json b/src/main/resources/assets/imsm/blockstates/blockarena1.json new file mode 100644 index 00000000..57426a7b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockarena1.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockarena1"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockarena2.json b/src/main/resources/assets/imsm/blockstates/blockarena2.json new file mode 100644 index 00000000..9496dd14 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockarena2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockarena2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockatlantis.json b/src/main/resources/assets/imsm/blockstates/blockatlantis.json new file mode 100644 index 00000000..a7c5a1d1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockatlantis.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockatlantis"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockbigpyramid.json b/src/main/resources/assets/imsm/blockstates/blockbigpyramid.json new file mode 100644 index 00000000..ac2c39dc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockbigpyramid.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockbigpyramid"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockbigworld.json b/src/main/resources/assets/imsm/blockstates/blockbigworld.json new file mode 100644 index 00000000..c88ca0c5 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockbigworld.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockbigworld"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockblackrock.json b/src/main/resources/assets/imsm/blockstates/blockblackrock.json new file mode 100644 index 00000000..b3766553 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockblackrock.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockblackrock"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockboat.json b/src/main/resources/assets/imsm/blockstates/blockboat.json new file mode 100644 index 00000000..645464aa --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockboat.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockboat"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockbunker.json b/src/main/resources/assets/imsm/blockstates/blockbunker.json new file mode 100644 index 00000000..63b1249e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockbunker.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockbunker"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockcactus2.json b/src/main/resources/assets/imsm/blockstates/blockcactus2.json new file mode 100644 index 00000000..c1d9cbd1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockcactus2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockcactus2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockcake2.json b/src/main/resources/assets/imsm/blockstates/blockcake2.json new file mode 100644 index 00000000..b6f2eb04 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockcake2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockcake2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockcastletower.json b/src/main/resources/assets/imsm/blockstates/blockcastletower.json new file mode 100644 index 00000000..af919f08 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockcastletower.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockcastletower"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockcave.json b/src/main/resources/assets/imsm/blockstates/blockcave.json new file mode 100644 index 00000000..e39892b7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockcave.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockcave"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockchallengeeight.json b/src/main/resources/assets/imsm/blockstates/blockchallengeeight.json new file mode 100644 index 00000000..352b120a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockchallengeeight.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockchallengeeight"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockchallengefive.json b/src/main/resources/assets/imsm/blockstates/blockchallengefive.json new file mode 100644 index 00000000..bb1c202b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockchallengefive.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockchallengefive"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockchallengefour.json b/src/main/resources/assets/imsm/blockstates/blockchallengefour.json new file mode 100644 index 00000000..a94de314 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockchallengefour.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockchallengefour"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockchallengenine.json b/src/main/resources/assets/imsm/blockstates/blockchallengenine.json new file mode 100644 index 00000000..7b14544e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockchallengenine.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockchallengenine"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockchallengeone.json b/src/main/resources/assets/imsm/blockstates/blockchallengeone.json new file mode 100644 index 00000000..19dbec5c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockchallengeone.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockchallengeone"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockchallengeseven.json b/src/main/resources/assets/imsm/blockstates/blockchallengeseven.json new file mode 100644 index 00000000..b9129f9f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockchallengeseven.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockchallengeseven"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockchallengesix.json b/src/main/resources/assets/imsm/blockstates/blockchallengesix.json new file mode 100644 index 00000000..85997a27 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockchallengesix.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockchallengesix"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockchallengeten.json b/src/main/resources/assets/imsm/blockstates/blockchallengeten.json new file mode 100644 index 00000000..a9737e21 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockchallengeten.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockchallengeten"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockchallengethree.json b/src/main/resources/assets/imsm/blockstates/blockchallengethree.json new file mode 100644 index 00000000..5af293fc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockchallengethree.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockchallengethree"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockchallengetwo.json b/src/main/resources/assets/imsm/blockstates/blockchallengetwo.json new file mode 100644 index 00000000..19c81396 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockchallengetwo.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockchallengetwo"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockcheckerboard.json b/src/main/resources/assets/imsm/blockstates/blockcheckerboard.json new file mode 100644 index 00000000..81a8b005 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockcheckerboard.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockcheckerboard"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockcloud.json b/src/main/resources/assets/imsm/blockstates/blockcloud.json new file mode 100644 index 00000000..063d6f04 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockcloud.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockcloud"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockcolumn.json b/src/main/resources/assets/imsm/blockstates/blockcolumn.json new file mode 100644 index 00000000..f9146be4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockcolumn.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockcolumn"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockcosyhouse.json b/src/main/resources/assets/imsm/blockstates/blockcosyhouse.json new file mode 100644 index 00000000..16e34752 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockcosyhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockcosyhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockdungeon.json b/src/main/resources/assets/imsm/blockstates/blockdungeon.json new file mode 100644 index 00000000..bf082a54 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockdungeon.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockdungeon"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockenchantmentroom.json b/src/main/resources/assets/imsm/blockstates/blockenchantmentroom.json new file mode 100644 index 00000000..094b504e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockenchantmentroom.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockenchantmentroom"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockfarm.json b/src/main/resources/assets/imsm/blockstates/blockfarm.json new file mode 100644 index 00000000..21a3c24e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockfarm.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockfarm"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockfarm2.json b/src/main/resources/assets/imsm/blockstates/blockfarm2.json new file mode 100644 index 00000000..39e31901 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockfarm2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockfarm2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockfarm3.json b/src/main/resources/assets/imsm/blockstates/blockfarm3.json new file mode 100644 index 00000000..4cbe0fef --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockfarm3.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockfarm3"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockfarm4.json b/src/main/resources/assets/imsm/blockstates/blockfarm4.json new file mode 100644 index 00000000..92a54dee --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockfarm4.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockfarm4"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockferriswheel.json b/src/main/resources/assets/imsm/blockstates/blockferriswheel.json new file mode 100644 index 00000000..a96b2fe8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockferriswheel.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockferriswheel"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockfloatingsphere.json b/src/main/resources/assets/imsm/blockstates/blockfloatingsphere.json new file mode 100644 index 00000000..0fcd834c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockfloatingsphere.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockfloatingsphere"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockgianttree.json b/src/main/resources/assets/imsm/blockstates/blockgianttree.json new file mode 100644 index 00000000..d98e7b6a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockgianttree.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockgianttree"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockglasshouse.json b/src/main/resources/assets/imsm/blockstates/blockglasshouse.json new file mode 100644 index 00000000..5c19fdfd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockglasshouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockglasshouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockhountedhouse.json b/src/main/resources/assets/imsm/blockstates/blockhountedhouse.json new file mode 100644 index 00000000..e9a961eb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockhountedhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockhountedhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockhouse.json b/src/main/resources/assets/imsm/blockstates/blockhouse.json new file mode 100644 index 00000000..56a0cea9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockhouse2.json b/src/main/resources/assets/imsm/blockstates/blockhouse2.json new file mode 100644 index 00000000..6558ec74 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockhouse2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockhouse2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockhousetrap1.json b/src/main/resources/assets/imsm/blockstates/blockhousetrap1.json new file mode 100644 index 00000000..33c69342 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockhousetrap1.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockhousetrap1"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockhousetrap2.json b/src/main/resources/assets/imsm/blockstates/blockhousetrap2.json new file mode 100644 index 00000000..e71a5827 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockhousetrap2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockhousetrap2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockleaves2.json b/src/main/resources/assets/imsm/blockstates/blockleaves2.json new file mode 100644 index 00000000..9539db67 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockleaves2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockleaves2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blocklighthouse.json b/src/main/resources/assets/imsm/blockstates/blocklighthouse.json new file mode 100644 index 00000000..8c4091cb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blocklighthouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blocklighthouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockmegahouse.json b/src/main/resources/assets/imsm/blockstates/blockmegahouse.json new file mode 100644 index 00000000..c910ed27 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockmegahouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockmegahouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockmegahouse2.json b/src/main/resources/assets/imsm/blockstates/blockmegahouse2.json new file mode 100644 index 00000000..83417ca9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockmegahouse2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockmegahouse2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockmegatower.json b/src/main/resources/assets/imsm/blockstates/blockmegatower.json new file mode 100644 index 00000000..7ce33991 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockmegatower.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockmegatower"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockpeniron.json b/src/main/resources/assets/imsm/blockstates/blockpeniron.json new file mode 100644 index 00000000..3b52700d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockpeniron.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockpeniron"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockpennether.json b/src/main/resources/assets/imsm/blockstates/blockpennether.json new file mode 100644 index 00000000..5541f5e3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockpennether.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockpennether"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockpenwood.json b/src/main/resources/assets/imsm/blockstates/blockpenwood.json new file mode 100644 index 00000000..84130c7e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockpenwood.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockpenwood"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockplane.json b/src/main/resources/assets/imsm/blockstates/blockplane.json new file mode 100644 index 00000000..fb98d475 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockplane.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockplane"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockprison.json b/src/main/resources/assets/imsm/blockstates/blockprison.json new file mode 100644 index 00000000..5a272896 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockprison.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockprison"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockprison2.json b/src/main/resources/assets/imsm/blockstates/blockprison2.json new file mode 100644 index 00000000..6ac9dd16 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockprison2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockprison2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockpyramid.json b/src/main/resources/assets/imsm/blockstates/blockpyramid.json new file mode 100644 index 00000000..41a0300a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockpyramid.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockpyramid"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockrollercoaster.json b/src/main/resources/assets/imsm/blockstates/blockrollercoaster.json new file mode 100644 index 00000000..04685154 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockrollercoaster.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockrollercoaster"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockrollercoaster2.json b/src/main/resources/assets/imsm/blockstates/blockrollercoaster2.json new file mode 100644 index 00000000..ffc9fea4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockrollercoaster2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockrollercoaster2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockshelter.json b/src/main/resources/assets/imsm/blockstates/blockshelter.json new file mode 100644 index 00000000..ed64064f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockshelter.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockshelter"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockskyscraper.json b/src/main/resources/assets/imsm/blockstates/blockskyscraper.json new file mode 100644 index 00000000..0c801577 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockskyscraper.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockskyscraper"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockskyscraper2.json b/src/main/resources/assets/imsm/blockstates/blockskyscraper2.json new file mode 100644 index 00000000..ae37d0d6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockskyscraper2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockskyscraper2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockstadium.json b/src/main/resources/assets/imsm/blockstates/blockstadium.json new file mode 100644 index 00000000..46be7bae --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockstadium.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockstadium"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockstadium2.json b/src/main/resources/assets/imsm/blockstates/blockstadium2.json new file mode 100644 index 00000000..f7a90192 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockstadium2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockstadium2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockstandardbrickhouse.json b/src/main/resources/assets/imsm/blockstates/blockstandardbrickhouse.json new file mode 100644 index 00000000..1db56af8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockstandardbrickhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockstandardbrickhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockstorehouse.json b/src/main/resources/assets/imsm/blockstates/blockstorehouse.json new file mode 100644 index 00000000..c8ec38da --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockstorehouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockstorehouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockstreet.json b/src/main/resources/assets/imsm/blockstates/blockstreet.json new file mode 100644 index 00000000..025b693c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockstreet.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockstreet"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blocktorch2.json b/src/main/resources/assets/imsm/blockstates/blocktorch2.json new file mode 100644 index 00000000..8901ce68 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blocktorch2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blocktorch2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blocktouchable.json b/src/main/resources/assets/imsm/blockstates/blocktouchable.json new file mode 100644 index 00000000..bad4195d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blocktouchable.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blocktouchable"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blocktower.json b/src/main/resources/assets/imsm/blockstates/blocktower.json new file mode 100644 index 00000000..224bdd51 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blocktower.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blocktower"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockunlimited.json b/src/main/resources/assets/imsm/blockstates/blockunlimited.json new file mode 100644 index 00000000..21ba7f26 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockunlimited.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockunlimited"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/blockwaterslide.json b/src/main/resources/assets/imsm/blockstates/blockwaterslide.json new file mode 100644 index 00000000..29a4c301 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/blockwaterslide.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/blockwaterslide"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/christmashouse.json b/src/main/resources/assets/imsm/blockstates/christmashouse.json new file mode 100644 index 00000000..f950ca1a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/christmashouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/christmashouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/christmashouse2.json b/src/main/resources/assets/imsm/blockstates/christmashouse2.json new file mode 100644 index 00000000..988f3d70 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/christmashouse2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/christmashouse2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/christmashouse3.json b/src/main/resources/assets/imsm/blockstates/christmashouse3.json new file mode 100644 index 00000000..a76f54b4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/christmashouse3.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/christmashouse3"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/christmasmarket.json b/src/main/resources/assets/imsm/blockstates/christmasmarket.json new file mode 100644 index 00000000..30ae1510 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/christmasmarket.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/christmasmarket"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/christmassleigh.json b/src/main/resources/assets/imsm/blockstates/christmassleigh.json new file mode 100644 index 00000000..4dde066f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/christmassleigh.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/christmassleigh"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/christmassleigh2.json b/src/main/resources/assets/imsm/blockstates/christmassleigh2.json new file mode 100644 index 00000000..28342809 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/christmassleigh2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/christmassleigh2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/christmassnowman.json b/src/main/resources/assets/imsm/blockstates/christmassnowman.json new file mode 100644 index 00000000..f3f0f5da --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/christmassnowman.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/christmassnowman"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/christmastree.json b/src/main/resources/assets/imsm/blockstates/christmastree.json new file mode 100644 index 00000000..ca8a9d0f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/christmastree.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/christmastree"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationgrassnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/decorationgrassnortheastsouthwest.json new file mode 100644 index 00000000..cb30d15b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationgrassnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationgrassnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparkeast.json b/src/main/resources/assets/imsm/blockstates/decorationparkeast.json new file mode 100644 index 00000000..e441bb15 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparkeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparkeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparkinggarageeast.json b/src/main/resources/assets/imsm/blockstates/decorationparkinggarageeast.json new file mode 100644 index 00000000..e8d001ab --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparkinggarageeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparkinggarageeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparkinggaragenorth.json b/src/main/resources/assets/imsm/blockstates/decorationparkinggaragenorth.json new file mode 100644 index 00000000..ffcb0871 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparkinggaragenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparkinggaragenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparkinggaragesouth.json b/src/main/resources/assets/imsm/blockstates/decorationparkinggaragesouth.json new file mode 100644 index 00000000..39474ec9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparkinggaragesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparkinggaragesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparkinggaragewest.json b/src/main/resources/assets/imsm/blockstates/decorationparkinggaragewest.json new file mode 100644 index 00000000..0ee35fa4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparkinggaragewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparkinggaragewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparkinglotseast.json b/src/main/resources/assets/imsm/blockstates/decorationparkinglotseast.json new file mode 100644 index 00000000..bfb02db7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparkinglotseast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparkinglotseast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparkinglotsnorth.json b/src/main/resources/assets/imsm/blockstates/decorationparkinglotsnorth.json new file mode 100644 index 00000000..71069a4a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparkinglotsnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparkinglotsnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparkinglotssouth.json b/src/main/resources/assets/imsm/blockstates/decorationparkinglotssouth.json new file mode 100644 index 00000000..8175455c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparkinglotssouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparkinglotssouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparkinglotswest.json b/src/main/resources/assets/imsm/blockstates/decorationparkinglotswest.json new file mode 100644 index 00000000..5bd50281 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparkinglotswest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparkinglotswest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparknorth.json b/src/main/resources/assets/imsm/blockstates/decorationparknorth.json new file mode 100644 index 00000000..337e3ec5 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparknorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparknorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparksouth.json b/src/main/resources/assets/imsm/blockstates/decorationparksouth.json new file mode 100644 index 00000000..0c08995c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparksouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparksouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationparkwest.json b/src/main/resources/assets/imsm/blockstates/decorationparkwest.json new file mode 100644 index 00000000..bcb997a8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationparkwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationparkwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationplazafountainnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/decorationplazafountainnortheastsouthwest.json new file mode 100644 index 00000000..5762945a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationplazafountainnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationplazafountainnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationplazanortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/decorationplazanortheastsouthwest.json new file mode 100644 index 00000000..1813ffc6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationplazanortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationplazanortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationsoccerstadiumeastwest.json b/src/main/resources/assets/imsm/blockstates/decorationsoccerstadiumeastwest.json new file mode 100644 index 00000000..913a6de3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationsoccerstadiumeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationsoccerstadiumeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationsoccerstadiumnorthsouth.json b/src/main/resources/assets/imsm/blockstates/decorationsoccerstadiumnorthsouth.json new file mode 100644 index 00000000..4ef67788 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationsoccerstadiumnorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationsoccerstadiumnorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationsquarenortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/decorationsquarenortheastsouthwest.json new file mode 100644 index 00000000..d8aca664 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationsquarenortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationsquarenortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationsquaretreeeast.json b/src/main/resources/assets/imsm/blockstates/decorationsquaretreeeast.json new file mode 100644 index 00000000..399ccb89 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationsquaretreeeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationsquaretreeeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationsquaretreenorth.json b/src/main/resources/assets/imsm/blockstates/decorationsquaretreenorth.json new file mode 100644 index 00000000..3cca56ca --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationsquaretreenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationsquaretreenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationsquaretreesouth.json b/src/main/resources/assets/imsm/blockstates/decorationsquaretreesouth.json new file mode 100644 index 00000000..e2e52218 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationsquaretreesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationsquaretreesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/decorationsquaretreewest.json b/src/main/resources/assets/imsm/blockstates/decorationsquaretreewest.json new file mode 100644 index 00000000..9ae6560a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/decorationsquaretreewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/decorationsquaretreewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/foodcarrotseastwest.json b/src/main/resources/assets/imsm/blockstates/foodcarrotseastwest.json new file mode 100644 index 00000000..cb2d49b0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/foodcarrotseastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/foodcarrotseastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/foodcarrotsnorthsouth.json b/src/main/resources/assets/imsm/blockstates/foodcarrotsnorthsouth.json new file mode 100644 index 00000000..8c4b69b4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/foodcarrotsnorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/foodcarrotsnorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/foodfarmeast.json b/src/main/resources/assets/imsm/blockstates/foodfarmeast.json new file mode 100644 index 00000000..72e735fd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/foodfarmeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/foodfarmeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/foodfarmnorth.json b/src/main/resources/assets/imsm/blockstates/foodfarmnorth.json new file mode 100644 index 00000000..bba9e17a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/foodfarmnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/foodfarmnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/foodfarmsouth.json b/src/main/resources/assets/imsm/blockstates/foodfarmsouth.json new file mode 100644 index 00000000..24029847 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/foodfarmsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/foodfarmsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/foodfarmwest.json b/src/main/resources/assets/imsm/blockstates/foodfarmwest.json new file mode 100644 index 00000000..2b54211e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/foodfarmwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/foodfarmwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/foodpotatoesnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/foodpotatoesnortheastsouthwest.json new file mode 100644 index 00000000..5f6d2db8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/foodpotatoesnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/foodpotatoesnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/foodstableeastwest.json b/src/main/resources/assets/imsm/blockstates/foodstableeastwest.json new file mode 100644 index 00000000..f25e58d3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/foodstableeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/foodstableeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/foodstablenorthsouth.json b/src/main/resources/assets/imsm/blockstates/foodstablenorthsouth.json new file mode 100644 index 00000000..c509b12d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/foodstablenorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/foodstablenorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/foodwheatnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/foodwheatnortheastsouthwest.json new file mode 100644 index 00000000..9b1bfdc0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/foodwheatnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/foodwheatnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densityblueeast.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densityblueeast.json new file mode 100644 index 00000000..02b900e8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densityblueeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densityblueeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitybluenorth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybluenorth.json new file mode 100644 index 00000000..43e3b377 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybluenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitybluenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitybluesouth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybluesouth.json new file mode 100644 index 00000000..a5a80151 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybluesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitybluesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitybluewest.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybluewest.json new file mode 100644 index 00000000..41c254dd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybluewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitybluewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitybrickeast.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybrickeast.json new file mode 100644 index 00000000..1d1fb9f0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybrickeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitybrickeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitybricknorth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybricknorth.json new file mode 100644 index 00000000..d03d3e16 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybricknorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitybricknorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitybricksouth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybricksouth.json new file mode 100644 index 00000000..e54c65e8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybricksouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitybricksouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitybrickwest.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybrickwest.json new file mode 100644 index 00000000..152d04ba --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitybrickwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitybrickwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneyeast.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneyeast.json new file mode 100644 index 00000000..9738bcec --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneyeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitychimneyeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneynorth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneynorth.json new file mode 100644 index 00000000..e48e0f9a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneynorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitychimneynorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneysouth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneysouth.json new file mode 100644 index 00000000..67850744 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneysouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitychimneysouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneywest.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneywest.json new file mode 100644 index 00000000..5cf9725e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitychimneywest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitychimneywest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipeast.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipeast.json new file mode 100644 index 00000000..eb0b4f25 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitycomputerchipeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipnorth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipnorth.json new file mode 100644 index 00000000..ffff1493 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitycomputerchipnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipsouth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipsouth.json new file mode 100644 index 00000000..785dfeac --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitycomputerchipsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipwest.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipwest.json new file mode 100644 index 00000000..6342b2fe --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitycomputerchipwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitycomputerchipwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreeneast.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreeneast.json new file mode 100644 index 00000000..f91d940d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreeneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitygreeneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreennorth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreennorth.json new file mode 100644 index 00000000..bca0e0f7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreennorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitygreennorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreensouth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreensouth.json new file mode 100644 index 00000000..f4da300d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreensouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitygreensouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreenwest.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreenwest.json new file mode 100644 index 00000000..d45aecb6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitygreenwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitygreenwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightblueeast.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightblueeast.json new file mode 100644 index 00000000..2c93cfa8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightblueeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitylightblueeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightbluenorth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightbluenorth.json new file mode 100644 index 00000000..1d648b3c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightbluenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitylightbluenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightbluesouth.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightbluesouth.json new file mode 100644 index 00000000..662d83ee --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightbluesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitylightbluesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightbluewest.json b/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightbluewest.json new file mode 100644 index 00000000..10a9b3f7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industryhigh_densitylightbluewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industryhigh_densitylightbluewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingeast.json b/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingeast.json new file mode 100644 index 00000000..1cacc4c3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_density3dprintingeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingnorth.json b/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingnorth.json new file mode 100644 index 00000000..b4494471 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_density3dprintingnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingsouth.json b/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingsouth.json new file mode 100644 index 00000000..f536651d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_density3dprintingsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingwest.json b/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingwest.json new file mode 100644 index 00000000..70f2de00 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_density3dprintingwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_density3dprintingwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densityblueeast.json b/src/main/resources/assets/imsm/blockstates/industrylow_densityblueeast.json new file mode 100644 index 00000000..4285a37e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densityblueeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densityblueeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybluenorth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybluenorth.json new file mode 100644 index 00000000..a71a25e9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybluenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybluenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybluesouth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybluesouth.json new file mode 100644 index 00000000..660fc84c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybluesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybluesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybluewest.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybluewest.json new file mode 100644 index 00000000..c58ff4ba --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybluewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybluewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrickeast.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrickeast.json new file mode 100644 index 00000000..269324ba --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrickeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrickeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrickeastwest.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrickeastwest.json new file mode 100644 index 00000000..9486c4b6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrickeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrickeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybricknorth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybricknorth.json new file mode 100644 index 00000000..7089bae7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybricknorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybricknorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybricknorthsouth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybricknorthsouth.json new file mode 100644 index 00000000..e22d1d4a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybricknorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybricknorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybricksouth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybricksouth.json new file mode 100644 index 00000000..ae0fda83 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybricksouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybricksouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrickwest.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrickwest.json new file mode 100644 index 00000000..91777799 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrickwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrickwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrowneast.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrowneast.json new file mode 100644 index 00000000..2a5fd4ff --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrowneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrowneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrowneast2.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrowneast2.json new file mode 100644 index 00000000..9252f062 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrowneast2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrowneast2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownnorth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownnorth.json new file mode 100644 index 00000000..d61897a7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrownnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownnorth2.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownnorth2.json new file mode 100644 index 00000000..121edfc0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownnorth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrownnorth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownsouth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownsouth.json new file mode 100644 index 00000000..16256670 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrownsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownsouth2.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownsouth2.json new file mode 100644 index 00000000..c4f2e5c3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownsouth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrownsouth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownwest.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownwest.json new file mode 100644 index 00000000..9044fda1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrownwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownwest2.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownwest2.json new file mode 100644 index 00000000..9a5ec489 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitybrownwest2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitybrownwest2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneyeast.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneyeast.json new file mode 100644 index 00000000..ec40c680 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneyeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitychimneyeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneynorth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneynorth.json new file mode 100644 index 00000000..e15fdc4a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneynorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitychimneynorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneysouth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneysouth.json new file mode 100644 index 00000000..58036ff0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneysouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitychimneysouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneywest.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneywest.json new file mode 100644 index 00000000..f5c0104f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitychimneywest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitychimneywest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitygreeneast.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitygreeneast.json new file mode 100644 index 00000000..4c90178f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitygreeneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitygreeneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitygreennorth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitygreennorth.json new file mode 100644 index 00000000..1b41f4dc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitygreennorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitygreennorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitygreensouth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitygreensouth.json new file mode 100644 index 00000000..54867bc8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitygreensouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitygreensouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitygreenwest.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitygreenwest.json new file mode 100644 index 00000000..933aa5cf --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitygreenwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitygreenwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densityironeast.json b/src/main/resources/assets/imsm/blockstates/industrylow_densityironeast.json new file mode 100644 index 00000000..1de881fb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densityironeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densityironeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densityironnorth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densityironnorth.json new file mode 100644 index 00000000..1f43c299 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densityironnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densityironnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densityironsouth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densityironsouth.json new file mode 100644 index 00000000..14167721 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densityironsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densityironsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densityironwest.json b/src/main/resources/assets/imsm/blockstates/industrylow_densityironwest.json new file mode 100644 index 00000000..eac09dff --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densityironwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densityironwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennaeast.json b/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennaeast.json new file mode 100644 index 00000000..b0f583c2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennaeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densityparabolicantennaeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennanorth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennanorth.json new file mode 100644 index 00000000..f5a6819f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennanorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densityparabolicantennanorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennasouth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennasouth.json new file mode 100644 index 00000000..4aed1495 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennasouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densityparabolicantennasouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennawest.json b/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennawest.json new file mode 100644 index 00000000..c6fe3e04 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densityparabolicantennawest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densityparabolicantennawest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitytanknortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitytanknortheastsouthwest.json new file mode 100644 index 00000000..193d21ec --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitytanknortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitytanknortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopeeast.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopeeast.json new file mode 100644 index 00000000..8dd52f0c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopeeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitytelescopeeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopenorth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopenorth.json new file mode 100644 index 00000000..90229c38 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitytelescopenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopesouth.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopesouth.json new file mode 100644 index 00000000..9a43ffdb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitytelescopesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopewest.json b/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopewest.json new file mode 100644 index 00000000..7f9d9176 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrylow_densitytelescopewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrylow_densitytelescopewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densityblueeast.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densityblueeast.json new file mode 100644 index 00000000..1f8546cf --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densityblueeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densityblueeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybluenorth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybluenorth.json new file mode 100644 index 00000000..5c690be1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybluenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybluenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybluesouth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybluesouth.json new file mode 100644 index 00000000..d8b4d6fb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybluesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybluesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybluewest.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybluewest.json new file mode 100644 index 00000000..d0b67ce3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybluewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybluewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrickeast.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrickeast.json new file mode 100644 index 00000000..0cb23fcb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrickeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybrickeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybricknorth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybricknorth.json new file mode 100644 index 00000000..9feef869 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybricknorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybricknorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybricksouth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybricksouth.json new file mode 100644 index 00000000..940f1486 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybricksouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybricksouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrickwest.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrickwest.json new file mode 100644 index 00000000..44aa3246 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrickwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybrickwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrowneast.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrowneast.json new file mode 100644 index 00000000..841ff444 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrowneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybrowneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrownnorth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrownnorth.json new file mode 100644 index 00000000..169b9f69 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrownnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybrownnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrownsouth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrownsouth.json new file mode 100644 index 00000000..f473818a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrownsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybrownsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrownwest.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrownwest.json new file mode 100644 index 00000000..637639a4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitybrownwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitybrownwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitychemicalpresseastwest.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychemicalpresseastwest.json new file mode 100644 index 00000000..745324bb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychemicalpresseastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitychemicalpresseastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitychemicalpressnorthsouth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychemicalpressnorthsouth.json new file mode 100644 index 00000000..7bb655e5 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychemicalpressnorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitychemicalpressnorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneyeast.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneyeast.json new file mode 100644 index 00000000..9531bd8b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneyeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitychimneyeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneynorth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneynorth.json new file mode 100644 index 00000000..22bbb98f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneynorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitychimneynorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneysouth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneysouth.json new file mode 100644 index 00000000..a5c428c6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneysouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitychimneysouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneywest.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneywest.json new file mode 100644 index 00000000..bdca4601 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitychimneywest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitychimneywest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreeneast.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreeneast.json new file mode 100644 index 00000000..e40eadaf --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreeneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitygreeneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreennorth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreennorth.json new file mode 100644 index 00000000..32cf1a7f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreennorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitygreennorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreensouth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreensouth.json new file mode 100644 index 00000000..7814b2f4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreensouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitygreensouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreenwest.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreenwest.json new file mode 100644 index 00000000..92ebafc0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitygreenwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitygreenwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densityiceeast.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densityiceeast.json new file mode 100644 index 00000000..d7ba170c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densityiceeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densityiceeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densityicenorth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densityicenorth.json new file mode 100644 index 00000000..9edfdb7c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densityicenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densityicenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densityicesouth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densityicesouth.json new file mode 100644 index 00000000..95c058cf --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densityicesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densityicesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densityicewest.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densityicewest.json new file mode 100644 index 00000000..07e598ef --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densityicewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densityicewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstoneeast.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstoneeast.json new file mode 100644 index 00000000..e6a895ea --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstoneeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitysandstoneeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstonenorth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstonenorth.json new file mode 100644 index 00000000..c1384e7c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstonenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitysandstonenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstonesouth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstonesouth.json new file mode 100644 index 00000000..8da6168a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstonesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitysandstonesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstonewest.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstonewest.json new file mode 100644 index 00000000..c133038e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitysandstonewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitysandstonewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitytankeast.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitytankeast.json new file mode 100644 index 00000000..7e35c7aa --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitytankeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitytankeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitytanknorth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitytanknorth.json new file mode 100644 index 00000000..64ac89d2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitytanknorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitytanknorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitytanksouth.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitytanksouth.json new file mode 100644 index 00000000..78348091 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitytanksouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitytanksouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/industrymedium_densitytankwest.json b/src/main/resources/assets/imsm/blockstates/industrymedium_densitytankwest.json new file mode 100644 index 00000000..967b4018 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/industrymedium_densitytankwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/industrymedium_densitytankwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/live_bus.json b/src/main/resources/assets/imsm/blockstates/live_bus.json new file mode 100644 index 00000000..bfbcd95c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/live_bus.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/live_bus"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/live_bus2.json b/src/main/resources/assets/imsm/blockstates/live_bus2.json new file mode 100644 index 00000000..a13c8433 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/live_bus2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/live_bus2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/live_cinema.json b/src/main/resources/assets/imsm/blockstates/live_cinema.json new file mode 100644 index 00000000..7e8cfc39 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/live_cinema.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/live_cinema"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/live_fair_freefall.json b/src/main/resources/assets/imsm/blockstates/live_fair_freefall.json new file mode 100644 index 00000000..51925100 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/live_fair_freefall.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/live_fair_freefall"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/live_flying_helicopter.json b/src/main/resources/assets/imsm/blockstates/live_flying_helicopter.json new file mode 100644 index 00000000..381a3eca --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/live_flying_helicopter.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/live_flying_helicopter"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/live_helicopter.json b/src/main/resources/assets/imsm/blockstates/live_helicopter.json new file mode 100644 index 00000000..4ce54ee6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/live_helicopter.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/live_helicopter"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/live_mill.json b/src/main/resources/assets/imsm/blockstates/live_mill.json new file mode 100644 index 00000000..8960df23 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/live_mill.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/live_mill"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/live_power_windmill_east.json b/src/main/resources/assets/imsm/blockstates/live_power_windmill_east.json new file mode 100644 index 00000000..e1868b97 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/live_power_windmill_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/live_power_windmill_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/live_watermill.json b/src/main/resources/assets/imsm/blockstates/live_watermill.json new file mode 100644 index 00000000..2e1ac3b8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/live_watermill.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/live_watermill"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/liveairballoon.json b/src/main/resources/assets/imsm/blockstates/liveairballoon.json new file mode 100644 index 00000000..7c0134c1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/liveairballoon.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/liveairballoon"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/liveairplane.json b/src/main/resources/assets/imsm/blockstates/liveairplane.json new file mode 100644 index 00000000..3bb0c1f7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/liveairplane.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/liveairplane"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/liveboat.json b/src/main/resources/assets/imsm/blockstates/liveboat.json new file mode 100644 index 00000000..e53edd6a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/liveboat.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/liveboat"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/liveflyingship.json b/src/main/resources/assets/imsm/blockstates/liveflyingship.json new file mode 100644 index 00000000..460240f8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/liveflyingship.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/liveflyingship"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/liveflyingship2.json b/src/main/resources/assets/imsm/blockstates/liveflyingship2.json new file mode 100644 index 00000000..6b2c7a91 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/liveflyingship2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/liveflyingship2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/liveplane.json b/src/main/resources/assets/imsm/blockstates/liveplane.json new file mode 100644 index 00000000..e5cb084c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/liveplane.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/liveplane"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/livestructureremover.json b/src/main/resources/assets/imsm/blockstates/livestructureremover.json new file mode 100644 index 00000000..6910f813 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/livestructureremover.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/livestructureremover"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densitybrickeastwest.json b/src/main/resources/assets/imsm/blockstates/officehigh_densitybrickeastwest.json new file mode 100644 index 00000000..e0dd5ebe --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densitybrickeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densitybrickeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densitybricknorthsouth.json b/src/main/resources/assets/imsm/blockstates/officehigh_densitybricknorthsouth.json new file mode 100644 index 00000000..77774aac --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densitybricknorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densitybricknorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densitycyaneast.json b/src/main/resources/assets/imsm/blockstates/officehigh_densitycyaneast.json new file mode 100644 index 00000000..5c8eb0c0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densitycyaneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densitycyaneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densitycyannorth.json b/src/main/resources/assets/imsm/blockstates/officehigh_densitycyannorth.json new file mode 100644 index 00000000..b15d7c93 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densitycyannorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densitycyannorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densitycyansouth.json b/src/main/resources/assets/imsm/blockstates/officehigh_densitycyansouth.json new file mode 100644 index 00000000..d0acb823 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densitycyansouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densitycyansouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densitycyanwest.json b/src/main/resources/assets/imsm/blockstates/officehigh_densitycyanwest.json new file mode 100644 index 00000000..879e9f6c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densitycyanwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densitycyanwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopeast.json b/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopeast.json new file mode 100644 index 00000000..9776197f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densityholeontopeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopnorth.json b/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopnorth.json new file mode 100644 index 00000000..08360021 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densityholeontopnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopsouth.json b/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopsouth.json new file mode 100644 index 00000000..fd5d44ce --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densityholeontopsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopwest.json b/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopwest.json new file mode 100644 index 00000000..0bb36582 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densityholeontopwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densityholeontopwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densitylightblueeastwest.json b/src/main/resources/assets/imsm/blockstates/officehigh_densitylightblueeastwest.json new file mode 100644 index 00000000..68c421cd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densitylightblueeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densitylightblueeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densitylightbluenorthsouth.json b/src/main/resources/assets/imsm/blockstates/officehigh_densitylightbluenorthsouth.json new file mode 100644 index 00000000..8951f915 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densitylightbluenorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densitylightbluenorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingeast.json b/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingeast.json new file mode 100644 index 00000000..b1c6a3c7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densityspirolbuildingeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingnorth.json b/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingnorth.json new file mode 100644 index 00000000..0aea2f27 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densityspirolbuildingnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingsouth.json b/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingsouth.json new file mode 100644 index 00000000..7935bdfc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densityspirolbuildingsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingwest.json b/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingwest.json new file mode 100644 index 00000000..440ee7f0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officehigh_densityspirolbuildingwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officehigh_densityspirolbuildingwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densityblueeast.json b/src/main/resources/assets/imsm/blockstates/officelow_densityblueeast.json new file mode 100644 index 00000000..2be3d4dd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densityblueeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densityblueeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitybluenorth.json b/src/main/resources/assets/imsm/blockstates/officelow_densitybluenorth.json new file mode 100644 index 00000000..3cd0c7d9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitybluenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitybluenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitybluesouth.json b/src/main/resources/assets/imsm/blockstates/officelow_densitybluesouth.json new file mode 100644 index 00000000..29ae2b8c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitybluesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitybluesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitybluewest.json b/src/main/resources/assets/imsm/blockstates/officelow_densitybluewest.json new file mode 100644 index 00000000..8e4d04c3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitybluewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitybluewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitygreeneast.json b/src/main/resources/assets/imsm/blockstates/officelow_densitygreeneast.json new file mode 100644 index 00000000..27aa62c7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitygreeneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitygreeneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitygreennorth.json b/src/main/resources/assets/imsm/blockstates/officelow_densitygreennorth.json new file mode 100644 index 00000000..c55b9cc4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitygreennorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitygreennorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitygreensouth.json b/src/main/resources/assets/imsm/blockstates/officelow_densitygreensouth.json new file mode 100644 index 00000000..e316137c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitygreensouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitygreensouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitygreenwest.json b/src/main/resources/assets/imsm/blockstates/officelow_densitygreenwest.json new file mode 100644 index 00000000..68f5d4d8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitygreenwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitygreenwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitywhiteeast.json b/src/main/resources/assets/imsm/blockstates/officelow_densitywhiteeast.json new file mode 100644 index 00000000..b6fa41d7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitywhiteeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitywhiteeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitywhitenorth.json b/src/main/resources/assets/imsm/blockstates/officelow_densitywhitenorth.json new file mode 100644 index 00000000..599fd836 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitywhitenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitywhitenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitywhitesouth.json b/src/main/resources/assets/imsm/blockstates/officelow_densitywhitesouth.json new file mode 100644 index 00000000..d6cdaca3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitywhitesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitywhitesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densitywhitewest.json b/src/main/resources/assets/imsm/blockstates/officelow_densitywhitewest.json new file mode 100644 index 00000000..fdcb395c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densitywhitewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densitywhitewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densityyelloweast.json b/src/main/resources/assets/imsm/blockstates/officelow_densityyelloweast.json new file mode 100644 index 00000000..35be0068 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densityyelloweast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densityyelloweast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densityyellownorth.json b/src/main/resources/assets/imsm/blockstates/officelow_densityyellownorth.json new file mode 100644 index 00000000..b3361d0d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densityyellownorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densityyellownorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densityyellowsouth.json b/src/main/resources/assets/imsm/blockstates/officelow_densityyellowsouth.json new file mode 100644 index 00000000..4bf2f082 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densityyellowsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densityyellowsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officelow_densityyellowwest.json b/src/main/resources/assets/imsm/blockstates/officelow_densityyellowwest.json new file mode 100644 index 00000000..59173d65 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officelow_densityyellowwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officelow_densityyellowwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitycyaneast.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitycyaneast.json new file mode 100644 index 00000000..5c74e199 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitycyaneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitycyaneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitycyannorth.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitycyannorth.json new file mode 100644 index 00000000..ce2c839c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitycyannorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitycyannorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitycyansouth.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitycyansouth.json new file mode 100644 index 00000000..b147ee69 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitycyansouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitycyansouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitycyanwest.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitycyanwest.json new file mode 100644 index 00000000..bbe056f3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitycyanwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitycyanwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitylightblueeast.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitylightblueeast.json new file mode 100644 index 00000000..9d9fbc76 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitylightblueeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitylightblueeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitylightbluenorth.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitylightbluenorth.json new file mode 100644 index 00000000..ff90a016 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitylightbluenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitylightbluenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitylightbluesouth.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitylightbluesouth.json new file mode 100644 index 00000000..b1ff1e46 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitylightbluesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitylightbluesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitylightbluewest.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitylightbluewest.json new file mode 100644 index 00000000..6ff95ce6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitylightbluewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitylightbluewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitypinkeast.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitypinkeast.json new file mode 100644 index 00000000..1f0d9216 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitypinkeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitypinkeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitypinknorth.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitypinknorth.json new file mode 100644 index 00000000..ab345d24 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitypinknorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitypinknorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitypinksouth.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitypinksouth.json new file mode 100644 index 00000000..e2d857b6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitypinksouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitypinksouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitypinkwest.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitypinkwest.json new file mode 100644 index 00000000..d7376f65 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitypinkwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitypinkwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstoneeast.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstoneeast.json new file mode 100644 index 00000000..f3b4b328 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstoneeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitysandstoneeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstonenorth.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstonenorth.json new file mode 100644 index 00000000..db6bfe1a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstonenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitysandstonenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstonesouth.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstonesouth.json new file mode 100644 index 00000000..b37ced81 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstonesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitysandstonesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstonewest.json b/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstonewest.json new file mode 100644 index 00000000..9c90ae13 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/officemedium_densitysandstonewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/officemedium_densitysandstonewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/otherbrickhouse.json b/src/main/resources/assets/imsm/blockstates/otherbrickhouse.json new file mode 100644 index 00000000..544c042a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/otherbrickhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/otherbrickhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/othergrandhouse.json b/src/main/resources/assets/imsm/blockstates/othergrandhouse.json new file mode 100644 index 00000000..c1592f36 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/othergrandhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/othergrandhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/otherlighthouse.json b/src/main/resources/assets/imsm/blockstates/otherlighthouse.json new file mode 100644 index 00000000..d3462986 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/otherlighthouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/otherlighthouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/otherstable.json b/src/main/resources/assets/imsm/blockstates/otherstable.json new file mode 100644 index 00000000..26609da7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/otherstable.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/otherstable"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/othersurvivorhouse.json b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse.json new file mode 100644 index 00000000..83c036bb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/othersurvivorhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/othersurvivorhouse2.json b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse2.json new file mode 100644 index 00000000..37e5336d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/othersurvivorhouse2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/othersurvivorhouse3.json b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse3.json new file mode 100644 index 00000000..a9fd7749 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse3.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/othersurvivorhouse3"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/othersurvivorhouse4.json b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse4.json new file mode 100644 index 00000000..8cf9b8ea --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse4.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/othersurvivorhouse4"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/othersurvivorhouse5.json b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse5.json new file mode 100644 index 00000000..5ff526d0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse5.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/othersurvivorhouse5"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/othersurvivorhouse6.json b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse6.json new file mode 100644 index 00000000..1ac086bc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse6.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/othersurvivorhouse6"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/othersurvivorhouse7.json b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse7.json new file mode 100644 index 00000000..4dd203c0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse7.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/othersurvivorhouse7"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/othersurvivorhouse8.json b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse8.json new file mode 100644 index 00000000..24dde77e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/othersurvivorhouse8.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/othersurvivorhouse8"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/othertemple.json b/src/main/resources/assets/imsm/blockstates/othertemple.json new file mode 100644 index 00000000..de34e15d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/othertemple.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/othertemple"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicfireservicebigeast.json b/src/main/resources/assets/imsm/blockstates/publicfireservicebigeast.json new file mode 100644 index 00000000..bb376152 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicfireservicebigeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicfireservicebigeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicfireservicebignorth.json b/src/main/resources/assets/imsm/blockstates/publicfireservicebignorth.json new file mode 100644 index 00000000..006cbe73 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicfireservicebignorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicfireservicebignorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicfireservicebigsouth.json b/src/main/resources/assets/imsm/blockstates/publicfireservicebigsouth.json new file mode 100644 index 00000000..7e065b5c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicfireservicebigsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicfireservicebigsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicfireservicebigwest.json b/src/main/resources/assets/imsm/blockstates/publicfireservicebigwest.json new file mode 100644 index 00000000..2a26d9f8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicfireservicebigwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicfireservicebigwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicfireservicesmalleast.json b/src/main/resources/assets/imsm/blockstates/publicfireservicesmalleast.json new file mode 100644 index 00000000..3286eee3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicfireservicesmalleast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicfireservicesmalleast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicfireservicesmallnorth.json b/src/main/resources/assets/imsm/blockstates/publicfireservicesmallnorth.json new file mode 100644 index 00000000..1d946601 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicfireservicesmallnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicfireservicesmallnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicfireservicesmallsouth.json b/src/main/resources/assets/imsm/blockstates/publicfireservicesmallsouth.json new file mode 100644 index 00000000..923f42f0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicfireservicesmallsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicfireservicesmallsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicfireservicesmallwest.json b/src/main/resources/assets/imsm/blockstates/publicfireservicesmallwest.json new file mode 100644 index 00000000..9ccdc9a1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicfireservicesmallwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicfireservicesmallwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publichospitalbigeast.json b/src/main/resources/assets/imsm/blockstates/publichospitalbigeast.json new file mode 100644 index 00000000..cb4bf7c5 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publichospitalbigeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publichospitalbigeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publichospitalbignorth.json b/src/main/resources/assets/imsm/blockstates/publichospitalbignorth.json new file mode 100644 index 00000000..b70e97aa --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publichospitalbignorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publichospitalbignorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publichospitalbigsouth.json b/src/main/resources/assets/imsm/blockstates/publichospitalbigsouth.json new file mode 100644 index 00000000..3003f4a8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publichospitalbigsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publichospitalbigsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publichospitalbigwest.json b/src/main/resources/assets/imsm/blockstates/publichospitalbigwest.json new file mode 100644 index 00000000..ae2bd48d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publichospitalbigwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publichospitalbigwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publichospitalsmalleast.json b/src/main/resources/assets/imsm/blockstates/publichospitalsmalleast.json new file mode 100644 index 00000000..61b60f1e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publichospitalsmalleast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publichospitalsmalleast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publichospitalsmallnorth.json b/src/main/resources/assets/imsm/blockstates/publichospitalsmallnorth.json new file mode 100644 index 00000000..2183194b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publichospitalsmallnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publichospitalsmallnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publichospitalsmallsouth.json b/src/main/resources/assets/imsm/blockstates/publichospitalsmallsouth.json new file mode 100644 index 00000000..f0579965 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publichospitalsmallsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publichospitalsmallsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publichospitalsmallwest.json b/src/main/resources/assets/imsm/blockstates/publichospitalsmallwest.json new file mode 100644 index 00000000..79761603 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publichospitalsmallwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publichospitalsmallwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publiclibraryeastwest.json b/src/main/resources/assets/imsm/blockstates/publiclibraryeastwest.json new file mode 100644 index 00000000..2323df9f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publiclibraryeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publiclibraryeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publiclibrarynorthsouth.json b/src/main/resources/assets/imsm/blockstates/publiclibrarynorthsouth.json new file mode 100644 index 00000000..ed6fcb4f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publiclibrarynorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publiclibrarynorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicpolicebigeast.json b/src/main/resources/assets/imsm/blockstates/publicpolicebigeast.json new file mode 100644 index 00000000..8152787f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicpolicebigeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicpolicebigeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicpolicebignorth.json b/src/main/resources/assets/imsm/blockstates/publicpolicebignorth.json new file mode 100644 index 00000000..b9e93a26 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicpolicebignorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicpolicebignorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicpolicebigsouth.json b/src/main/resources/assets/imsm/blockstates/publicpolicebigsouth.json new file mode 100644 index 00000000..734b4367 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicpolicebigsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicpolicebigsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicpolicebigwest.json b/src/main/resources/assets/imsm/blockstates/publicpolicebigwest.json new file mode 100644 index 00000000..6a2217bf --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicpolicebigwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicpolicebigwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicpolicesmalleast.json b/src/main/resources/assets/imsm/blockstates/publicpolicesmalleast.json new file mode 100644 index 00000000..9682688f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicpolicesmalleast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicpolicesmalleast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicpolicesmallnorth.json b/src/main/resources/assets/imsm/blockstates/publicpolicesmallnorth.json new file mode 100644 index 00000000..8cdeba28 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicpolicesmallnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicpolicesmallnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicpolicesmallsouth.json b/src/main/resources/assets/imsm/blockstates/publicpolicesmallsouth.json new file mode 100644 index 00000000..586323c4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicpolicesmallsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicpolicesmallsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicpolicesmallwest.json b/src/main/resources/assets/imsm/blockstates/publicpolicesmallwest.json new file mode 100644 index 00000000..18e02300 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicpolicesmallwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicpolicesmallwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicschoolbignortheast.json b/src/main/resources/assets/imsm/blockstates/publicschoolbignortheast.json new file mode 100644 index 00000000..1794733e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicschoolbignortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicschoolbignortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicschoolbignorthwest.json b/src/main/resources/assets/imsm/blockstates/publicschoolbignorthwest.json new file mode 100644 index 00000000..910332ad --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicschoolbignorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicschoolbignorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicschoolbigsoutheast.json b/src/main/resources/assets/imsm/blockstates/publicschoolbigsoutheast.json new file mode 100644 index 00000000..1b067112 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicschoolbigsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicschoolbigsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicschoolbigsouthwest.json b/src/main/resources/assets/imsm/blockstates/publicschoolbigsouthwest.json new file mode 100644 index 00000000..a9f4c4bc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicschoolbigsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicschoolbigsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicschoolsmallnortheast.json b/src/main/resources/assets/imsm/blockstates/publicschoolsmallnortheast.json new file mode 100644 index 00000000..baec298d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicschoolsmallnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicschoolsmallnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicschoolsmallnorthwest.json b/src/main/resources/assets/imsm/blockstates/publicschoolsmallnorthwest.json new file mode 100644 index 00000000..3f0b6fcd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicschoolsmallnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicschoolsmallnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicschoolsmallsoutheast.json b/src/main/resources/assets/imsm/blockstates/publicschoolsmallsoutheast.json new file mode 100644 index 00000000..66c3f040 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicschoolsmallsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicschoolsmallsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicschoolsmallsouthwest.json b/src/main/resources/assets/imsm/blockstates/publicschoolsmallsouthwest.json new file mode 100644 index 00000000..713cd708 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicschoolsmallsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicschoolsmallsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publictownhallbigeastwest.json b/src/main/resources/assets/imsm/blockstates/publictownhallbigeastwest.json new file mode 100644 index 00000000..e5bc3680 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publictownhallbigeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publictownhallbigeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publictownhallbignorthsouth.json b/src/main/resources/assets/imsm/blockstates/publictownhallbignorthsouth.json new file mode 100644 index 00000000..4ab4cb75 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publictownhallbignorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publictownhallbignorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publictownhallsmalleast.json b/src/main/resources/assets/imsm/blockstates/publictownhallsmalleast.json new file mode 100644 index 00000000..74d3cf0b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publictownhallsmalleast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publictownhallsmalleast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publictownhallsmallnorth.json b/src/main/resources/assets/imsm/blockstates/publictownhallsmallnorth.json new file mode 100644 index 00000000..9b52ef19 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publictownhallsmallnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publictownhallsmallnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publictownhallsmallsouth.json b/src/main/resources/assets/imsm/blockstates/publictownhallsmallsouth.json new file mode 100644 index 00000000..97e88031 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publictownhallsmallsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publictownhallsmallsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publictownhallsmallwest.json b/src/main/resources/assets/imsm/blockstates/publictownhallsmallwest.json new file mode 100644 index 00000000..0fe420b9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publictownhallsmallwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publictownhallsmallwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicuniversityeast.json b/src/main/resources/assets/imsm/blockstates/publicuniversityeast.json new file mode 100644 index 00000000..4f449030 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicuniversityeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicuniversityeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicuniversitynorth.json b/src/main/resources/assets/imsm/blockstates/publicuniversitynorth.json new file mode 100644 index 00000000..55192e12 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicuniversitynorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicuniversitynorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicuniversitysouth.json b/src/main/resources/assets/imsm/blockstates/publicuniversitysouth.json new file mode 100644 index 00000000..6f930117 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicuniversitysouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicuniversitysouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/publicuniversitywest.json b/src/main/resources/assets/imsm/blockstates/publicuniversitywest.json new file mode 100644 index 00000000..18ebda1a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/publicuniversitywest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/publicuniversitywest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomairballoon2.json b/src/main/resources/assets/imsm/blockstates/randomairballoon2.json new file mode 100644 index 00000000..9afdfb06 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomairballoon2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomairballoon2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randombuildingcomplex.json b/src/main/resources/assets/imsm/blockstates/randombuildingcomplex.json new file mode 100644 index 00000000..aadad563 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randombuildingcomplex.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randombuildingcomplex"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomentrance.json b/src/main/resources/assets/imsm/blockstates/randomentrance.json new file mode 100644 index 00000000..349ad6fe --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomentrance.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomentrance"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomflyingship.json b/src/main/resources/assets/imsm/blockstates/randomflyingship.json new file mode 100644 index 00000000..4ea78687 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomflyingship.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomflyingship"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomgreentent.json b/src/main/resources/assets/imsm/blockstates/randomgreentent.json new file mode 100644 index 00000000..738fa022 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomgreentent.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomgreentent"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomgreytent.json b/src/main/resources/assets/imsm/blockstates/randomgreytent.json new file mode 100644 index 00000000..1668cb43 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomgreytent.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomgreytent"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomimmense_buildingcomplex.json b/src/main/resources/assets/imsm/blockstates/randomimmense_buildingcomplex.json new file mode 100644 index 00000000..9fe2527f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomimmense_buildingcomplex.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomimmense_buildingcomplex"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomimmense_greenroof.json b/src/main/resources/assets/imsm/blockstates/randomimmense_greenroof.json new file mode 100644 index 00000000..a5083b99 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomimmense_greenroof.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomimmense_greenroof"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomimmense_white_house.json b/src/main/resources/assets/imsm/blockstates/randomimmense_white_house.json new file mode 100644 index 00000000..2a2856b6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomimmense_white_house.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomimmense_white_house"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomimmense_workingbuilding.json b/src/main/resources/assets/imsm/blockstates/randomimmense_workingbuilding.json new file mode 100644 index 00000000..f2733c29 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomimmense_workingbuilding.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomimmense_workingbuilding"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomlighthouse.json b/src/main/resources/assets/imsm/blockstates/randomlighthouse.json new file mode 100644 index 00000000..2edd0b4b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomlighthouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomlighthouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomlittlepalace.json b/src/main/resources/assets/imsm/blockstates/randomlittlepalace.json new file mode 100644 index 00000000..3604e6ef --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomlittlepalace.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomlittlepalace"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomlittlewoodencabin.json b/src/main/resources/assets/imsm/blockstates/randomlittlewoodencabin.json new file mode 100644 index 00000000..bc433bba --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomlittlewoodencabin.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomlittlewoodencabin"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomminertent.json b/src/main/resources/assets/imsm/blockstates/randomminertent.json new file mode 100644 index 00000000..0c879027 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomminertent.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomminertent"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomnetherentrancesurvival.json b/src/main/resources/assets/imsm/blockstates/randomnetherentrancesurvival.json new file mode 100644 index 00000000..a96f9653 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomnetherentrancesurvival.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomnetherentrancesurvival"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomrandombrickhouse.json b/src/main/resources/assets/imsm/blockstates/randomrandombrickhouse.json new file mode 100644 index 00000000..243b25e3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomrandombrickhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomrandombrickhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomsandstonebuilding.json b/src/main/resources/assets/imsm/blockstates/randomsandstonebuilding.json new file mode 100644 index 00000000..939fac72 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomsandstonebuilding.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomsandstonebuilding"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomsandstonechurch.json b/src/main/resources/assets/imsm/blockstates/randomsandstonechurch.json new file mode 100644 index 00000000..01df1294 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomsandstonechurch.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomsandstonechurch"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomsandstonewithfarm.json b/src/main/resources/assets/imsm/blockstates/randomsandstonewithfarm.json new file mode 100644 index 00000000..12c89e4c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomsandstonewithfarm.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomsandstonewithfarm"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomsimplesandstone.json b/src/main/resources/assets/imsm/blockstates/randomsimplesandstone.json new file mode 100644 index 00000000..f20a0b33 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomsimplesandstone.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomsimplesandstone"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomspawnhouseprod.json b/src/main/resources/assets/imsm/blockstates/randomspawnhouseprod.json new file mode 100644 index 00000000..838b1680 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomspawnhouseprod.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomspawnhouseprod"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomsurvivalhouse1.json b/src/main/resources/assets/imsm/blockstates/randomsurvivalhouse1.json new file mode 100644 index 00000000..548cbad3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomsurvivalhouse1.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomsurvivalhouse1"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomsurvivalhousesandstone.json b/src/main/resources/assets/imsm/blockstates/randomsurvivalhousesandstone.json new file mode 100644 index 00000000..6908223a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomsurvivalhousesandstone.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomsurvivalhousesandstone"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomtentcamp.json b/src/main/resources/assets/imsm/blockstates/randomtentcamp.json new file mode 100644 index 00000000..0fbcb0d9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomtentcamp.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomtentcamp"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomwoodenhouse.json b/src/main/resources/assets/imsm/blockstates/randomwoodenhouse.json new file mode 100644 index 00000000..bd5daeb7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomwoodenhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomwoodenhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/randomwoodenstonebrickhouse.json b/src/main/resources/assets/imsm/blockstates/randomwoodenstonebrickhouse.json new file mode 100644 index 00000000..37f4541d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/randomwoodenstonebrickhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/randomwoodenstonebrickhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover16.json b/src/main/resources/assets/imsm/blockstates/remover16.json new file mode 100644 index 00000000..dc0dff33 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover16.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover16"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover16256.json b/src/main/resources/assets/imsm/blockstates/remover16256.json new file mode 100644 index 00000000..e8505810 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover16256.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover16256"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover1632.json b/src/main/resources/assets/imsm/blockstates/remover1632.json new file mode 100644 index 00000000..c0be81f1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover1632.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover1632"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover168.json b/src/main/resources/assets/imsm/blockstates/remover168.json new file mode 100644 index 00000000..a4e6bb8d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover168.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover168"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover32.json b/src/main/resources/assets/imsm/blockstates/remover32.json new file mode 100644 index 00000000..f71a073e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover32.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover32"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover3216.json b/src/main/resources/assets/imsm/blockstates/remover3216.json new file mode 100644 index 00000000..e586390d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover3216.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover3216"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover32256.json b/src/main/resources/assets/imsm/blockstates/remover32256.json new file mode 100644 index 00000000..90248196 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover32256.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover32256"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover328.json b/src/main/resources/assets/imsm/blockstates/remover328.json new file mode 100644 index 00000000..1871b72c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover328.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover328"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover64.json b/src/main/resources/assets/imsm/blockstates/remover64.json new file mode 100644 index 00000000..acc8cb6b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover64.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover64"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover64256.json b/src/main/resources/assets/imsm/blockstates/remover64256.json new file mode 100644 index 00000000..9f767b42 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover64256.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover64256"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover8.json b/src/main/resources/assets/imsm/blockstates/remover8.json new file mode 100644 index 00000000..4bac531f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover8.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover8"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover816.json b/src/main/resources/assets/imsm/blockstates/remover816.json new file mode 100644 index 00000000..c279048e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover816.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover816"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover8256.json b/src/main/resources/assets/imsm/blockstates/remover8256.json new file mode 100644 index 00000000..44d470bd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover8256.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover8256"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/remover832.json b/src/main/resources/assets/imsm/blockstates/remover832.json new file mode 100644 index 00000000..81c04cb3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/remover832.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/remover832"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/removerlast.json b/src/main/resources/assets/imsm/blockstates/removerlast.json new file mode 100644 index 00000000..edd86b83 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/removerlast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/removerlast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densityblocknortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densityblocknortheastsouthwest.json new file mode 100644 index 00000000..2efa317e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densityblocknortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densityblocknortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbigeast.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbigeast.json new file mode 100644 index 00000000..d2e5b06f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbigeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitybrickbigeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbignorth.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbignorth.json new file mode 100644 index 00000000..4c6ce107 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbignorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitybrickbignorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbigsouth.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbigsouth.json new file mode 100644 index 00000000..f4c95a18 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbigsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitybrickbigsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbigwest.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbigwest.json new file mode 100644 index 00000000..6da0589a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybrickbigwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitybrickbigwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybricksmallnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybricksmallnortheastsouthwest.json new file mode 100644 index 00000000..58fde7c4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitybricksmallnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitybricksmallnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreyeast.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreyeast.json new file mode 100644 index 00000000..af3ec37c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreyeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitygreyeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreynorth.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreynorth.json new file mode 100644 index 00000000..807b5433 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreynorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitygreynorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreysouth.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreysouth.json new file mode 100644 index 00000000..9581ee5d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreysouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitygreysouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreywest.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreywest.json new file mode 100644 index 00000000..bf9ccc43 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitygreywest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitygreywest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymoderneast.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymoderneast.json new file mode 100644 index 00000000..b1afebcc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymoderneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitymoderneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymodernnorth.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymodernnorth.json new file mode 100644 index 00000000..126d43c9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymodernnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitymodernnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymodernsouth.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymodernsouth.json new file mode 100644 index 00000000..5bf98915 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymodernsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitymodernsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymodernwest.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymodernwest.json new file mode 100644 index 00000000..34ede20c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitymodernwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitymodernwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densityredeastwest.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densityredeastwest.json new file mode 100644 index 00000000..0ad79336 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densityredeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densityredeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densityrednorthsouth.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densityrednorthsouth.json new file mode 100644 index 00000000..455fa0b0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densityrednorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densityrednorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densityroundnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densityroundnortheastsouthwest.json new file mode 100644 index 00000000..878c3cb9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densityroundnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densityroundnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystoneeast.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystoneeast.json new file mode 100644 index 00000000..966a4b0b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystoneeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitystoneeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystoneeast2.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystoneeast2.json new file mode 100644 index 00000000..8fa2df22 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystoneeast2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitystoneeast2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonenorth.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonenorth.json new file mode 100644 index 00000000..f87f6e52 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitystonenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonenorth2.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonenorth2.json new file mode 100644 index 00000000..12beaaf0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonenorth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitystonenorth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonesouth.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonesouth.json new file mode 100644 index 00000000..3f1fe7f0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitystonesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonesouth2.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonesouth2.json new file mode 100644 index 00000000..47e48ffb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonesouth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitystonesouth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonewest.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonewest.json new file mode 100644 index 00000000..a5211cfe --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitystonewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonewest2.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonewest2.json new file mode 100644 index 00000000..bda7ce8e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densitystonewest2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densitystonewest2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalenormous_densityyellownortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/residentalenormous_densityyellownortheastsouthwest.json new file mode 100644 index 00000000..72f62a90 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalenormous_densityyellownortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalenormous_densityyellownortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityblueeast.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityblueeast.json new file mode 100644 index 00000000..8c5dbe0a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityblueeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityblueeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityblueeastwest.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityblueeastwest.json new file mode 100644 index 00000000..334a073e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityblueeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityblueeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluenorth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluenorth.json new file mode 100644 index 00000000..d937d782 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitybluenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluenorthsouth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluenorthsouth.json new file mode 100644 index 00000000..74461f14 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluenorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitybluenorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluesouth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluesouth.json new file mode 100644 index 00000000..49969898 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitybluesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluewest.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluewest.json new file mode 100644 index 00000000..152b6f92 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybluewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitybluewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybrickeast.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybrickeast.json new file mode 100644 index 00000000..d8faf8b7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybrickeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitybrickeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybrickeastwest.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybrickeastwest.json new file mode 100644 index 00000000..75fba5c1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybrickeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitybrickeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybricknorth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybricknorth.json new file mode 100644 index 00000000..f2abcd87 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybricknorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitybricknorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybricknorthsouth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybricknorthsouth.json new file mode 100644 index 00000000..83451207 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybricknorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitybricknorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybricksouth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybricksouth.json new file mode 100644 index 00000000..14849b9e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybricksouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitybricksouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybrickwest.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybrickwest.json new file mode 100644 index 00000000..8f6b17b4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitybrickwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitybrickwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreyeast.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreyeast.json new file mode 100644 index 00000000..675deea4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreyeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitygreengreyeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreynorth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreynorth.json new file mode 100644 index 00000000..8ab595bf --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreynorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitygreengreynorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreysouth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreysouth.json new file mode 100644 index 00000000..dedd327b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreysouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitygreengreysouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreywest.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreywest.json new file mode 100644 index 00000000..89e3f1e2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitygreengreywest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitygreengreywest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornernortheast.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornernortheast.json new file mode 100644 index 00000000..3177cb5b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornernortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityredcornernortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornernorthwest.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornernorthwest.json new file mode 100644 index 00000000..49dea524 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornernorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityredcornernorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornersoutheast.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornersoutheast.json new file mode 100644 index 00000000..28541314 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornersoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityredcornersoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornersouthwest.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornersouthwest.json new file mode 100644 index 00000000..ee48706a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredcornersouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityredcornersouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyelloweast.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyelloweast.json new file mode 100644 index 00000000..7907a95b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyelloweast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityredyelloweast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyellownorth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyellownorth.json new file mode 100644 index 00000000..b2eafccd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyellownorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityredyellownorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyellowsouth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyellowsouth.json new file mode 100644 index 00000000..ec191a60 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyellowsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityredyellowsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyellowwest.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyellowwest.json new file mode 100644 index 00000000..65a58e90 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityredyellowwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityredyellowwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystoneeast.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystoneeast.json new file mode 100644 index 00000000..d240b5f5 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystoneeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitystoneeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystoneeast2.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystoneeast2.json new file mode 100644 index 00000000..e189f3cb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystoneeast2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitystoneeast2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonenorth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonenorth.json new file mode 100644 index 00000000..36e8447f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitystonenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonenorth2.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonenorth2.json new file mode 100644 index 00000000..1138b010 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonenorth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitystonenorth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonesouth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonesouth.json new file mode 100644 index 00000000..8afceaab --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitystonesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonesouth2.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonesouth2.json new file mode 100644 index 00000000..8ece132a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonesouth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitystonesouth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonewest.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonewest.json new file mode 100644 index 00000000..12c8743a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitystonewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonewest2.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonewest2.json new file mode 100644 index 00000000..b5313b12 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densitystonewest2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densitystonewest2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyelloweast.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyelloweast.json new file mode 100644 index 00000000..fc1c7ae8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyelloweast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityyelloweast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyellownorth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyellownorth.json new file mode 100644 index 00000000..0bec83c6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyellownorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityyellownorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyellowsouth.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyellowsouth.json new file mode 100644 index 00000000..515efa2d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyellowsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityyellowsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyellowwest.json b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyellowwest.json new file mode 100644 index 00000000..30108a5b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalhigh_densityyellowwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalhigh_densityyellowwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigeeast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigeeast.json new file mode 100644 index 00000000..7510fc40 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigeeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitybeigeeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigenorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigenorth.json new file mode 100644 index 00000000..e040ef0d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitybeigenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigesouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigesouth.json new file mode 100644 index 00000000..3d8c9e94 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitybeigesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigewest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigewest.json new file mode 100644 index 00000000..4233981a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitybeigewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitybeigewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitycyaneast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitycyaneast.json new file mode 100644 index 00000000..020a4d42 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitycyaneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitycyaneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitycyannorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitycyannorth.json new file mode 100644 index 00000000..55243fc8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitycyannorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitycyannorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitycyansouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitycyansouth.json new file mode 100644 index 00000000..fbcf7fab --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitycyansouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitycyansouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitycyanwest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitycyanwest.json new file mode 100644 index 00000000..298de95f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitycyanwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitycyanwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitygreeneast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreeneast.json new file mode 100644 index 00000000..70e094a9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreeneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitygreeneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitygreeneast2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreeneast2.json new file mode 100644 index 00000000..78a40293 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreeneast2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitygreeneast2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitygreennorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreennorth.json new file mode 100644 index 00000000..f419b494 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreennorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitygreennorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitygreennorth2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreennorth2.json new file mode 100644 index 00000000..4b491ef8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreennorth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitygreennorth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitygreensouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreensouth.json new file mode 100644 index 00000000..d7222140 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreensouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitygreensouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitygreensouth2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreensouth2.json new file mode 100644 index 00000000..a6382dd0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreensouth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitygreensouth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitygreenwest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreenwest.json new file mode 100644 index 00000000..7c5cbd50 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreenwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitygreenwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitygreenwest2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreenwest2.json new file mode 100644 index 00000000..4cef726c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitygreenwest2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitygreenwest2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightblueeast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightblueeast.json new file mode 100644 index 00000000..73776675 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightblueeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightblueeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightblueeast2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightblueeast2.json new file mode 100644 index 00000000..bf13fcaf --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightblueeast2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightblueeast2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluenorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluenorth.json new file mode 100644 index 00000000..a7ed4c4b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightbluenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluenorth2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluenorth2.json new file mode 100644 index 00000000..236572a8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluenorth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightbluenorth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluesouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluesouth.json new file mode 100644 index 00000000..ab01c449 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightbluesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluesouth2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluesouth2.json new file mode 100644 index 00000000..717c040f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluesouth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightbluesouth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluewest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluewest.json new file mode 100644 index 00000000..c4d004e2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightbluewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluewest2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluewest2.json new file mode 100644 index 00000000..d5d251d5 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightbluewest2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightbluewest2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreyeast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreyeast.json new file mode 100644 index 00000000..9c94fd25 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreyeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightgreyeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreynorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreynorth.json new file mode 100644 index 00000000..ba479362 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreynorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightgreynorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreysouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreysouth.json new file mode 100644 index 00000000..dd6c2f26 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreysouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightgreysouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreywest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreywest.json new file mode 100644 index 00000000..3b79d1a5 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitylightgreywest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitylightgreywest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitymoderneast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitymoderneast.json new file mode 100644 index 00000000..e88b898b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitymoderneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitymoderneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitymodernnorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitymodernnorth.json new file mode 100644 index 00000000..d5fc184e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitymodernnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitymodernnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitymodernsouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitymodernsouth.json new file mode 100644 index 00000000..81017538 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitymodernsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitymodernsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitymodernwest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitymodernwest.json new file mode 100644 index 00000000..17b7c643 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitymodernwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitymodernwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityorangeeast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityorangeeast.json new file mode 100644 index 00000000..22c07994 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityorangeeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityorangeeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityorangenorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityorangenorth.json new file mode 100644 index 00000000..9b44f7eb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityorangenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityorangenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityorangesouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityorangesouth.json new file mode 100644 index 00000000..04725b7d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityorangesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityorangesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityorangewest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityorangewest.json new file mode 100644 index 00000000..5260962e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityorangewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityorangewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityredeast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityredeast.json new file mode 100644 index 00000000..2fe8d065 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityredeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityredeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityrednorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityrednorth.json new file mode 100644 index 00000000..f5d96921 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityrednorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityrednorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityredsouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityredsouth.json new file mode 100644 index 00000000..23792a3a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityredsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityredsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityredwest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityredwest.json new file mode 100644 index 00000000..1aeffe65 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityredwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityredwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitystoneeast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitystoneeast.json new file mode 100644 index 00000000..d99facf3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitystoneeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitystoneeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitystonenorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitystonenorth.json new file mode 100644 index 00000000..9e2bc185 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitystonenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitystonenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitystonesouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitystonesouth.json new file mode 100644 index 00000000..c29d62cd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitystonesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitystonesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitystonewest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitystonewest.json new file mode 100644 index 00000000..2d53522e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitystonewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitystonewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitywhiteeast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitywhiteeast.json new file mode 100644 index 00000000..733f1ee0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitywhiteeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitywhiteeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitywhitenorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitywhitenorth.json new file mode 100644 index 00000000..317bb4de --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitywhitenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitywhitenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitywhitesouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitywhitesouth.json new file mode 100644 index 00000000..1ea711c6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitywhitesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitywhitesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitywhitewest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitywhitewest.json new file mode 100644 index 00000000..25430168 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitywhitewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitywhitewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodeast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodeast.json new file mode 100644 index 00000000..c27f6f43 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitywoodeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodnorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodnorth.json new file mode 100644 index 00000000..baa102f8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitywoodnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodsouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodsouth.json new file mode 100644 index 00000000..c00e93d4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitywoodsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodwest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodwest.json new file mode 100644 index 00000000..eb5a7aa3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densitywoodwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densitywoodwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityyelloweast.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityyelloweast.json new file mode 100644 index 00000000..84cde428 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityyelloweast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityyelloweast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityyelloweast2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityyelloweast2.json new file mode 100644 index 00000000..d285675a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityyelloweast2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityyelloweast2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityyellownorth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellownorth.json new file mode 100644 index 00000000..3697248c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellownorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityyellownorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityyellownorth2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellownorth2.json new file mode 100644 index 00000000..bdc3eb4c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellownorth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityyellownorth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowsouth.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowsouth.json new file mode 100644 index 00000000..24b67c4c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityyellowsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowsouth2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowsouth2.json new file mode 100644 index 00000000..e57083c3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowsouth2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityyellowsouth2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowwest.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowwest.json new file mode 100644 index 00000000..8758c587 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityyellowwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowwest2.json b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowwest2.json new file mode 100644 index 00000000..9bea724d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentallow_densityyellowwest2.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentallow_densityyellowwest2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreeneast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreeneast.json new file mode 100644 index 00000000..85e150eb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreeneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitybluegreeneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreennorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreennorth.json new file mode 100644 index 00000000..50fe70c1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreennorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitybluegreennorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreensouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreensouth.json new file mode 100644 index 00000000..87762281 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreensouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitybluegreensouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreenwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreenwest.json new file mode 100644 index 00000000..436ae194 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluegreenwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitybluegreenwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityblueredeast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityblueredeast.json new file mode 100644 index 00000000..7a66e787 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityblueredeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityblueredeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluerednorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluerednorth.json new file mode 100644 index 00000000..72096c57 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybluerednorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitybluerednorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityblueredsouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityblueredsouth.json new file mode 100644 index 00000000..a48227ed --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityblueredsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityblueredsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityblueredwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityblueredwest.json new file mode 100644 index 00000000..a0356ee2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityblueredwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityblueredwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybrickeast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybrickeast.json new file mode 100644 index 00000000..ab117453 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybrickeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitybrickeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybricknorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybricknorth.json new file mode 100644 index 00000000..7a7810ce --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybricknorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitybricknorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybricksouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybricksouth.json new file mode 100644 index 00000000..4a05303b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybricksouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitybricksouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybrickwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybrickwest.json new file mode 100644 index 00000000..f7bbd569 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitybrickwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitybrickwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontaleast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontaleast.json new file mode 100644 index 00000000..95c20d98 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontaleast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityhorizontaleast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontalnorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontalnorth.json new file mode 100644 index 00000000..4f44ec78 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontalnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityhorizontalnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontalsouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontalsouth.json new file mode 100644 index 00000000..d844f05e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontalsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityhorizontalsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontalwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontalwest.json new file mode 100644 index 00000000..b3f37f29 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityhorizontalwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityhorizontalwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreeneast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreeneast.json new file mode 100644 index 00000000..044d388e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreeneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityorangegreeneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreennorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreennorth.json new file mode 100644 index 00000000..aeadf407 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreennorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityorangegreennorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreensouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreensouth.json new file mode 100644 index 00000000..03130529 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreensouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityorangegreensouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreenwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreenwest.json new file mode 100644 index 00000000..c34c2b5e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityorangegreenwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityorangegreenwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartzeast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartzeast.json new file mode 100644 index 00000000..42bf0f8e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartzeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityquartzeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartznorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartznorth.json new file mode 100644 index 00000000..d179338d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartznorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityquartznorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartzsouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartzsouth.json new file mode 100644 index 00000000..137c8bc7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartzsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityquartzsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartzwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartzwest.json new file mode 100644 index 00000000..473f1e06 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityquartzwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityquartzwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreeneast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreeneast.json new file mode 100644 index 00000000..a770fe57 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreeneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityredgreeneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreennorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreennorth.json new file mode 100644 index 00000000..f0b232d4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreennorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityredgreennorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreensouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreensouth.json new file mode 100644 index 00000000..c6595599 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreensouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityredgreensouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreenwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreenwest.json new file mode 100644 index 00000000..8a214e1b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityredgreenwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityredgreenwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofeast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofeast.json new file mode 100644 index 00000000..05461d86 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityroofeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofnorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofnorth.json new file mode 100644 index 00000000..ba6f4aa3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityroofnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofsouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofsouth.json new file mode 100644 index 00000000..520b033f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityroofsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofwest.json new file mode 100644 index 00000000..9ce029ff --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityroofwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityroofwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone1eastwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone1eastwest.json new file mode 100644 index 00000000..a56a1f7b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystone1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone1northsouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone1northsouth.json new file mode 100644 index 00000000..8fe65c6f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystone1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone2eastwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone2eastwest.json new file mode 100644 index 00000000..0f18ca1d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone2eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystone2eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone2northsouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone2northsouth.json new file mode 100644 index 00000000..7cd3df60 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystone2northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystone2northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornernortheast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornernortheast.json new file mode 100644 index 00000000..fc26f2ec --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornernortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystonecornernortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornernorthwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornernorthwest.json new file mode 100644 index 00000000..4160bed3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornernorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystonecornernorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornersoutheast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornersoutheast.json new file mode 100644 index 00000000..c9f3d182 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornersoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystonecornersoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornersouthwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornersouthwest.json new file mode 100644 index 00000000..52e93b55 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonecornersouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystonecornersouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneeast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneeast.json new file mode 100644 index 00000000..c1fc64a6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystoneeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendnortheastwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendnortheastwest.json new file mode 100644 index 00000000..2644a4a0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendnortheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystoneendnortheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendnorthsoutheast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendnorthsoutheast.json new file mode 100644 index 00000000..07c4ee34 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendnorthsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystoneendnorthsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendnorthsouthwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendnorthsouthwest.json new file mode 100644 index 00000000..f46d3b89 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendnorthsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystoneendnorthsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendsoutheastwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendsoutheastwest.json new file mode 100644 index 00000000..17c16bb7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystoneendsoutheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystoneendsoutheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonenorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonenorth.json new file mode 100644 index 00000000..ab4f5a9c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystonenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonesouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonesouth.json new file mode 100644 index 00000000..61f2110f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystonesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonewest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonewest.json new file mode 100644 index 00000000..760c8b75 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densitystonewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densitystonewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticaleast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticaleast.json new file mode 100644 index 00000000..8b8b5bc2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticaleast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityverticaleast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticalnorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticalnorth.json new file mode 100644 index 00000000..454e5722 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticalnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityverticalnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticalsouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticalsouth.json new file mode 100644 index 00000000..301e46f9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticalsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityverticalsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticalwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticalwest.json new file mode 100644 index 00000000..0580fc54 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityverticalwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityverticalwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowredeast.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowredeast.json new file mode 100644 index 00000000..ace1a8c8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowredeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityyellowredeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowrednorth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowrednorth.json new file mode 100644 index 00000000..1440d09c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowrednorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityyellowrednorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowredsouth.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowredsouth.json new file mode 100644 index 00000000..804b9517 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowredsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityyellowredsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowredwest.json b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowredwest.json new file mode 100644 index 00000000..9372e818 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/residentalmedium_densityyellowredwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/residentalmedium_densityyellowredwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinghigh_densityquartzeastwest.json b/src/main/resources/assets/imsm/blockstates/shoppinghigh_densityquartzeastwest.json new file mode 100644 index 00000000..4d9285b3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinghigh_densityquartzeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinghigh_densityquartzeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinghigh_densityquartznorthsouth.json b/src/main/resources/assets/imsm/blockstates/shoppinghigh_densityquartznorthsouth.json new file mode 100644 index 00000000..08bbe63e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinghigh_densityquartznorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinghigh_densityquartznorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybrickeast.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybrickeast.json new file mode 100644 index 00000000..aca6ee52 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybrickeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitybrickeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybricknorth.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybricknorth.json new file mode 100644 index 00000000..3cceda0a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybricknorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitybricknorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybricksouth.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybricksouth.json new file mode 100644 index 00000000..f06a6cae --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybricksouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitybricksouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybrickwest.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybrickwest.json new file mode 100644 index 00000000..45af010b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitybrickwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitybrickwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreeneast.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreeneast.json new file mode 100644 index 00000000..34662e73 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreeneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitygreeneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreennorth.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreennorth.json new file mode 100644 index 00000000..888d9670 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreennorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitygreennorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreensouth.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreensouth.json new file mode 100644 index 00000000..946324d4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreensouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitygreensouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreenwest.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreenwest.json new file mode 100644 index 00000000..a55a526e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitygreenwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitygreenwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangeeast.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangeeast.json new file mode 100644 index 00000000..71368560 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangeeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densityorangeeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangenorth.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangenorth.json new file mode 100644 index 00000000..de7f1518 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densityorangenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangesouth.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangesouth.json new file mode 100644 index 00000000..97f103ff --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densityorangesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangewest.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangewest.json new file mode 100644 index 00000000..1017f08f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densityorangewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densityorangewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinkeast.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinkeast.json new file mode 100644 index 00000000..a0c7051e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinkeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitypinkeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinknorth.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinknorth.json new file mode 100644 index 00000000..43f3be0f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinknorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitypinknorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinksouth.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinksouth.json new file mode 100644 index 00000000..7644a298 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinksouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitypinksouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinkwest.json b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinkwest.json new file mode 100644 index 00000000..a97a59e3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppinglow_densitypinkwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppinglow_densitypinkwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymoderneast.json b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymoderneast.json new file mode 100644 index 00000000..1f8fd17b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymoderneast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppingmedium_densitymoderneast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymodernnorth.json b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymodernnorth.json new file mode 100644 index 00000000..0112e4ab --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymodernnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppingmedium_densitymodernnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymodernsouth.json b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymodernsouth.json new file mode 100644 index 00000000..ad1b0fc3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymodernsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppingmedium_densitymodernsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymodernwest.json b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymodernwest.json new file mode 100644 index 00000000..997e919c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densitymodernwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppingmedium_densitymodernwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartzeast.json b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartzeast.json new file mode 100644 index 00000000..8b920843 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartzeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppingmedium_densityquartzeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartznorth.json b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartznorth.json new file mode 100644 index 00000000..3d2cd22d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartznorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppingmedium_densityquartznorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartzsouth.json b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartzsouth.json new file mode 100644 index 00000000..90474ce0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartzsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppingmedium_densityquartzsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartzwest.json b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartzwest.json new file mode 100644 index 00000000..25fc5492 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/shoppingmedium_densityquartzwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/shoppingmedium_densityquartzwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/survivalsmallbuilding.json b/src/main/resources/assets/imsm/blockstates/survivalsmallbuilding.json new file mode 100644 index 00000000..ab6dc53c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/survivalsmallbuilding.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/survivalsmallbuilding"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/survivalwoodenhouse.json b/src/main/resources/assets/imsm/blockstates/survivalwoodenhouse.json new file mode 100644 index 00000000..fa7179b1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/survivalwoodenhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/survivalwoodenhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportairportrunway_eastwestbuilding_north.json b/src/main/resources/assets/imsm/blockstates/transportairportrunway_eastwestbuilding_north.json new file mode 100644 index 00000000..4870d072 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportairportrunway_eastwestbuilding_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportairportrunway_eastwestbuilding_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportairportrunway_eastwestbuilding_south.json b/src/main/resources/assets/imsm/blockstates/transportairportrunway_eastwestbuilding_south.json new file mode 100644 index 00000000..d7f7be36 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportairportrunway_eastwestbuilding_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportairportrunway_eastwestbuilding_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportairportrunway_northsouthbuilding_east.json b/src/main/resources/assets/imsm/blockstates/transportairportrunway_northsouthbuilding_east.json new file mode 100644 index 00000000..284c485e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportairportrunway_northsouthbuilding_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportairportrunway_northsouthbuilding_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportairportrunway_northsouthbuilding_west.json b/src/main/resources/assets/imsm/blockstates/transportairportrunway_northsouthbuilding_west.json new file mode 100644 index 00000000..23cffb79 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportairportrunway_northsouthbuilding_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportairportrunway_northsouthbuilding_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenue1eastwest.json b/src/main/resources/assets/imsm/blockstates/transportavenue1eastwest.json new file mode 100644 index 00000000..44a095e1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenue1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenue1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenue1northsouth.json b/src/main/resources/assets/imsm/blockstates/transportavenue1northsouth.json new file mode 100644 index 00000000..af3d9644 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenue1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenue1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenue2eastwest.json b/src/main/resources/assets/imsm/blockstates/transportavenue2eastwest.json new file mode 100644 index 00000000..911eb502 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenue2eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenue2eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenue2northsouth.json b/src/main/resources/assets/imsm/blockstates/transportavenue2northsouth.json new file mode 100644 index 00000000..db380167 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenue2northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenue2northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenueeeast.json b/src/main/resources/assets/imsm/blockstates/transportavenueeeast.json new file mode 100644 index 00000000..f5b111ad --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenueeeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenueeeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenueenorth.json b/src/main/resources/assets/imsm/blockstates/transportavenueenorth.json new file mode 100644 index 00000000..25c2346b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenueenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenueenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenueesouth.json b/src/main/resources/assets/imsm/blockstates/transportavenueesouth.json new file mode 100644 index 00000000..151c3b17 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenueesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenueesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenueewest.json b/src/main/resources/assets/imsm/blockstates/transportavenueewest.json new file mode 100644 index 00000000..9f70d23e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenueewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenueewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenuelnortheast.json b/src/main/resources/assets/imsm/blockstates/transportavenuelnortheast.json new file mode 100644 index 00000000..263c412d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenuelnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenuelnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenuelnorthwest.json b/src/main/resources/assets/imsm/blockstates/transportavenuelnorthwest.json new file mode 100644 index 00000000..c4ad70b1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenuelnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenuelnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenuelsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportavenuelsoutheast.json new file mode 100644 index 00000000..07098cba --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenuelsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenuelsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenuelsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportavenuelsouthwest.json new file mode 100644 index 00000000..da672b68 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenuelsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenuelsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenuetnortheastwest.json b/src/main/resources/assets/imsm/blockstates/transportavenuetnortheastwest.json new file mode 100644 index 00000000..71d729ab --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenuetnortheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenuetnortheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenuetnorthsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportavenuetnorthsoutheast.json new file mode 100644 index 00000000..52033be6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenuetnorthsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenuetnorthsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenuetnorthsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportavenuetnorthsouthwest.json new file mode 100644 index 00000000..3f2ff3ec --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenuetnorthsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenuetnorthsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenuetsoutheastwest.json b/src/main/resources/assets/imsm/blockstates/transportavenuetsoutheastwest.json new file mode 100644 index 00000000..190ad0c2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenuetsoutheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenuetsoutheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportavenuexnorthsoutheastwest.json b/src/main/resources/assets/imsm/blockstates/transportavenuexnorthsoutheastwest.json new file mode 100644 index 00000000..1d97eebe --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportavenuexnorthsoutheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportavenuexnorthsoutheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenue1eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue1eastwest.json new file mode 100644 index 00000000..3cafed54 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenue1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenue1northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue1northsouth.json new file mode 100644 index 00000000..a7e75dba --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenue1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenue2northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue2northsouth.json new file mode 100644 index 00000000..f33936e4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue2northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenue2northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenue2southwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue2southwest.json new file mode 100644 index 00000000..faa733c1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue2southwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenue2southwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenue3eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue3eastwest.json new file mode 100644 index 00000000..a8dd47db --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue3eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenue3eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenue3northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue3northsouth.json new file mode 100644 index 00000000..3617202c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue3northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenue3northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenue4eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue4eastwest.json new file mode 100644 index 00000000..34b4560b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue4eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenue4eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenue4northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue4northsouth.json new file mode 100644 index 00000000..c26335f8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenue4northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenue4northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelnortheast.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelnortheast.json new file mode 100644 index 00000000..577596bd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenuelnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelnorthwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelnorthwest.json new file mode 100644 index 00000000..bbf23698 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenuelnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelsoutheast.json new file mode 100644 index 00000000..dfb653db --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenuelsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelsouthwest.json new file mode 100644 index 00000000..9c291da0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeavenuelsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeavenuelsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighway1eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighway1eastwest.json new file mode 100644 index 00000000..e6f00493 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighway1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighway1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighway1northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighway1northsouth.json new file mode 100644 index 00000000..1857145a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighway1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighway1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighway2eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighway2eastwest.json new file mode 100644 index 00000000..c7bbf9bf --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighway2eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighway2eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighway2northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighway2northsouth.json new file mode 100644 index 00000000..f20594d9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighway2northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighway2northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighway3eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighway3eastwest.json new file mode 100644 index 00000000..c7ae2f03 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighway3eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighway3eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighway3northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighway3northsouth.json new file mode 100644 index 00000000..87310f39 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighway3northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighway3northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighway4eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighway4eastwest.json new file mode 100644 index 00000000..b2efcdc0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighway4eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighway4eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighway4northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighway4northsouth.json new file mode 100644 index 00000000..8a035a90 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighway4northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighway4northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylnortheast.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylnortheast.json new file mode 100644 index 00000000..3cd6e4f1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighwaylnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylnorthwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylnorthwest.json new file mode 100644 index 00000000..65bfde86 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighwaylnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylsoutheast.json new file mode 100644 index 00000000..89800f8d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighwaylsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylsouthwest.json new file mode 100644 index 00000000..d81fe72c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgehighwaylsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgehighwaylsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeroad1eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgeroad1eastwest.json new file mode 100644 index 00000000..d103670d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeroad1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeroad1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeroad1northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgeroad1northsouth.json new file mode 100644 index 00000000..5eb00c39 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeroad1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeroad1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeroad2eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgeroad2eastwest.json new file mode 100644 index 00000000..36763579 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeroad2eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeroad2eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeroad2northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgeroad2northsouth.json new file mode 100644 index 00000000..54dcaf5f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeroad2northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeroad2northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeroadlnortheast.json b/src/main/resources/assets/imsm/blockstates/transportbridgeroadlnortheast.json new file mode 100644 index 00000000..75d0a322 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeroadlnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeroadlnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeroadlnorthwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgeroadlnorthwest.json new file mode 100644 index 00000000..dc1425d8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeroadlnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeroadlnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeroadlsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportbridgeroadlsoutheast.json new file mode 100644 index 00000000..21e57546 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeroadlsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeroadlsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgeroadlsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgeroadlsouthwest.json new file mode 100644 index 00000000..99f95cd4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgeroadlsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgeroadlsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgestreet1eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgestreet1eastwest.json new file mode 100644 index 00000000..d3d3dd36 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgestreet1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgestreet1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgestreet1northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgestreet1northsouth.json new file mode 100644 index 00000000..dfd79c10 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgestreet1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgestreet1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgestreet2eastwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgestreet2eastwest.json new file mode 100644 index 00000000..238cc353 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgestreet2eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgestreet2eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgestreet2northsouth.json b/src/main/resources/assets/imsm/blockstates/transportbridgestreet2northsouth.json new file mode 100644 index 00000000..c38a3dbc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgestreet2northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgestreet2northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgestreetlnortheast.json b/src/main/resources/assets/imsm/blockstates/transportbridgestreetlnortheast.json new file mode 100644 index 00000000..e6a0ffeb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgestreetlnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgestreetlnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgestreetlnorthwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgestreetlnorthwest.json new file mode 100644 index 00000000..5a26c9aa --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgestreetlnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgestreetlnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgestreetlsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportbridgestreetlsoutheast.json new file mode 100644 index 00000000..cbc3107a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgestreetlsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgestreetlsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportbridgestreetlsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportbridgestreetlsouthwest.json new file mode 100644 index 00000000..8cd51b8f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportbridgestreetlsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportbridgestreetlsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_eaststreet_northwestside.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_eaststreet_northwestside.json new file mode 100644 index 00000000..abf36634 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_eaststreet_northwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_street1avenue_eaststreet_northwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_eaststreet_southwestside.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_eaststreet_southwestside.json new file mode 100644 index 00000000..47ba98b9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_eaststreet_southwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_street1avenue_eaststreet_southwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_northstreet_southeastside.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_northstreet_southeastside.json new file mode 100644 index 00000000..1b01f9ab --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_northstreet_southeastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_street1avenue_northstreet_southeastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_northstreet_southwestside.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_northstreet_southwestside.json new file mode 100644 index 00000000..b2872cef --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_northstreet_southwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_street1avenue_northstreet_southwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_southstreet_northeastside.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_southstreet_northeastside.json new file mode 100644 index 00000000..6e715fab --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_southstreet_northeastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_street1avenue_southstreet_northeastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_southstreet_northwestside.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_southstreet_northwestside.json new file mode 100644 index 00000000..3253e195 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_southstreet_northwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_street1avenue_southstreet_northwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_weststreet_northeastside.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_weststreet_northeastside.json new file mode 100644 index 00000000..1017a7c4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_weststreet_northeastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_street1avenue_weststreet_northeastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_weststreet_southeastside.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_weststreet_southeastside.json new file mode 100644 index 00000000..d54c3dbb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_street1avenue_weststreet_southeastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_street1avenue_weststreet_southeastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_eaststreet_north.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_eaststreet_north.json new file mode 100644 index 00000000..1a3dbfec --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_eaststreet_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streetlavenue_eaststreet_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_eaststreet_south.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_eaststreet_south.json new file mode 100644 index 00000000..78e9dde2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_eaststreet_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streetlavenue_eaststreet_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_northstreet_east.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_northstreet_east.json new file mode 100644 index 00000000..baaadfc8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_northstreet_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streetlavenue_northstreet_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_northstreet_west.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_northstreet_west.json new file mode 100644 index 00000000..a2de121e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_northstreet_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streetlavenue_northstreet_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_southstreet_east.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_southstreet_east.json new file mode 100644 index 00000000..4f28704a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_southstreet_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streetlavenue_southstreet_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_southstreet_west.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_southstreet_west.json new file mode 100644 index 00000000..c778241c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_southstreet_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streetlavenue_southstreet_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_weststreet_north.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_weststreet_north.json new file mode 100644 index 00000000..e7513dde --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_weststreet_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streetlavenue_weststreet_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_weststreet_south.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_weststreet_south.json new file mode 100644 index 00000000..89882976 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetlavenue_weststreet_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streetlavenue_weststreet_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_eaststreet_northsouth.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_eaststreet_northsouth.json new file mode 100644 index 00000000..a405298c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_eaststreet_northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streettavenue_eaststreet_northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_eastweststreet_north.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_eastweststreet_north.json new file mode 100644 index 00000000..138eeeb0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_eastweststreet_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streettavenue_eastweststreet_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_eastweststreet_south.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_eastweststreet_south.json new file mode 100644 index 00000000..c57b788c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_eastweststreet_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streettavenue_eastweststreet_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_northsouthstreet_east.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_northsouthstreet_east.json new file mode 100644 index 00000000..b062a825 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_northsouthstreet_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streettavenue_northsouthstreet_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_northsouthstreet_west.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_northsouthstreet_west.json new file mode 100644 index 00000000..6a5fd387 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_northsouthstreet_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streettavenue_northsouthstreet_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_northstreet_eastwest.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_northstreet_eastwest.json new file mode 100644 index 00000000..0a9db06e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_northstreet_eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streettavenue_northstreet_eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_southstreet_eastwest.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_southstreet_eastwest.json new file mode 100644 index 00000000..53a28173 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_southstreet_eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streettavenue_southstreet_eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_weststreet_northsouth.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_weststreet_northsouth.json new file mode 100644 index 00000000..99752627 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streettavenue_weststreet_northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streettavenue_weststreet_northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetxavenue_eastweststreet_northsouth.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetxavenue_eastweststreet_northsouth.json new file mode 100644 index 00000000..74eabc92 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetxavenue_eastweststreet_northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streetxavenue_eastweststreet_northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest.json b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest.json new file mode 100644 index 00000000..5d25ec15 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_eastavenue_west.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_eastavenue_west.json new file mode 100644 index 00000000..8613a1cd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_eastavenue_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_avenuebridge_eastavenue_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_northavenue_south.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_northavenue_south.json new file mode 100644 index 00000000..3c27417d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_northavenue_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_avenuebridge_northavenue_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_southavenue_north.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_southavenue_north.json new file mode 100644 index 00000000..fbfd34a1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_southavenue_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_avenuebridge_southavenue_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_westavenue_east.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_westavenue_east.json new file mode 100644 index 00000000..601c1449 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_avenuebridge_westavenue_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_avenuebridge_westavenue_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_eastroad_west.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_eastroad_west.json new file mode 100644 index 00000000..46159a93 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_eastroad_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_roadbridge_eastroad_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_northroad_south.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_northroad_south.json new file mode 100644 index 00000000..06855fdd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_northroad_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_roadbridge_northroad_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_southroad_north.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_southroad_north.json new file mode 100644 index 00000000..f6e7b923 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_southroad_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_roadbridge_southroad_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_westroad_east.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_westroad_east.json new file mode 100644 index 00000000..46996b54 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_roadbridge_westroad_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_roadbridge_westroad_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_eaststreet_west.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_eaststreet_west.json new file mode 100644 index 00000000..c7277ab9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_eaststreet_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_streetbridge_eaststreet_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_northstreet_south.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_northstreet_south.json new file mode 100644 index 00000000..179ea3f0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_northstreet_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_streetbridge_northstreet_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_southstreet_north.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_southstreet_north.json new file mode 100644 index 00000000..fe60b475 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_southstreet_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_streetbridge_southstreet_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_weststreet_east.json b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_weststreet_east.json new file mode 100644 index 00000000..ed61da32 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorbridge_streetbridge_weststreet_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorbridge_streetbridge_weststreet_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_eastavenue_west.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_eastavenue_west.json new file mode 100644 index 00000000..f1222c83 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_eastavenue_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighway_avenuehighway_eastavenue_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_northavenue_south.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_northavenue_south.json new file mode 100644 index 00000000..1fe2abea --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_northavenue_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighway_avenuehighway_northavenue_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_southavenue_north.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_southavenue_north.json new file mode 100644 index 00000000..95a26192 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_southavenue_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighway_avenuehighway_southavenue_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_westavenue_east.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_westavenue_east.json new file mode 100644 index 00000000..f395459f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_avenuehighway_westavenue_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighway_avenuehighway_westavenue_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west.json new file mode 100644 index 00000000..3922afd0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south.json new file mode 100644 index 00000000..1722c87c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north.json new file mode 100644 index 00000000..c456ebeb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east.json new file mode 100644 index 00000000..e62ea128 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west.json new file mode 100644 index 00000000..a296acaa --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south.json new file mode 100644 index 00000000..1016ddcd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north.json new file mode 100644 index 00000000..b0f2e32b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east.json b/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east.json new file mode 100644 index 00000000..3cd0427f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourbigeast.json b/src/main/resources/assets/imsm/blockstates/transportharbourbigeast.json new file mode 100644 index 00000000..52ba1ce4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourbigeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourbigeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourbignorth.json b/src/main/resources/assets/imsm/blockstates/transportharbourbignorth.json new file mode 100644 index 00000000..e93ad8e3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourbignorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourbignorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourbigsouth.json b/src/main/resources/assets/imsm/blockstates/transportharbourbigsouth.json new file mode 100644 index 00000000..e7cbc90a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourbigsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourbigsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourbigwest.json b/src/main/resources/assets/imsm/blockstates/transportharbourbigwest.json new file mode 100644 index 00000000..4f12f632 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourbigwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourbigwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside1cornernortheast.json b/src/main/resources/assets/imsm/blockstates/transportharbourside1cornernortheast.json new file mode 100644 index 00000000..25dd47fa --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside1cornernortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside1cornernortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside1cornernorthwest.json b/src/main/resources/assets/imsm/blockstates/transportharbourside1cornernorthwest.json new file mode 100644 index 00000000..8ad51c7f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside1cornernorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside1cornernorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside1cornersoutheast.json b/src/main/resources/assets/imsm/blockstates/transportharbourside1cornersoutheast.json new file mode 100644 index 00000000..ace54681 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside1cornersoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside1cornersoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside1cornersouthwest.json b/src/main/resources/assets/imsm/blockstates/transportharbourside1cornersouthwest.json new file mode 100644 index 00000000..b8eb2077 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside1cornersouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside1cornersouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercraneeast.json b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercraneeast.json new file mode 100644 index 00000000..fcb38e52 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercraneeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside2cornercraneeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercranenorth.json b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercranenorth.json new file mode 100644 index 00000000..82f0b7d9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercranenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside2cornercranenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercranesouth.json b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercranesouth.json new file mode 100644 index 00000000..d15d6820 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercranesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside2cornercranesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercranewest.json b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercranewest.json new file mode 100644 index 00000000..e1bf2bfb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornercranewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside2cornercranewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside2cornereast.json b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornereast.json new file mode 100644 index 00000000..7faab4df --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornereast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside2cornereast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside2cornernorth.json b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornernorth.json new file mode 100644 index 00000000..5de3f432 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornernorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside2cornernorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside2cornersouth.json b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornersouth.json new file mode 100644 index 00000000..f352404b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornersouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside2cornersouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside2cornerwest.json b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornerwest.json new file mode 100644 index 00000000..726e1593 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside2cornerwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside2cornerwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernortheast_northwest_southeast.json b/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernortheast_northwest_southeast.json new file mode 100644 index 00000000..0a1dc78b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernortheast_northwest_southeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside3cornernortheast_northwest_southeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernortheast_northwest_southwest.json b/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernortheast_northwest_southwest.json new file mode 100644 index 00000000..fa8b54dd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernortheast_northwest_southwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside3cornernortheast_northwest_southwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernortheast_southeast_southwest.json b/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernortheast_southeast_southwest.json new file mode 100644 index 00000000..0379cf0f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernortheast_southeast_southwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside3cornernortheast_southeast_southwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernorthwest_southeast_southwest.json b/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernorthwest_southeast_southwest.json new file mode 100644 index 00000000..ca51584c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharbourside3cornernorthwest_southeast_southwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharbourside3cornernorthwest_southeast_southwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharboursmalleast.json b/src/main/resources/assets/imsm/blockstates/transportharboursmalleast.json new file mode 100644 index 00000000..b822fa84 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharboursmalleast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharboursmalleast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharboursmallnorth.json b/src/main/resources/assets/imsm/blockstates/transportharboursmallnorth.json new file mode 100644 index 00000000..9402702b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharboursmallnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharboursmallnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharboursmallsouth.json b/src/main/resources/assets/imsm/blockstates/transportharboursmallsouth.json new file mode 100644 index 00000000..e742e911 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharboursmallsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharboursmallsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportharboursmallwest.json b/src/main/resources/assets/imsm/blockstates/transportharboursmallwest.json new file mode 100644 index 00000000..4cda2e97 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportharboursmallwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportharboursmallwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighway05eastwestnorthside.json b/src/main/resources/assets/imsm/blockstates/transporthighway05eastwestnorthside.json new file mode 100644 index 00000000..f6edf25b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighway05eastwestnorthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighway05eastwestnorthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighway05eastwestsouthside.json b/src/main/resources/assets/imsm/blockstates/transporthighway05eastwestsouthside.json new file mode 100644 index 00000000..9960e8c0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighway05eastwestsouthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighway05eastwestsouthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighway05northsoutheastside.json b/src/main/resources/assets/imsm/blockstates/transporthighway05northsoutheastside.json new file mode 100644 index 00000000..1efe573a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighway05northsoutheastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighway05northsoutheastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighway05northsouthwestside.json b/src/main/resources/assets/imsm/blockstates/transporthighway05northsouthwestside.json new file mode 100644 index 00000000..c6d871cc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighway05northsouthwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighway05northsouthwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighway1eastwest.json b/src/main/resources/assets/imsm/blockstates/transporthighway1eastwest.json new file mode 100644 index 00000000..1e416943 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighway1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighway1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighway1northsouth.json b/src/main/resources/assets/imsm/blockstates/transporthighway1northsouth.json new file mode 100644 index 00000000..4f33c4eb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighway1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighway1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighway2eastwest.json b/src/main/resources/assets/imsm/blockstates/transporthighway2eastwest.json new file mode 100644 index 00000000..3db65948 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighway2eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighway2eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighway2northsouth.json b/src/main/resources/assets/imsm/blockstates/transporthighway2northsouth.json new file mode 100644 index 00000000..48f82b28 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighway2northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighway2northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayeastwesteastside.json b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayeastwesteastside.json new file mode 100644 index 00000000..e6e225a7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayeastwesteastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaydrivewayeastwesteastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayeastwestwestside.json b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayeastwestwestside.json new file mode 100644 index 00000000..b15406be --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayeastwestwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaydrivewayeastwestwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexiteastwesteastside.json b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexiteastwesteastside.json new file mode 100644 index 00000000..2c16b5d3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexiteastwesteastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaydrivewayexiteastwesteastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexiteastwestwestside.json b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexiteastwestwestside.json new file mode 100644 index 00000000..5fa7dca5 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexiteastwestwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaydrivewayexiteastwestwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexitnorthsouthnorthside.json new file mode 100644 index 00000000..1e21c060 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaydrivewayexitnorthsouthnorthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexitnorthsouthsouthside.json new file mode 100644 index 00000000..5d6ff20e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewayexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaydrivewayexitnorthsouthsouthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewaynorthsouthnorthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewaynorthsouthnorthside.json new file mode 100644 index 00000000..d9cda6fa --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewaynorthsouthnorthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaydrivewaynorthsouthnorthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewaynorthsouthsouthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewaynorthsouthsouthside.json new file mode 100644 index 00000000..e74be068 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaydrivewaynorthsouthsouthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaydrivewaynorthsouthsouthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayexiteastwesteastside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayexiteastwesteastside.json new file mode 100644 index 00000000..d1b178bd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayexiteastwesteastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayexiteastwesteastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayexiteastwestwestside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayexiteastwestwestside.json new file mode 100644 index 00000000..f8ab5e68 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayexiteastwestwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayexiteastwestwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayexitnorthsouthnorthside.json new file mode 100644 index 00000000..38c265da --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayexitnorthsouthnorthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayexitnorthsouthsouthside.json new file mode 100644 index 00000000..c6aa012c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayexitnorthsouthsouthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05eastwestnorthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05eastwestnorthside.json new file mode 100644 index 00000000..ee63fb86 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05eastwestnorthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloor05eastwestnorthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05eastwestsouthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05eastwestsouthside.json new file mode 100644 index 00000000..53799e83 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05eastwestsouthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloor05eastwestsouthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05northsoutheastside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05northsoutheastside.json new file mode 100644 index 00000000..04ada445 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05northsoutheastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloor05northsoutheastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05northsouthwestside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05northsouthwestside.json new file mode 100644 index 00000000..9dcbe344 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor05northsouthwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloor05northsouthwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloor1eastwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor1eastwest.json new file mode 100644 index 00000000..23f6cb2c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloor1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloor1northsouth.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor1northsouth.json new file mode 100644 index 00000000..454891e8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloor1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloor2eastwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor2eastwest.json new file mode 100644 index 00000000..d9b1f16c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor2eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloor2eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloor2northsouth.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor2northsouth.json new file mode 100644 index 00000000..a8aa74bf --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloor2northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloor2northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayeastwesteastside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayeastwesteastside.json new file mode 100644 index 00000000..143df9d2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayeastwesteastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloordrivewayeastwesteastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayeastwestwestside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayeastwestwestside.json new file mode 100644 index 00000000..452937e9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayeastwestwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloordrivewayeastwestwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexiteastwesteastside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexiteastwesteastside.json new file mode 100644 index 00000000..769bd485 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexiteastwesteastside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloordrivewayexiteastwesteastside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexiteastwestwestside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexiteastwestwestside.json new file mode 100644 index 00000000..faa044fb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexiteastwestwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloordrivewayexiteastwestwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexitnorthsouthnorthside.json new file mode 100644 index 00000000..90b51bc8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloordrivewayexitnorthsouthnorthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexitnorthsouthsouthside.json new file mode 100644 index 00000000..d98c8e35 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewayexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloordrivewayexitnorthsouthsouthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewaynorthsouthnorthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewaynorthsouthnorthside.json new file mode 100644 index 00000000..b23904af --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewaynorthsouthnorthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloordrivewaynorthsouthnorthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewaynorthsouthsouthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewaynorthsouthsouthside.json new file mode 100644 index 00000000..c5e3b1e9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloordrivewaynorthsouthsouthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloordrivewaynorthsouthsouthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexiteastwesteast.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexiteastwesteast.json new file mode 100644 index 00000000..818810ea --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexiteastwesteast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloorexiteastwesteast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexiteastwestwestside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexiteastwestwestside.json new file mode 100644 index 00000000..fb914644 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexiteastwestwestside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloorexiteastwestwestside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexitnorthsouthnorthside.json new file mode 100644 index 00000000..91ef6b13 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloorexitnorthsouthnorthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexitnorthsouthsouthside.json new file mode 100644 index 00000000..64fd87c9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloorexitnorthsouthsouthside"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlnortheast.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlnortheast.json new file mode 100644 index 00000000..3d5073f4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloorlnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlnorthwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlnorthwest.json new file mode 100644 index 00000000..5bfde604 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloorlnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlsoutheast.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlsoutheast.json new file mode 100644 index 00000000..32192257 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloorlsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlsouthwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlsouthwest.json new file mode 100644 index 00000000..e39bff9f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorlsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloorlsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloortnortheastwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloortnortheastwest.json new file mode 100644 index 00000000..9776bf08 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloortnortheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloortnortheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloortnorthsoutheast.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloortnorthsoutheast.json new file mode 100644 index 00000000..0dda166f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloortnorthsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloortnorthsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloortnorthsouthwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloortnorthsouthwest.json new file mode 100644 index 00000000..b052cf0f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloortnorthsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloortnorthsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloortsoutheastwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloortsoutheastwest.json new file mode 100644 index 00000000..ae0595e6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloortsoutheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloortsoutheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayfloorxnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorxnortheastsouthwest.json new file mode 100644 index 00000000..e6db0281 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayfloorxnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayfloorxnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaylnortheast.json b/src/main/resources/assets/imsm/blockstates/transporthighwaylnortheast.json new file mode 100644 index 00000000..231a1131 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaylnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaylnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaylnorthwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwaylnorthwest.json new file mode 100644 index 00000000..9c4e913b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaylnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaylnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaylsoutheast.json b/src/main/resources/assets/imsm/blockstates/transporthighwaylsoutheast.json new file mode 100644 index 00000000..433d677c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaylsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaylsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaylsouthwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwaylsouthwest.json new file mode 100644 index 00000000..e4161470 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaylsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaylsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaytnortheastwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwaytnortheastwest.json new file mode 100644 index 00000000..c621a306 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaytnortheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaytnortheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaytnorthsoutheast.json b/src/main/resources/assets/imsm/blockstates/transporthighwaytnorthsoutheast.json new file mode 100644 index 00000000..a03a8180 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaytnorthsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaytnorthsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaytnorthsouthwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwaytnorthsouthwest.json new file mode 100644 index 00000000..ccfad644 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaytnorthsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaytnorthsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwaytsoutheastwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwaytsoutheastwest.json new file mode 100644 index 00000000..1a4051e7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwaytsoutheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwaytsoutheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transporthighwayxnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/transporthighwayxnortheastsouthwest.json new file mode 100644 index 00000000..ee33f38f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transporthighwayxnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transporthighwayxnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_easttram_west.json b/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_easttram_west.json new file mode 100644 index 00000000..55461877 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_easttram_west.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublicconnectorhightram_tramhightram_easttram_west"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_northtram_south.json b/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_northtram_south.json new file mode 100644 index 00000000..87785044 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_northtram_south.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublicconnectorhightram_tramhightram_northtram_south"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_southtram_north.json b/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_southtram_north.json new file mode 100644 index 00000000..2fcaf401 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_southtram_north.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublicconnectorhightram_tramhightram_southtram_north"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_westtram_east.json b/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_westtram_east.json new file mode 100644 index 00000000..293a479d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublicconnectorhightram_tramhightram_westtram_east.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublicconnectorhightram_tramhightram_westtram_east"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightram1eastwest.json b/src/main/resources/assets/imsm/blockstates/transportpublichightram1eastwest.json new file mode 100644 index 00000000..3fe579db --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightram1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightram1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightram1northsouth.json b/src/main/resources/assets/imsm/blockstates/transportpublichightram1northsouth.json new file mode 100644 index 00000000..35aca686 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightram1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightram1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightrameeast.json b/src/main/resources/assets/imsm/blockstates/transportpublichightrameeast.json new file mode 100644 index 00000000..55dc7035 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightrameeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightrameeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightramenorth.json b/src/main/resources/assets/imsm/blockstates/transportpublichightramenorth.json new file mode 100644 index 00000000..6294ec18 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightramenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightramenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightramesouth.json b/src/main/resources/assets/imsm/blockstates/transportpublichightramesouth.json new file mode 100644 index 00000000..c3b2bd04 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightramesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightramesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightramewest.json b/src/main/resources/assets/imsm/blockstates/transportpublichightramewest.json new file mode 100644 index 00000000..770b439d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightramewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightramewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightramlnortheast.json b/src/main/resources/assets/imsm/blockstates/transportpublichightramlnortheast.json new file mode 100644 index 00000000..e0e1fce4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightramlnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightramlnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightramlnorthwest.json b/src/main/resources/assets/imsm/blockstates/transportpublichightramlnorthwest.json new file mode 100644 index 00000000..1517b529 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightramlnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightramlnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightramlsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportpublichightramlsoutheast.json new file mode 100644 index 00000000..6ee6ea05 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightramlsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightramlsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightramlsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportpublichightramlsouthwest.json new file mode 100644 index 00000000..ec7ee126 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightramlsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightramlsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightramstationeastwest.json b/src/main/resources/assets/imsm/blockstates/transportpublichightramstationeastwest.json new file mode 100644 index 00000000..9d4402a6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightramstationeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightramstationeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightramstationnorthsouth.json b/src/main/resources/assets/imsm/blockstates/transportpublichightramstationnorthsouth.json new file mode 100644 index 00000000..5de4dce4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightramstationnorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightramstationnorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublichightramxnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportpublichightramxnortheastsouthwest.json new file mode 100644 index 00000000..80f1bfda --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublichightramxnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublichightramxnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram1eastwest.json b/src/main/resources/assets/imsm/blockstates/transportpublictram1eastwest.json new file mode 100644 index 00000000..a51da13a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram1northsouth.json b/src/main/resources/assets/imsm/blockstates/transportpublictram1northsouth.json new file mode 100644 index 00000000..535d3989 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram_on_road1eastwest.json b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_road1eastwest.json new file mode 100644 index 00000000..d0ae8a4e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_road1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram_on_road1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram_on_road1northsouth.json b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_road1northsouth.json new file mode 100644 index 00000000..265dd054 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_road1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram_on_road1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadeeast.json b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadeeast.json new file mode 100644 index 00000000..fbb4ea24 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadeeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram_on_roadeeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadenorth.json b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadenorth.json new file mode 100644 index 00000000..f9ffbf1a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram_on_roadenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadesouth.json b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadesouth.json new file mode 100644 index 00000000..41d97698 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram_on_roadesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadewest.json b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadewest.json new file mode 100644 index 00000000..0c3b27eb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram_on_roadewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlnortheast.json b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlnortheast.json new file mode 100644 index 00000000..0b2e63e7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram_on_roadlnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlnorthwest.json b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlnorthwest.json new file mode 100644 index 00000000..3d5abb0f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram_on_roadlnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlsoutheast.json new file mode 100644 index 00000000..caea093f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram_on_roadlsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlsouthwest.json new file mode 100644 index 00000000..08d05ea6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictram_on_roadlsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictram_on_roadlsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictrameeast.json b/src/main/resources/assets/imsm/blockstates/transportpublictrameeast.json new file mode 100644 index 00000000..fff5973c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictrameeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictrameeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictramenorth.json b/src/main/resources/assets/imsm/blockstates/transportpublictramenorth.json new file mode 100644 index 00000000..69988581 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictramenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictramenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictramesouth.json b/src/main/resources/assets/imsm/blockstates/transportpublictramesouth.json new file mode 100644 index 00000000..16540e66 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictramesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictramesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictramewest.json b/src/main/resources/assets/imsm/blockstates/transportpublictramewest.json new file mode 100644 index 00000000..2d7f1ae1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictramewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictramewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictramlnortheast.json b/src/main/resources/assets/imsm/blockstates/transportpublictramlnortheast.json new file mode 100644 index 00000000..bf3c2aa3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictramlnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictramlnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictramlnorthwest.json b/src/main/resources/assets/imsm/blockstates/transportpublictramlnorthwest.json new file mode 100644 index 00000000..e5a9a108 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictramlnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictramlnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictramlsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportpublictramlsoutheast.json new file mode 100644 index 00000000..2fb38bdc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictramlsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictramlsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictramlsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportpublictramlsouthwest.json new file mode 100644 index 00000000..1852016f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictramlsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictramlsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictramstationeastwest.json b/src/main/resources/assets/imsm/blockstates/transportpublictramstationeastwest.json new file mode 100644 index 00000000..c9ca9e19 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictramstationeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictramstationeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictramstationnorthsouth.json b/src/main/resources/assets/imsm/blockstates/transportpublictramstationnorthsouth.json new file mode 100644 index 00000000..e5c28c58 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictramstationnorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictramstationnorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportpublictramxnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportpublictramxnortheastsouthwest.json new file mode 100644 index 00000000..e2cd5805 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportpublictramxnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportpublictramxnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroad1eastwest.json b/src/main/resources/assets/imsm/blockstates/transportroad1eastwest.json new file mode 100644 index 00000000..e2195c82 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroad1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroad1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroad1northsouth.json b/src/main/resources/assets/imsm/blockstates/transportroad1northsouth.json new file mode 100644 index 00000000..11748d74 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroad1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroad1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadeeast.json b/src/main/resources/assets/imsm/blockstates/transportroadeeast.json new file mode 100644 index 00000000..d523b9a1 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadeeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadeeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadenorth.json b/src/main/resources/assets/imsm/blockstates/transportroadenorth.json new file mode 100644 index 00000000..1fef4fd0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadesouth.json b/src/main/resources/assets/imsm/blockstates/transportroadesouth.json new file mode 100644 index 00000000..315c73c7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadewest.json b/src/main/resources/assets/imsm/blockstates/transportroadewest.json new file mode 100644 index 00000000..e0160ad6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadlnortheast.json b/src/main/resources/assets/imsm/blockstates/transportroadlnortheast.json new file mode 100644 index 00000000..09dc7cf9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadlnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadlnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadlnorthwest.json b/src/main/resources/assets/imsm/blockstates/transportroadlnorthwest.json new file mode 100644 index 00000000..97a2a012 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadlnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadlnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadlsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportroadlsoutheast.json new file mode 100644 index 00000000..10c2ee2f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadlsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadlsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadlsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportroadlsouthwest.json new file mode 100644 index 00000000..2900e550 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadlsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadlsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadtnortheastwest.json b/src/main/resources/assets/imsm/blockstates/transportroadtnortheastwest.json new file mode 100644 index 00000000..787ccb5f --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadtnortheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadtnortheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadtnorthsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportroadtnorthsoutheast.json new file mode 100644 index 00000000..3bac2704 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadtnorthsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadtnorthsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadtnorthsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportroadtnorthsouthwest.json new file mode 100644 index 00000000..3bfe0f20 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadtnorthsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadtnorthsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadtsoutheastwest.json b/src/main/resources/assets/imsm/blockstates/transportroadtsoutheastwest.json new file mode 100644 index 00000000..26e0345d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadtsoutheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadtsoutheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportroadxnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportroadxnortheastsouthwest.json new file mode 100644 index 00000000..9c43ab13 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportroadxnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportroadxnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreet1eastwest.json b/src/main/resources/assets/imsm/blockstates/transportstreet1eastwest.json new file mode 100644 index 00000000..fcd26f58 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreet1eastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreet1eastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreet1northsouth.json b/src/main/resources/assets/imsm/blockstates/transportstreet1northsouth.json new file mode 100644 index 00000000..a9113ea8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreet1northsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreet1northsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreeteeast.json b/src/main/resources/assets/imsm/blockstates/transportstreeteeast.json new file mode 100644 index 00000000..5a5616cb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreeteeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreeteeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreetenorth.json b/src/main/resources/assets/imsm/blockstates/transportstreetenorth.json new file mode 100644 index 00000000..9e0ac1d8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreetenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreetenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreetesouth.json b/src/main/resources/assets/imsm/blockstates/transportstreetesouth.json new file mode 100644 index 00000000..581dbeef --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreetesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreetesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreetewest.json b/src/main/resources/assets/imsm/blockstates/transportstreetewest.json new file mode 100644 index 00000000..f21fe875 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreetewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreetewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreetlnortheast.json b/src/main/resources/assets/imsm/blockstates/transportstreetlnortheast.json new file mode 100644 index 00000000..ffa9b3e6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreetlnortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreetlnortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreetlnorthwest.json b/src/main/resources/assets/imsm/blockstates/transportstreetlnorthwest.json new file mode 100644 index 00000000..814eacfd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreetlnorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreetlnorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreetlsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportstreetlsoutheast.json new file mode 100644 index 00000000..232f325a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreetlsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreetlsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreetlsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportstreetlsouthwest.json new file mode 100644 index 00000000..9513ffe9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreetlsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreetlsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreetroundaboutnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportstreetroundaboutnortheastsouthwest.json new file mode 100644 index 00000000..df859586 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreetroundaboutnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreetroundaboutnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreettnortheastwest.json b/src/main/resources/assets/imsm/blockstates/transportstreettnortheastwest.json new file mode 100644 index 00000000..e8a226cc --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreettnortheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreettnortheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreettnorthsoutheast.json b/src/main/resources/assets/imsm/blockstates/transportstreettnorthsoutheast.json new file mode 100644 index 00000000..175407cb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreettnorthsoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreettnorthsoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreettnorthsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportstreettnorthsouthwest.json new file mode 100644 index 00000000..e0ce8902 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreettnorthsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreettnorthsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreettsoutheastwest.json b/src/main/resources/assets/imsm/blockstates/transportstreettsoutheastwest.json new file mode 100644 index 00000000..f64653c2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreettsoutheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreettsoutheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportstreetxnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/transportstreetxnortheastsouthwest.json new file mode 100644 index 00000000..43a2e40b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportstreetxnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportstreetxnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater1cornernortheast.json b/src/main/resources/assets/imsm/blockstates/transportwater1cornernortheast.json new file mode 100644 index 00000000..72b956f8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater1cornernortheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater1cornernortheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater1cornernorthwest.json b/src/main/resources/assets/imsm/blockstates/transportwater1cornernorthwest.json new file mode 100644 index 00000000..620b9fe4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater1cornernorthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater1cornernorthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater1cornersoutheast.json b/src/main/resources/assets/imsm/blockstates/transportwater1cornersoutheast.json new file mode 100644 index 00000000..e345bdd4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater1cornersoutheast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater1cornersoutheast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater1cornersouthwest.json b/src/main/resources/assets/imsm/blockstates/transportwater1cornersouthwest.json new file mode 100644 index 00000000..0531447d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater1cornersouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater1cornersouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater2cornereast.json b/src/main/resources/assets/imsm/blockstates/transportwater2cornereast.json new file mode 100644 index 00000000..f03ad28b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater2cornereast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater2cornereast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater2cornernorth.json b/src/main/resources/assets/imsm/blockstates/transportwater2cornernorth.json new file mode 100644 index 00000000..84cde06b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater2cornernorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater2cornernorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater2cornersouth.json b/src/main/resources/assets/imsm/blockstates/transportwater2cornersouth.json new file mode 100644 index 00000000..7f66cb77 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater2cornersouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater2cornersouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater2cornerwest.json b/src/main/resources/assets/imsm/blockstates/transportwater2cornerwest.json new file mode 100644 index 00000000..c9b1dbdd --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater2cornerwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater2cornerwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater3cornernortheast_northwest_southeast.json b/src/main/resources/assets/imsm/blockstates/transportwater3cornernortheast_northwest_southeast.json new file mode 100644 index 00000000..48d93d0b --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater3cornernortheast_northwest_southeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater3cornernortheast_northwest_southeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater3cornernortheast_northwest_southwest.json b/src/main/resources/assets/imsm/blockstates/transportwater3cornernortheast_northwest_southwest.json new file mode 100644 index 00000000..af28f0a7 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater3cornernortheast_northwest_southwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater3cornernortheast_northwest_southwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater3cornersoutheast_southwest_northeast.json b/src/main/resources/assets/imsm/blockstates/transportwater3cornersoutheast_southwest_northeast.json new file mode 100644 index 00000000..6d024f33 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater3cornersoutheast_southwest_northeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater3cornersoutheast_southwest_northeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater3cornersoutheast_southwest_northwest.json b/src/main/resources/assets/imsm/blockstates/transportwater3cornersoutheast_southwest_northwest.json new file mode 100644 index 00000000..22a9746a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater3cornersoutheast_southwest_northwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater3cornersoutheast_southwest_northwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/transportwater4cornernorthsoutheastwest.json b/src/main/resources/assets/imsm/blockstates/transportwater4cornernorthsoutheastwest.json new file mode 100644 index 00000000..9a55db4d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/transportwater4cornernorthsoutheastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/transportwater4cornernorthsoutheastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded0.json b/src/main/resources/assets/imsm/blockstates/useradded0.json index 9046203c..461fd0b1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded0.json +++ b/src/main/resources/assets/imsm/blockstates/useradded0.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded0"}}} +{"variants": {"": {"model": "imsm:block/useradded0"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1.json b/src/main/resources/assets/imsm/blockstates/useradded1.json index c9e06339..699d2e2a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1"}}} +{"variants": {"": {"model": "imsm:block/useradded1"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded10.json b/src/main/resources/assets/imsm/blockstates/useradded10.json index c57203cb..89419168 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded10.json +++ b/src/main/resources/assets/imsm/blockstates/useradded10.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded10"}}} +{"variants": {"": {"model": "imsm:block/useradded10"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded100.json b/src/main/resources/assets/imsm/blockstates/useradded100.json index 683f0548..e0ec764b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded100.json +++ b/src/main/resources/assets/imsm/blockstates/useradded100.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded100"}}} +{"variants": {"": {"model": "imsm:block/useradded100"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1000.json b/src/main/resources/assets/imsm/blockstates/useradded1000.json index 49a47aac..f9ca0d01 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1000.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1000.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1000"}}} +{"variants": {"": {"model": "imsm:block/useradded1000"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1001.json b/src/main/resources/assets/imsm/blockstates/useradded1001.json index fa352049..31d1bb01 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1001.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1001.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1001"}}} +{"variants": {"": {"model": "imsm:block/useradded1001"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1002.json b/src/main/resources/assets/imsm/blockstates/useradded1002.json index ea1fb08d..dc2d263f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1002.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1002.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1002"}}} +{"variants": {"": {"model": "imsm:block/useradded1002"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1003.json b/src/main/resources/assets/imsm/blockstates/useradded1003.json index 4f2579b2..2b862b2b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1003.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1003.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1003"}}} +{"variants": {"": {"model": "imsm:block/useradded1003"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1004.json b/src/main/resources/assets/imsm/blockstates/useradded1004.json index 04ace8ad..abcac579 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1004.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1004.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1004"}}} +{"variants": {"": {"model": "imsm:block/useradded1004"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1005.json b/src/main/resources/assets/imsm/blockstates/useradded1005.json index 043e83d6..c92838bf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1005.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1005.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1005"}}} +{"variants": {"": {"model": "imsm:block/useradded1005"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1006.json b/src/main/resources/assets/imsm/blockstates/useradded1006.json index 2322dd23..4907f6c9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1006.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1006.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1006"}}} +{"variants": {"": {"model": "imsm:block/useradded1006"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1007.json b/src/main/resources/assets/imsm/blockstates/useradded1007.json index 77185808..db36a5b3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1007.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1007.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1007"}}} +{"variants": {"": {"model": "imsm:block/useradded1007"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1008.json b/src/main/resources/assets/imsm/blockstates/useradded1008.json index adc0edc5..55d5febe 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1008.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1008.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1008"}}} +{"variants": {"": {"model": "imsm:block/useradded1008"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1009.json b/src/main/resources/assets/imsm/blockstates/useradded1009.json index d1a3055f..49c0214c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1009.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1009.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1009"}}} +{"variants": {"": {"model": "imsm:block/useradded1009"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded101.json b/src/main/resources/assets/imsm/blockstates/useradded101.json index bcbf7b88..bdd1e7f2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded101.json +++ b/src/main/resources/assets/imsm/blockstates/useradded101.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded101"}}} +{"variants": {"": {"model": "imsm:block/useradded101"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1010.json b/src/main/resources/assets/imsm/blockstates/useradded1010.json index efddbf5f..784e545a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1010.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1010.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1010"}}} +{"variants": {"": {"model": "imsm:block/useradded1010"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1011.json b/src/main/resources/assets/imsm/blockstates/useradded1011.json index 8e14a38c..49862955 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1011.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1011.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1011"}}} +{"variants": {"": {"model": "imsm:block/useradded1011"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1012.json b/src/main/resources/assets/imsm/blockstates/useradded1012.json index 7178117e..8e841a7f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1012.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1012.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1012"}}} +{"variants": {"": {"model": "imsm:block/useradded1012"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1013.json b/src/main/resources/assets/imsm/blockstates/useradded1013.json index 1aea8986..6ed07523 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1013.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1013.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1013"}}} +{"variants": {"": {"model": "imsm:block/useradded1013"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1014.json b/src/main/resources/assets/imsm/blockstates/useradded1014.json index 04cd323b..ab4c8e4a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1014.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1014.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1014"}}} +{"variants": {"": {"model": "imsm:block/useradded1014"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1015.json b/src/main/resources/assets/imsm/blockstates/useradded1015.json index 63dc373d..dabe720c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1015.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1015.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1015"}}} +{"variants": {"": {"model": "imsm:block/useradded1015"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1016.json b/src/main/resources/assets/imsm/blockstates/useradded1016.json index 9b6d099e..ac7c20b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1016.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1016.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1016"}}} +{"variants": {"": {"model": "imsm:block/useradded1016"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1017.json b/src/main/resources/assets/imsm/blockstates/useradded1017.json index 8c405cb6..9413b3b2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1017.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1017.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1017"}}} +{"variants": {"": {"model": "imsm:block/useradded1017"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1018.json b/src/main/resources/assets/imsm/blockstates/useradded1018.json index bfa31947..e99c1da3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1018.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1018.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1018"}}} +{"variants": {"": {"model": "imsm:block/useradded1018"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1019.json b/src/main/resources/assets/imsm/blockstates/useradded1019.json index c1591632..1ea5878a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1019.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1019.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1019"}}} +{"variants": {"": {"model": "imsm:block/useradded1019"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded102.json b/src/main/resources/assets/imsm/blockstates/useradded102.json index 58f7ec0b..a9da0fd7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded102.json +++ b/src/main/resources/assets/imsm/blockstates/useradded102.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded102"}}} +{"variants": {"": {"model": "imsm:block/useradded102"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1020.json b/src/main/resources/assets/imsm/blockstates/useradded1020.json index 21ff3575..b9eee475 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1020.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1020.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1020"}}} +{"variants": {"": {"model": "imsm:block/useradded1020"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1021.json b/src/main/resources/assets/imsm/blockstates/useradded1021.json index c8a7ede3..5eae590f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1021.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1021.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1021"}}} +{"variants": {"": {"model": "imsm:block/useradded1021"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1022.json b/src/main/resources/assets/imsm/blockstates/useradded1022.json index 2c490f46..55933b98 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1022.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1022.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1022"}}} +{"variants": {"": {"model": "imsm:block/useradded1022"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1023.json b/src/main/resources/assets/imsm/blockstates/useradded1023.json index 9b19887c..b2265fee 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1023.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1023.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1023"}}} +{"variants": {"": {"model": "imsm:block/useradded1023"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1024.json b/src/main/resources/assets/imsm/blockstates/useradded1024.json index 7956e63f..86b9fa70 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1024.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1024.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1024"}}} +{"variants": {"": {"model": "imsm:block/useradded1024"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1025.json b/src/main/resources/assets/imsm/blockstates/useradded1025.json index e333f195..1d6e8f48 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1025.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1025.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1025"}}} +{"variants": {"": {"model": "imsm:block/useradded1025"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1026.json b/src/main/resources/assets/imsm/blockstates/useradded1026.json index c5a15ebd..a4212f4c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1026.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1026.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1026"}}} +{"variants": {"": {"model": "imsm:block/useradded1026"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1027.json b/src/main/resources/assets/imsm/blockstates/useradded1027.json index db3ae0a3..af1449be 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1027.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1027.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1027"}}} +{"variants": {"": {"model": "imsm:block/useradded1027"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1028.json b/src/main/resources/assets/imsm/blockstates/useradded1028.json index 41cb9939..84fdfc81 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1028.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1028.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1028"}}} +{"variants": {"": {"model": "imsm:block/useradded1028"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1029.json b/src/main/resources/assets/imsm/blockstates/useradded1029.json index bc163704..fc67b0a0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1029.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1029.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1029"}}} +{"variants": {"": {"model": "imsm:block/useradded1029"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded103.json b/src/main/resources/assets/imsm/blockstates/useradded103.json index da8a9caa..0265970e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded103.json +++ b/src/main/resources/assets/imsm/blockstates/useradded103.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded103"}}} +{"variants": {"": {"model": "imsm:block/useradded103"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1030.json b/src/main/resources/assets/imsm/blockstates/useradded1030.json index a9fbe70a..66b7cf88 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1030.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1030.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1030"}}} +{"variants": {"": {"model": "imsm:block/useradded1030"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1031.json b/src/main/resources/assets/imsm/blockstates/useradded1031.json index d56e9f69..495f04d5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1031.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1031.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1031"}}} +{"variants": {"": {"model": "imsm:block/useradded1031"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1032.json b/src/main/resources/assets/imsm/blockstates/useradded1032.json index b6b4c828..9fd6719e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1032.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1032.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1032"}}} +{"variants": {"": {"model": "imsm:block/useradded1032"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1033.json b/src/main/resources/assets/imsm/blockstates/useradded1033.json index bfd061e6..eb4b7449 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1033.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1033.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1033"}}} +{"variants": {"": {"model": "imsm:block/useradded1033"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1034.json b/src/main/resources/assets/imsm/blockstates/useradded1034.json index 7247eb05..47c9e87c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1034.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1034.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1034"}}} +{"variants": {"": {"model": "imsm:block/useradded1034"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1035.json b/src/main/resources/assets/imsm/blockstates/useradded1035.json index b8b51f0e..9314b384 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1035.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1035.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1035"}}} +{"variants": {"": {"model": "imsm:block/useradded1035"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1036.json b/src/main/resources/assets/imsm/blockstates/useradded1036.json index d7954a6d..11181a56 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1036.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1036.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1036"}}} +{"variants": {"": {"model": "imsm:block/useradded1036"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1037.json b/src/main/resources/assets/imsm/blockstates/useradded1037.json index 2894edab..60d585a7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1037.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1037.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1037"}}} +{"variants": {"": {"model": "imsm:block/useradded1037"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1038.json b/src/main/resources/assets/imsm/blockstates/useradded1038.json index 6adbfbc3..8adea1b9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1038.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1038.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1038"}}} +{"variants": {"": {"model": "imsm:block/useradded1038"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1039.json b/src/main/resources/assets/imsm/blockstates/useradded1039.json index 04aa06e4..de0dae46 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1039.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1039.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1039"}}} +{"variants": {"": {"model": "imsm:block/useradded1039"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded104.json b/src/main/resources/assets/imsm/blockstates/useradded104.json index e4003ddc..0bcb5ee5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded104.json +++ b/src/main/resources/assets/imsm/blockstates/useradded104.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded104"}}} +{"variants": {"": {"model": "imsm:block/useradded104"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1040.json b/src/main/resources/assets/imsm/blockstates/useradded1040.json index d926a273..3f28b072 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1040.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1040.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1040"}}} +{"variants": {"": {"model": "imsm:block/useradded1040"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1041.json b/src/main/resources/assets/imsm/blockstates/useradded1041.json index 6329594e..cea91b1c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1041.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1041.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1041"}}} +{"variants": {"": {"model": "imsm:block/useradded1041"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1042.json b/src/main/resources/assets/imsm/blockstates/useradded1042.json index e417cdcb..688349b6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1042.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1042.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1042"}}} +{"variants": {"": {"model": "imsm:block/useradded1042"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1043.json b/src/main/resources/assets/imsm/blockstates/useradded1043.json index 1bde32d0..7055b1f4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1043.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1043.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1043"}}} +{"variants": {"": {"model": "imsm:block/useradded1043"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1044.json b/src/main/resources/assets/imsm/blockstates/useradded1044.json index 01526717..562f7832 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1044.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1044.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1044"}}} +{"variants": {"": {"model": "imsm:block/useradded1044"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1045.json b/src/main/resources/assets/imsm/blockstates/useradded1045.json index 9d87c4a8..ff46a645 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1045.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1045.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1045"}}} +{"variants": {"": {"model": "imsm:block/useradded1045"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1046.json b/src/main/resources/assets/imsm/blockstates/useradded1046.json index 9ace7eed..4106750c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1046.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1046.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1046"}}} +{"variants": {"": {"model": "imsm:block/useradded1046"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1047.json b/src/main/resources/assets/imsm/blockstates/useradded1047.json index 51dafa5a..c60a2635 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1047.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1047.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1047"}}} +{"variants": {"": {"model": "imsm:block/useradded1047"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1048.json b/src/main/resources/assets/imsm/blockstates/useradded1048.json index 87692d26..6a23e409 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1048.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1048.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1048"}}} +{"variants": {"": {"model": "imsm:block/useradded1048"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1049.json b/src/main/resources/assets/imsm/blockstates/useradded1049.json index f70ff929..573824b8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1049.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1049.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1049"}}} +{"variants": {"": {"model": "imsm:block/useradded1049"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded105.json b/src/main/resources/assets/imsm/blockstates/useradded105.json index 5d34ea80..08d4b928 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded105.json +++ b/src/main/resources/assets/imsm/blockstates/useradded105.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded105"}}} +{"variants": {"": {"model": "imsm:block/useradded105"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1050.json b/src/main/resources/assets/imsm/blockstates/useradded1050.json index d152e16f..b3f1163d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1050.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1050.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1050"}}} +{"variants": {"": {"model": "imsm:block/useradded1050"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1051.json b/src/main/resources/assets/imsm/blockstates/useradded1051.json index 162ed1c3..e895f2d6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1051.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1051.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1051"}}} +{"variants": {"": {"model": "imsm:block/useradded1051"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1052.json b/src/main/resources/assets/imsm/blockstates/useradded1052.json index 0854e3f4..7bed825b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1052.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1052.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1052"}}} +{"variants": {"": {"model": "imsm:block/useradded1052"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1053.json b/src/main/resources/assets/imsm/blockstates/useradded1053.json index 910c5dbb..9cbaf7a5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1053.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1053.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1053"}}} +{"variants": {"": {"model": "imsm:block/useradded1053"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1054.json b/src/main/resources/assets/imsm/blockstates/useradded1054.json index c9f55af6..72c2dc9a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1054.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1054.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1054"}}} +{"variants": {"": {"model": "imsm:block/useradded1054"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1055.json b/src/main/resources/assets/imsm/blockstates/useradded1055.json index e9d29160..10b98449 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1055.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1055.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1055"}}} +{"variants": {"": {"model": "imsm:block/useradded1055"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1056.json b/src/main/resources/assets/imsm/blockstates/useradded1056.json index 258ee372..41e42868 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1056.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1056.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1056"}}} +{"variants": {"": {"model": "imsm:block/useradded1056"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1057.json b/src/main/resources/assets/imsm/blockstates/useradded1057.json index 013c4214..40475d63 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1057.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1057.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1057"}}} +{"variants": {"": {"model": "imsm:block/useradded1057"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1058.json b/src/main/resources/assets/imsm/blockstates/useradded1058.json index 30a51bba..171cc82c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1058.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1058.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1058"}}} +{"variants": {"": {"model": "imsm:block/useradded1058"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1059.json b/src/main/resources/assets/imsm/blockstates/useradded1059.json index f56bbe88..b1de2410 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1059.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1059.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1059"}}} +{"variants": {"": {"model": "imsm:block/useradded1059"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded106.json b/src/main/resources/assets/imsm/blockstates/useradded106.json index e024b884..c57698fb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded106.json +++ b/src/main/resources/assets/imsm/blockstates/useradded106.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded106"}}} +{"variants": {"": {"model": "imsm:block/useradded106"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1060.json b/src/main/resources/assets/imsm/blockstates/useradded1060.json index a2e7d8fe..c777529e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1060.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1060.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1060"}}} +{"variants": {"": {"model": "imsm:block/useradded1060"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1061.json b/src/main/resources/assets/imsm/blockstates/useradded1061.json index 82f1e3fc..d7ddd273 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1061.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1061.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1061"}}} +{"variants": {"": {"model": "imsm:block/useradded1061"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1062.json b/src/main/resources/assets/imsm/blockstates/useradded1062.json index d6a95dab..00a227af 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1062.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1062.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1062"}}} +{"variants": {"": {"model": "imsm:block/useradded1062"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1063.json b/src/main/resources/assets/imsm/blockstates/useradded1063.json index c34b2f1d..43add562 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1063.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1063.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1063"}}} +{"variants": {"": {"model": "imsm:block/useradded1063"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1064.json b/src/main/resources/assets/imsm/blockstates/useradded1064.json index 9160094b..7eb403e3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1064.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1064.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1064"}}} +{"variants": {"": {"model": "imsm:block/useradded1064"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1065.json b/src/main/resources/assets/imsm/blockstates/useradded1065.json index bfa06dfb..660c05dd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1065.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1065.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1065"}}} +{"variants": {"": {"model": "imsm:block/useradded1065"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1066.json b/src/main/resources/assets/imsm/blockstates/useradded1066.json index c257d010..930d4800 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1066.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1066.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1066"}}} +{"variants": {"": {"model": "imsm:block/useradded1066"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1067.json b/src/main/resources/assets/imsm/blockstates/useradded1067.json index 7f9c9988..3d3c8e52 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1067.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1067.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1067"}}} +{"variants": {"": {"model": "imsm:block/useradded1067"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1068.json b/src/main/resources/assets/imsm/blockstates/useradded1068.json index 96e502e0..1a93b944 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1068.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1068.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1068"}}} +{"variants": {"": {"model": "imsm:block/useradded1068"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1069.json b/src/main/resources/assets/imsm/blockstates/useradded1069.json index b2c1f613..978177b6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1069.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1069.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1069"}}} +{"variants": {"": {"model": "imsm:block/useradded1069"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded107.json b/src/main/resources/assets/imsm/blockstates/useradded107.json index f51fb795..61fc0306 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded107.json +++ b/src/main/resources/assets/imsm/blockstates/useradded107.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded107"}}} +{"variants": {"": {"model": "imsm:block/useradded107"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1070.json b/src/main/resources/assets/imsm/blockstates/useradded1070.json index b29f9237..f4534271 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1070.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1070.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1070"}}} +{"variants": {"": {"model": "imsm:block/useradded1070"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1071.json b/src/main/resources/assets/imsm/blockstates/useradded1071.json index 9abaefb1..02578aa7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1071.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1071.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1071"}}} +{"variants": {"": {"model": "imsm:block/useradded1071"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1072.json b/src/main/resources/assets/imsm/blockstates/useradded1072.json index a51a20c4..70dd8308 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1072.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1072.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1072"}}} +{"variants": {"": {"model": "imsm:block/useradded1072"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1073.json b/src/main/resources/assets/imsm/blockstates/useradded1073.json index 5ccdb825..66b34d3c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1073.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1073.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1073"}}} +{"variants": {"": {"model": "imsm:block/useradded1073"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1074.json b/src/main/resources/assets/imsm/blockstates/useradded1074.json index 8bf2ac27..3d1cd964 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1074.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1074.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1074"}}} +{"variants": {"": {"model": "imsm:block/useradded1074"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1075.json b/src/main/resources/assets/imsm/blockstates/useradded1075.json index f477d8f4..604a0de2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1075.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1075.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1075"}}} +{"variants": {"": {"model": "imsm:block/useradded1075"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1076.json b/src/main/resources/assets/imsm/blockstates/useradded1076.json index 3e18cafa..cc52e021 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1076.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1076.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1076"}}} +{"variants": {"": {"model": "imsm:block/useradded1076"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1077.json b/src/main/resources/assets/imsm/blockstates/useradded1077.json index 2d9d50d2..9538ceab 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1077.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1077.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1077"}}} +{"variants": {"": {"model": "imsm:block/useradded1077"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1078.json b/src/main/resources/assets/imsm/blockstates/useradded1078.json index 72669080..8e564dd1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1078.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1078.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1078"}}} +{"variants": {"": {"model": "imsm:block/useradded1078"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1079.json b/src/main/resources/assets/imsm/blockstates/useradded1079.json index ffd909b1..fbd82a0a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1079.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1079.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1079"}}} +{"variants": {"": {"model": "imsm:block/useradded1079"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded108.json b/src/main/resources/assets/imsm/blockstates/useradded108.json index 62eb58dc..d98b19f9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded108.json +++ b/src/main/resources/assets/imsm/blockstates/useradded108.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded108"}}} +{"variants": {"": {"model": "imsm:block/useradded108"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1080.json b/src/main/resources/assets/imsm/blockstates/useradded1080.json index 84da3892..b6c91323 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1080.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1080.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1080"}}} +{"variants": {"": {"model": "imsm:block/useradded1080"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1081.json b/src/main/resources/assets/imsm/blockstates/useradded1081.json index 4d3242e3..40ffd187 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1081.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1081.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1081"}}} +{"variants": {"": {"model": "imsm:block/useradded1081"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1082.json b/src/main/resources/assets/imsm/blockstates/useradded1082.json index 2c312cc2..52d9ab61 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1082.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1082.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1082"}}} +{"variants": {"": {"model": "imsm:block/useradded1082"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1083.json b/src/main/resources/assets/imsm/blockstates/useradded1083.json index a26ba37c..e6456757 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1083.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1083.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1083"}}} +{"variants": {"": {"model": "imsm:block/useradded1083"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1084.json b/src/main/resources/assets/imsm/blockstates/useradded1084.json index fa984537..37dcae94 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1084.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1084.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1084"}}} +{"variants": {"": {"model": "imsm:block/useradded1084"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1085.json b/src/main/resources/assets/imsm/blockstates/useradded1085.json index 72f2a278..4eb443d5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1085.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1085.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1085"}}} +{"variants": {"": {"model": "imsm:block/useradded1085"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1086.json b/src/main/resources/assets/imsm/blockstates/useradded1086.json index 6aeac808..d68f7ce0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1086.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1086.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1086"}}} +{"variants": {"": {"model": "imsm:block/useradded1086"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1087.json b/src/main/resources/assets/imsm/blockstates/useradded1087.json index 5030146d..b84d9aa4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1087.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1087.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1087"}}} +{"variants": {"": {"model": "imsm:block/useradded1087"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1088.json b/src/main/resources/assets/imsm/blockstates/useradded1088.json index b8d57c68..bf4e35b9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1088.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1088.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1088"}}} +{"variants": {"": {"model": "imsm:block/useradded1088"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1089.json b/src/main/resources/assets/imsm/blockstates/useradded1089.json index ec6cf971..1433a57e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1089.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1089.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1089"}}} +{"variants": {"": {"model": "imsm:block/useradded1089"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded109.json b/src/main/resources/assets/imsm/blockstates/useradded109.json index 50ba6103..90981682 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded109.json +++ b/src/main/resources/assets/imsm/blockstates/useradded109.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded109"}}} +{"variants": {"": {"model": "imsm:block/useradded109"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1090.json b/src/main/resources/assets/imsm/blockstates/useradded1090.json index 0222d97a..9ac93caa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1090.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1090.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1090"}}} +{"variants": {"": {"model": "imsm:block/useradded1090"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1091.json b/src/main/resources/assets/imsm/blockstates/useradded1091.json index 6dc77656..d2700451 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1091.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1091.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1091"}}} +{"variants": {"": {"model": "imsm:block/useradded1091"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1092.json b/src/main/resources/assets/imsm/blockstates/useradded1092.json index d6868409..8d6fd1ea 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1092.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1092.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1092"}}} +{"variants": {"": {"model": "imsm:block/useradded1092"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1093.json b/src/main/resources/assets/imsm/blockstates/useradded1093.json index 7ad06e07..84239bca 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1093.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1093.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1093"}}} +{"variants": {"": {"model": "imsm:block/useradded1093"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1094.json b/src/main/resources/assets/imsm/blockstates/useradded1094.json index cea718bb..13865e15 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1094.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1094.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1094"}}} +{"variants": {"": {"model": "imsm:block/useradded1094"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1095.json b/src/main/resources/assets/imsm/blockstates/useradded1095.json index 1313fb61..12040f28 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1095.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1095.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1095"}}} +{"variants": {"": {"model": "imsm:block/useradded1095"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1096.json b/src/main/resources/assets/imsm/blockstates/useradded1096.json index 99e7d0ae..5acb860d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1096.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1096.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1096"}}} +{"variants": {"": {"model": "imsm:block/useradded1096"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1097.json b/src/main/resources/assets/imsm/blockstates/useradded1097.json index 2f27a7e7..2e2df28d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1097.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1097.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1097"}}} +{"variants": {"": {"model": "imsm:block/useradded1097"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1098.json b/src/main/resources/assets/imsm/blockstates/useradded1098.json index b4114d28..06de0ebd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1098.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1098.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1098"}}} +{"variants": {"": {"model": "imsm:block/useradded1098"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1099.json b/src/main/resources/assets/imsm/blockstates/useradded1099.json index 644114a7..8b329bfb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1099.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1099.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1099"}}} +{"variants": {"": {"model": "imsm:block/useradded1099"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded11.json b/src/main/resources/assets/imsm/blockstates/useradded11.json index 5c1c74b2..86de46aa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded11.json +++ b/src/main/resources/assets/imsm/blockstates/useradded11.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded11"}}} +{"variants": {"": {"model": "imsm:block/useradded11"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded110.json b/src/main/resources/assets/imsm/blockstates/useradded110.json index 657293f8..ab4ca49c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded110.json +++ b/src/main/resources/assets/imsm/blockstates/useradded110.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded110"}}} +{"variants": {"": {"model": "imsm:block/useradded110"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1100.json b/src/main/resources/assets/imsm/blockstates/useradded1100.json index c8c355f6..e27eac6b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1100.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1100.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1100"}}} +{"variants": {"": {"model": "imsm:block/useradded1100"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1101.json b/src/main/resources/assets/imsm/blockstates/useradded1101.json index d0aefbff..37db3f66 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1101.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1101.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1101"}}} +{"variants": {"": {"model": "imsm:block/useradded1101"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1102.json b/src/main/resources/assets/imsm/blockstates/useradded1102.json index 7ff0a464..6af3afcd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1102.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1102.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1102"}}} +{"variants": {"": {"model": "imsm:block/useradded1102"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1103.json b/src/main/resources/assets/imsm/blockstates/useradded1103.json index de4c4343..12c8efa1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1103.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1103.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1103"}}} +{"variants": {"": {"model": "imsm:block/useradded1103"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1104.json b/src/main/resources/assets/imsm/blockstates/useradded1104.json index b4e73173..94e0c5f1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1104.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1104.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1104"}}} +{"variants": {"": {"model": "imsm:block/useradded1104"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1105.json b/src/main/resources/assets/imsm/blockstates/useradded1105.json index 1f3804d2..d1d51b4b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1105.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1105.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1105"}}} +{"variants": {"": {"model": "imsm:block/useradded1105"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1106.json b/src/main/resources/assets/imsm/blockstates/useradded1106.json index 01754dfd..2136aa3b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1106.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1106.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1106"}}} +{"variants": {"": {"model": "imsm:block/useradded1106"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1107.json b/src/main/resources/assets/imsm/blockstates/useradded1107.json index e7899f08..8b1771db 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1107.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1107.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1107"}}} +{"variants": {"": {"model": "imsm:block/useradded1107"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1108.json b/src/main/resources/assets/imsm/blockstates/useradded1108.json index 5dd4baab..7b10ed63 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1108.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1108.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1108"}}} +{"variants": {"": {"model": "imsm:block/useradded1108"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1109.json b/src/main/resources/assets/imsm/blockstates/useradded1109.json index 7043aaef..cfe05f6e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1109.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1109.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1109"}}} +{"variants": {"": {"model": "imsm:block/useradded1109"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded111.json b/src/main/resources/assets/imsm/blockstates/useradded111.json index 76a18ad8..343f1df2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded111.json +++ b/src/main/resources/assets/imsm/blockstates/useradded111.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded111"}}} +{"variants": {"": {"model": "imsm:block/useradded111"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1110.json b/src/main/resources/assets/imsm/blockstates/useradded1110.json index e4cdbc51..d953ad3d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1110.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1110.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1110"}}} +{"variants": {"": {"model": "imsm:block/useradded1110"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1111.json b/src/main/resources/assets/imsm/blockstates/useradded1111.json index 735eeae8..a2cf3355 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1111.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1111.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1111"}}} +{"variants": {"": {"model": "imsm:block/useradded1111"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1112.json b/src/main/resources/assets/imsm/blockstates/useradded1112.json index 4524fc57..787036db 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1112.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1112.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1112"}}} +{"variants": {"": {"model": "imsm:block/useradded1112"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1113.json b/src/main/resources/assets/imsm/blockstates/useradded1113.json index c126d430..9a6a000a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1113.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1113.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1113"}}} +{"variants": {"": {"model": "imsm:block/useradded1113"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1114.json b/src/main/resources/assets/imsm/blockstates/useradded1114.json index 3aa65b7c..f5c85715 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1114.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1114.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1114"}}} +{"variants": {"": {"model": "imsm:block/useradded1114"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1115.json b/src/main/resources/assets/imsm/blockstates/useradded1115.json index e0527ac2..704f10bb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1115.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1115.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1115"}}} +{"variants": {"": {"model": "imsm:block/useradded1115"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1116.json b/src/main/resources/assets/imsm/blockstates/useradded1116.json index 10bc2284..68ecb7df 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1116.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1116.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1116"}}} +{"variants": {"": {"model": "imsm:block/useradded1116"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1117.json b/src/main/resources/assets/imsm/blockstates/useradded1117.json index 043c293e..6b2de79e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1117.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1117.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1117"}}} +{"variants": {"": {"model": "imsm:block/useradded1117"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1118.json b/src/main/resources/assets/imsm/blockstates/useradded1118.json index 95d807a4..5bbd7242 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1118.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1118.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1118"}}} +{"variants": {"": {"model": "imsm:block/useradded1118"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1119.json b/src/main/resources/assets/imsm/blockstates/useradded1119.json index 5c7a32fe..dc1b1e56 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1119.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1119.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1119"}}} +{"variants": {"": {"model": "imsm:block/useradded1119"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded112.json b/src/main/resources/assets/imsm/blockstates/useradded112.json index 36b042f5..e4c7a639 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded112.json +++ b/src/main/resources/assets/imsm/blockstates/useradded112.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded112"}}} +{"variants": {"": {"model": "imsm:block/useradded112"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1120.json b/src/main/resources/assets/imsm/blockstates/useradded1120.json index 792cf2f0..5f1b9f2d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1120.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1120.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1120"}}} +{"variants": {"": {"model": "imsm:block/useradded1120"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1121.json b/src/main/resources/assets/imsm/blockstates/useradded1121.json index 76f095ac..63e25020 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1121.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1121.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1121"}}} +{"variants": {"": {"model": "imsm:block/useradded1121"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1122.json b/src/main/resources/assets/imsm/blockstates/useradded1122.json index f9feb580..fd334096 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1122.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1122.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1122"}}} +{"variants": {"": {"model": "imsm:block/useradded1122"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1123.json b/src/main/resources/assets/imsm/blockstates/useradded1123.json index 770d5df6..f1db18fd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1123.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1123.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1123"}}} +{"variants": {"": {"model": "imsm:block/useradded1123"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1124.json b/src/main/resources/assets/imsm/blockstates/useradded1124.json index 182b1739..f79f4d69 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1124.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1124.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1124"}}} +{"variants": {"": {"model": "imsm:block/useradded1124"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1125.json b/src/main/resources/assets/imsm/blockstates/useradded1125.json index af035f74..a6bf79cb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1125.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1125.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1125"}}} +{"variants": {"": {"model": "imsm:block/useradded1125"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1126.json b/src/main/resources/assets/imsm/blockstates/useradded1126.json index bccbe620..a7588b13 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1126.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1126.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1126"}}} +{"variants": {"": {"model": "imsm:block/useradded1126"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1127.json b/src/main/resources/assets/imsm/blockstates/useradded1127.json index 53e2bb4f..f19e238d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1127.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1127.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1127"}}} +{"variants": {"": {"model": "imsm:block/useradded1127"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1128.json b/src/main/resources/assets/imsm/blockstates/useradded1128.json index e53d53f6..3e54d388 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1128.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1128.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1128"}}} +{"variants": {"": {"model": "imsm:block/useradded1128"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1129.json b/src/main/resources/assets/imsm/blockstates/useradded1129.json index 833522f4..67a8e8b5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1129.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1129.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1129"}}} +{"variants": {"": {"model": "imsm:block/useradded1129"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded113.json b/src/main/resources/assets/imsm/blockstates/useradded113.json index bedac535..d51c1564 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded113.json +++ b/src/main/resources/assets/imsm/blockstates/useradded113.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded113"}}} +{"variants": {"": {"model": "imsm:block/useradded113"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1130.json b/src/main/resources/assets/imsm/blockstates/useradded1130.json index 348ff0e8..5a55f3e0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1130.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1130.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1130"}}} +{"variants": {"": {"model": "imsm:block/useradded1130"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1131.json b/src/main/resources/assets/imsm/blockstates/useradded1131.json index c02d8170..e69615f7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1131.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1131.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1131"}}} +{"variants": {"": {"model": "imsm:block/useradded1131"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1132.json b/src/main/resources/assets/imsm/blockstates/useradded1132.json index 77e7fc41..581140db 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1132.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1132.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1132"}}} +{"variants": {"": {"model": "imsm:block/useradded1132"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1133.json b/src/main/resources/assets/imsm/blockstates/useradded1133.json index 4ed86a87..11a00f7d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1133.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1133.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1133"}}} +{"variants": {"": {"model": "imsm:block/useradded1133"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1134.json b/src/main/resources/assets/imsm/blockstates/useradded1134.json index 7114a178..22345a0b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1134.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1134.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1134"}}} +{"variants": {"": {"model": "imsm:block/useradded1134"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1135.json b/src/main/resources/assets/imsm/blockstates/useradded1135.json index 9de1f3a5..b668a7ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1135.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1135.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1135"}}} +{"variants": {"": {"model": "imsm:block/useradded1135"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1136.json b/src/main/resources/assets/imsm/blockstates/useradded1136.json index b7850638..28339795 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1136.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1136.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1136"}}} +{"variants": {"": {"model": "imsm:block/useradded1136"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1137.json b/src/main/resources/assets/imsm/blockstates/useradded1137.json index 8983c58f..e02df9ea 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1137.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1137.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1137"}}} +{"variants": {"": {"model": "imsm:block/useradded1137"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1138.json b/src/main/resources/assets/imsm/blockstates/useradded1138.json index 39d071cb..b55b6b46 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1138.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1138.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1138"}}} +{"variants": {"": {"model": "imsm:block/useradded1138"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1139.json b/src/main/resources/assets/imsm/blockstates/useradded1139.json index 5da2622e..40a132aa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1139.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1139.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1139"}}} +{"variants": {"": {"model": "imsm:block/useradded1139"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded114.json b/src/main/resources/assets/imsm/blockstates/useradded114.json index d1cb75ae..4d886674 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded114.json +++ b/src/main/resources/assets/imsm/blockstates/useradded114.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded114"}}} +{"variants": {"": {"model": "imsm:block/useradded114"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1140.json b/src/main/resources/assets/imsm/blockstates/useradded1140.json index 15c9bc4e..a1a9d5f8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1140.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1140.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1140"}}} +{"variants": {"": {"model": "imsm:block/useradded1140"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1141.json b/src/main/resources/assets/imsm/blockstates/useradded1141.json index 736ac98a..128db3d5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1141.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1141.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1141"}}} +{"variants": {"": {"model": "imsm:block/useradded1141"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1142.json b/src/main/resources/assets/imsm/blockstates/useradded1142.json index 1adeee59..0a0b4036 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1142.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1142.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1142"}}} +{"variants": {"": {"model": "imsm:block/useradded1142"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1143.json b/src/main/resources/assets/imsm/blockstates/useradded1143.json index a577d8d4..8a676bb7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1143.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1143.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1143"}}} +{"variants": {"": {"model": "imsm:block/useradded1143"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1144.json b/src/main/resources/assets/imsm/blockstates/useradded1144.json index d90e0eab..b1aedd71 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1144.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1144.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1144"}}} +{"variants": {"": {"model": "imsm:block/useradded1144"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1145.json b/src/main/resources/assets/imsm/blockstates/useradded1145.json index 2efb7377..ca74f8e9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1145.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1145.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1145"}}} +{"variants": {"": {"model": "imsm:block/useradded1145"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1146.json b/src/main/resources/assets/imsm/blockstates/useradded1146.json index c77031d8..f648c3f7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1146.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1146.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1146"}}} +{"variants": {"": {"model": "imsm:block/useradded1146"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1147.json b/src/main/resources/assets/imsm/blockstates/useradded1147.json index e1e92df6..d1c3cff0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1147.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1147.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1147"}}} +{"variants": {"": {"model": "imsm:block/useradded1147"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1148.json b/src/main/resources/assets/imsm/blockstates/useradded1148.json index 0f25a6d6..40519d76 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1148.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1148.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1148"}}} +{"variants": {"": {"model": "imsm:block/useradded1148"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1149.json b/src/main/resources/assets/imsm/blockstates/useradded1149.json index 7b9efa42..58b80329 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1149.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1149.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1149"}}} +{"variants": {"": {"model": "imsm:block/useradded1149"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded115.json b/src/main/resources/assets/imsm/blockstates/useradded115.json index 18c66c7b..60e15536 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded115.json +++ b/src/main/resources/assets/imsm/blockstates/useradded115.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded115"}}} +{"variants": {"": {"model": "imsm:block/useradded115"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1150.json b/src/main/resources/assets/imsm/blockstates/useradded1150.json index 9810dee7..d18af8f4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1150.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1150.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1150"}}} +{"variants": {"": {"model": "imsm:block/useradded1150"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1151.json b/src/main/resources/assets/imsm/blockstates/useradded1151.json index d5d7ac93..7ac39845 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1151.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1151.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1151"}}} +{"variants": {"": {"model": "imsm:block/useradded1151"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1152.json b/src/main/resources/assets/imsm/blockstates/useradded1152.json index f970416b..8fdf4780 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1152.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1152.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1152"}}} +{"variants": {"": {"model": "imsm:block/useradded1152"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1153.json b/src/main/resources/assets/imsm/blockstates/useradded1153.json index d1873d6f..8379404f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1153.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1153.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1153"}}} +{"variants": {"": {"model": "imsm:block/useradded1153"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1154.json b/src/main/resources/assets/imsm/blockstates/useradded1154.json index b41e094d..10c748bc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1154.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1154.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1154"}}} +{"variants": {"": {"model": "imsm:block/useradded1154"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1155.json b/src/main/resources/assets/imsm/blockstates/useradded1155.json index d9b28b99..a68870b3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1155.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1155.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1155"}}} +{"variants": {"": {"model": "imsm:block/useradded1155"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1156.json b/src/main/resources/assets/imsm/blockstates/useradded1156.json index 209151f1..4028856e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1156.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1156.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1156"}}} +{"variants": {"": {"model": "imsm:block/useradded1156"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1157.json b/src/main/resources/assets/imsm/blockstates/useradded1157.json index 398b9fc4..40888f40 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1157.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1157.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1157"}}} +{"variants": {"": {"model": "imsm:block/useradded1157"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1158.json b/src/main/resources/assets/imsm/blockstates/useradded1158.json index 2deff879..4d40b2b4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1158.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1158.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1158"}}} +{"variants": {"": {"model": "imsm:block/useradded1158"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1159.json b/src/main/resources/assets/imsm/blockstates/useradded1159.json index 8d0f6a86..4725f972 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1159.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1159.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1159"}}} +{"variants": {"": {"model": "imsm:block/useradded1159"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded116.json b/src/main/resources/assets/imsm/blockstates/useradded116.json index bd5772f7..0d7896d0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded116.json +++ b/src/main/resources/assets/imsm/blockstates/useradded116.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded116"}}} +{"variants": {"": {"model": "imsm:block/useradded116"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1160.json b/src/main/resources/assets/imsm/blockstates/useradded1160.json index d63965ff..b5d7abcc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1160.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1160.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1160"}}} +{"variants": {"": {"model": "imsm:block/useradded1160"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1161.json b/src/main/resources/assets/imsm/blockstates/useradded1161.json index 6d9c3696..82e7923f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1161.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1161.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1161"}}} +{"variants": {"": {"model": "imsm:block/useradded1161"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1162.json b/src/main/resources/assets/imsm/blockstates/useradded1162.json index 9f5eea86..62ef5470 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1162.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1162.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1162"}}} +{"variants": {"": {"model": "imsm:block/useradded1162"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1163.json b/src/main/resources/assets/imsm/blockstates/useradded1163.json index 54814ace..8eeb04ca 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1163.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1163.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1163"}}} +{"variants": {"": {"model": "imsm:block/useradded1163"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1164.json b/src/main/resources/assets/imsm/blockstates/useradded1164.json index 2a3c8971..c2793b41 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1164.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1164.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1164"}}} +{"variants": {"": {"model": "imsm:block/useradded1164"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1165.json b/src/main/resources/assets/imsm/blockstates/useradded1165.json index bda3ae22..01bdf8dc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1165.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1165.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1165"}}} +{"variants": {"": {"model": "imsm:block/useradded1165"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1166.json b/src/main/resources/assets/imsm/blockstates/useradded1166.json index d5f51dff..73ecf36b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1166.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1166.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1166"}}} +{"variants": {"": {"model": "imsm:block/useradded1166"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1167.json b/src/main/resources/assets/imsm/blockstates/useradded1167.json index 4110bac7..f4ee4fbd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1167.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1167.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1167"}}} +{"variants": {"": {"model": "imsm:block/useradded1167"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1168.json b/src/main/resources/assets/imsm/blockstates/useradded1168.json index 4e329020..6d104cb9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1168.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1168.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1168"}}} +{"variants": {"": {"model": "imsm:block/useradded1168"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1169.json b/src/main/resources/assets/imsm/blockstates/useradded1169.json index 9b4f23ac..b082bbf4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1169.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1169.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1169"}}} +{"variants": {"": {"model": "imsm:block/useradded1169"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded117.json b/src/main/resources/assets/imsm/blockstates/useradded117.json index 669e24c3..49c0e6cf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded117.json +++ b/src/main/resources/assets/imsm/blockstates/useradded117.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded117"}}} +{"variants": {"": {"model": "imsm:block/useradded117"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1170.json b/src/main/resources/assets/imsm/blockstates/useradded1170.json index 298a7d50..5adece28 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1170.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1170.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1170"}}} +{"variants": {"": {"model": "imsm:block/useradded1170"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1171.json b/src/main/resources/assets/imsm/blockstates/useradded1171.json index 6e9a9777..0e66aede 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1171.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1171.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1171"}}} +{"variants": {"": {"model": "imsm:block/useradded1171"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1172.json b/src/main/resources/assets/imsm/blockstates/useradded1172.json index d4b5fa96..fbaea9fe 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1172.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1172.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1172"}}} +{"variants": {"": {"model": "imsm:block/useradded1172"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1173.json b/src/main/resources/assets/imsm/blockstates/useradded1173.json index b395e9ca..d45263ba 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1173.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1173.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1173"}}} +{"variants": {"": {"model": "imsm:block/useradded1173"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1174.json b/src/main/resources/assets/imsm/blockstates/useradded1174.json index 3938e184..3020cb35 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1174.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1174.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1174"}}} +{"variants": {"": {"model": "imsm:block/useradded1174"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1175.json b/src/main/resources/assets/imsm/blockstates/useradded1175.json index 73ea339b..950673b6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1175.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1175.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1175"}}} +{"variants": {"": {"model": "imsm:block/useradded1175"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1176.json b/src/main/resources/assets/imsm/blockstates/useradded1176.json index 537b4a12..c7b3a466 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1176.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1176.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1176"}}} +{"variants": {"": {"model": "imsm:block/useradded1176"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1177.json b/src/main/resources/assets/imsm/blockstates/useradded1177.json index 3ee3f28a..8b1e642f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1177.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1177.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1177"}}} +{"variants": {"": {"model": "imsm:block/useradded1177"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1178.json b/src/main/resources/assets/imsm/blockstates/useradded1178.json index 4ce4366b..93acce37 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1178.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1178.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1178"}}} +{"variants": {"": {"model": "imsm:block/useradded1178"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1179.json b/src/main/resources/assets/imsm/blockstates/useradded1179.json index a9f34a44..3f3d11e3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1179.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1179.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1179"}}} +{"variants": {"": {"model": "imsm:block/useradded1179"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded118.json b/src/main/resources/assets/imsm/blockstates/useradded118.json index 39007044..5c1898fb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded118.json +++ b/src/main/resources/assets/imsm/blockstates/useradded118.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded118"}}} +{"variants": {"": {"model": "imsm:block/useradded118"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1180.json b/src/main/resources/assets/imsm/blockstates/useradded1180.json index d23d1182..ecabbd7f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1180.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1180.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1180"}}} +{"variants": {"": {"model": "imsm:block/useradded1180"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1181.json b/src/main/resources/assets/imsm/blockstates/useradded1181.json index 69af1cf5..338c90a5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1181.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1181.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1181"}}} +{"variants": {"": {"model": "imsm:block/useradded1181"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1182.json b/src/main/resources/assets/imsm/blockstates/useradded1182.json index 9f0d55b1..ad9140bc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1182.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1182.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1182"}}} +{"variants": {"": {"model": "imsm:block/useradded1182"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1183.json b/src/main/resources/assets/imsm/blockstates/useradded1183.json index 99d72259..3c32893a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1183.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1183.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1183"}}} +{"variants": {"": {"model": "imsm:block/useradded1183"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1184.json b/src/main/resources/assets/imsm/blockstates/useradded1184.json index 65f3ab07..c5542791 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1184.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1184.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1184"}}} +{"variants": {"": {"model": "imsm:block/useradded1184"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1185.json b/src/main/resources/assets/imsm/blockstates/useradded1185.json index 1fa59129..f44bd5c4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1185.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1185.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1185"}}} +{"variants": {"": {"model": "imsm:block/useradded1185"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1186.json b/src/main/resources/assets/imsm/blockstates/useradded1186.json index 33a24c53..f5fd2faa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1186.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1186.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1186"}}} +{"variants": {"": {"model": "imsm:block/useradded1186"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1187.json b/src/main/resources/assets/imsm/blockstates/useradded1187.json index 3ef2f437..f08b83cf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1187.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1187.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1187"}}} +{"variants": {"": {"model": "imsm:block/useradded1187"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1188.json b/src/main/resources/assets/imsm/blockstates/useradded1188.json index 14001cb0..fccb5712 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1188.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1188.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1188"}}} +{"variants": {"": {"model": "imsm:block/useradded1188"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1189.json b/src/main/resources/assets/imsm/blockstates/useradded1189.json index 849fad18..54f49484 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1189.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1189.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1189"}}} +{"variants": {"": {"model": "imsm:block/useradded1189"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded119.json b/src/main/resources/assets/imsm/blockstates/useradded119.json index 232a7935..509f6872 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded119.json +++ b/src/main/resources/assets/imsm/blockstates/useradded119.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded119"}}} +{"variants": {"": {"model": "imsm:block/useradded119"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1190.json b/src/main/resources/assets/imsm/blockstates/useradded1190.json index d06274c9..e327e686 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1190.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1190.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1190"}}} +{"variants": {"": {"model": "imsm:block/useradded1190"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1191.json b/src/main/resources/assets/imsm/blockstates/useradded1191.json index 184ad32e..fbb900c2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1191.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1191.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1191"}}} +{"variants": {"": {"model": "imsm:block/useradded1191"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1192.json b/src/main/resources/assets/imsm/blockstates/useradded1192.json index 80ef0c0c..54faaebf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1192.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1192.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1192"}}} +{"variants": {"": {"model": "imsm:block/useradded1192"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1193.json b/src/main/resources/assets/imsm/blockstates/useradded1193.json index 9e8f6265..cfc82e96 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1193.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1193.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1193"}}} +{"variants": {"": {"model": "imsm:block/useradded1193"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1194.json b/src/main/resources/assets/imsm/blockstates/useradded1194.json index 8e7a8156..ed9e887e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1194.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1194.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1194"}}} +{"variants": {"": {"model": "imsm:block/useradded1194"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1195.json b/src/main/resources/assets/imsm/blockstates/useradded1195.json index bc6d9989..ac800434 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1195.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1195.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1195"}}} +{"variants": {"": {"model": "imsm:block/useradded1195"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1196.json b/src/main/resources/assets/imsm/blockstates/useradded1196.json index 8a7edb94..a57fc091 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1196.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1196.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1196"}}} +{"variants": {"": {"model": "imsm:block/useradded1196"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1197.json b/src/main/resources/assets/imsm/blockstates/useradded1197.json index b62aeb35..29012b0e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1197.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1197.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1197"}}} +{"variants": {"": {"model": "imsm:block/useradded1197"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1198.json b/src/main/resources/assets/imsm/blockstates/useradded1198.json index fa85580e..05a8348f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1198.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1198.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1198"}}} +{"variants": {"": {"model": "imsm:block/useradded1198"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1199.json b/src/main/resources/assets/imsm/blockstates/useradded1199.json index d9151a26..936068a2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1199.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1199.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1199"}}} +{"variants": {"": {"model": "imsm:block/useradded1199"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded12.json b/src/main/resources/assets/imsm/blockstates/useradded12.json index f216719b..065ae4a1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded12.json +++ b/src/main/resources/assets/imsm/blockstates/useradded12.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded12"}}} +{"variants": {"": {"model": "imsm:block/useradded12"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded120.json b/src/main/resources/assets/imsm/blockstates/useradded120.json index a5b68847..f83265ba 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded120.json +++ b/src/main/resources/assets/imsm/blockstates/useradded120.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded120"}}} +{"variants": {"": {"model": "imsm:block/useradded120"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1200.json b/src/main/resources/assets/imsm/blockstates/useradded1200.json index 71a5d5a4..f63ce575 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1200.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1200.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1200"}}} +{"variants": {"": {"model": "imsm:block/useradded1200"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1201.json b/src/main/resources/assets/imsm/blockstates/useradded1201.json index 699ee562..94baae21 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1201.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1201.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1201"}}} +{"variants": {"": {"model": "imsm:block/useradded1201"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1202.json b/src/main/resources/assets/imsm/blockstates/useradded1202.json index b9c7be27..a900f150 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1202.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1202.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1202"}}} +{"variants": {"": {"model": "imsm:block/useradded1202"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1203.json b/src/main/resources/assets/imsm/blockstates/useradded1203.json index b12136d4..b047a8a5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1203.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1203.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1203"}}} +{"variants": {"": {"model": "imsm:block/useradded1203"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1204.json b/src/main/resources/assets/imsm/blockstates/useradded1204.json index b699e823..5fd2e607 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1204.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1204.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1204"}}} +{"variants": {"": {"model": "imsm:block/useradded1204"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1205.json b/src/main/resources/assets/imsm/blockstates/useradded1205.json index df90b9d4..3a67b0a7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1205.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1205.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1205"}}} +{"variants": {"": {"model": "imsm:block/useradded1205"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1206.json b/src/main/resources/assets/imsm/blockstates/useradded1206.json index f32abc35..bafedc80 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1206.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1206.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1206"}}} +{"variants": {"": {"model": "imsm:block/useradded1206"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1207.json b/src/main/resources/assets/imsm/blockstates/useradded1207.json index c89ae552..8abf81a9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1207.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1207.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1207"}}} +{"variants": {"": {"model": "imsm:block/useradded1207"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1208.json b/src/main/resources/assets/imsm/blockstates/useradded1208.json index aefb8404..9c18bd70 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1208.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1208.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1208"}}} +{"variants": {"": {"model": "imsm:block/useradded1208"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1209.json b/src/main/resources/assets/imsm/blockstates/useradded1209.json index 40388837..ebe28808 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1209.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1209.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1209"}}} +{"variants": {"": {"model": "imsm:block/useradded1209"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded121.json b/src/main/resources/assets/imsm/blockstates/useradded121.json index b78a5335..1e3aba7b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded121.json +++ b/src/main/resources/assets/imsm/blockstates/useradded121.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded121"}}} +{"variants": {"": {"model": "imsm:block/useradded121"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1210.json b/src/main/resources/assets/imsm/blockstates/useradded1210.json index e95601a4..d1662da5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1210.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1210.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1210"}}} +{"variants": {"": {"model": "imsm:block/useradded1210"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1211.json b/src/main/resources/assets/imsm/blockstates/useradded1211.json index 3cee365c..37820cec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1211.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1211.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1211"}}} +{"variants": {"": {"model": "imsm:block/useradded1211"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1212.json b/src/main/resources/assets/imsm/blockstates/useradded1212.json index 7f5a4ce2..de59106d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1212.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1212.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1212"}}} +{"variants": {"": {"model": "imsm:block/useradded1212"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1213.json b/src/main/resources/assets/imsm/blockstates/useradded1213.json index 109f8784..c22bfc76 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1213.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1213.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1213"}}} +{"variants": {"": {"model": "imsm:block/useradded1213"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1214.json b/src/main/resources/assets/imsm/blockstates/useradded1214.json index 800b1c64..64aca510 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1214.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1214.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1214"}}} +{"variants": {"": {"model": "imsm:block/useradded1214"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1215.json b/src/main/resources/assets/imsm/blockstates/useradded1215.json index 154d36e2..f280ee7c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1215.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1215.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1215"}}} +{"variants": {"": {"model": "imsm:block/useradded1215"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1216.json b/src/main/resources/assets/imsm/blockstates/useradded1216.json index 24947502..434246a8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1216.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1216.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1216"}}} +{"variants": {"": {"model": "imsm:block/useradded1216"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1217.json b/src/main/resources/assets/imsm/blockstates/useradded1217.json index 4993a90f..d6bcb86e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1217.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1217.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1217"}}} +{"variants": {"": {"model": "imsm:block/useradded1217"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1218.json b/src/main/resources/assets/imsm/blockstates/useradded1218.json index 9cc82ef3..98f53627 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1218.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1218.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1218"}}} +{"variants": {"": {"model": "imsm:block/useradded1218"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1219.json b/src/main/resources/assets/imsm/blockstates/useradded1219.json index 7108d28b..d9e571bf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1219.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1219.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1219"}}} +{"variants": {"": {"model": "imsm:block/useradded1219"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded122.json b/src/main/resources/assets/imsm/blockstates/useradded122.json index 200b04c1..608d1cf5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded122.json +++ b/src/main/resources/assets/imsm/blockstates/useradded122.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded122"}}} +{"variants": {"": {"model": "imsm:block/useradded122"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1220.json b/src/main/resources/assets/imsm/blockstates/useradded1220.json index 6a047c56..43ca8bfc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1220.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1220.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1220"}}} +{"variants": {"": {"model": "imsm:block/useradded1220"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1221.json b/src/main/resources/assets/imsm/blockstates/useradded1221.json index b81fc344..015dd3db 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1221.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1221.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1221"}}} +{"variants": {"": {"model": "imsm:block/useradded1221"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1222.json b/src/main/resources/assets/imsm/blockstates/useradded1222.json index 4fbf7c6b..e0a0de86 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1222.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1222.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1222"}}} +{"variants": {"": {"model": "imsm:block/useradded1222"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1223.json b/src/main/resources/assets/imsm/blockstates/useradded1223.json index f06c00a0..bb9293dc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1223.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1223.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1223"}}} +{"variants": {"": {"model": "imsm:block/useradded1223"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1224.json b/src/main/resources/assets/imsm/blockstates/useradded1224.json index 9a912303..1c0b2484 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1224.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1224.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1224"}}} +{"variants": {"": {"model": "imsm:block/useradded1224"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1225.json b/src/main/resources/assets/imsm/blockstates/useradded1225.json index a40ef27c..63d75873 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1225.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1225.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1225"}}} +{"variants": {"": {"model": "imsm:block/useradded1225"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1226.json b/src/main/resources/assets/imsm/blockstates/useradded1226.json index f0407178..55506c0f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1226.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1226.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1226"}}} +{"variants": {"": {"model": "imsm:block/useradded1226"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1227.json b/src/main/resources/assets/imsm/blockstates/useradded1227.json index d9db7045..d14dfa0d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1227.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1227.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1227"}}} +{"variants": {"": {"model": "imsm:block/useradded1227"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1228.json b/src/main/resources/assets/imsm/blockstates/useradded1228.json index 85ccc7ef..eab56877 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1228.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1228.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1228"}}} +{"variants": {"": {"model": "imsm:block/useradded1228"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1229.json b/src/main/resources/assets/imsm/blockstates/useradded1229.json index 28cc5cca..bf6da669 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1229.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1229.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1229"}}} +{"variants": {"": {"model": "imsm:block/useradded1229"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded123.json b/src/main/resources/assets/imsm/blockstates/useradded123.json index ef8cf377..4d7ea270 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded123.json +++ b/src/main/resources/assets/imsm/blockstates/useradded123.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded123"}}} +{"variants": {"": {"model": "imsm:block/useradded123"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1230.json b/src/main/resources/assets/imsm/blockstates/useradded1230.json index 2ec400c1..57dbc8cc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1230.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1230.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1230"}}} +{"variants": {"": {"model": "imsm:block/useradded1230"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1231.json b/src/main/resources/assets/imsm/blockstates/useradded1231.json index 50522c38..0c434a6d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1231.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1231.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1231"}}} +{"variants": {"": {"model": "imsm:block/useradded1231"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1232.json b/src/main/resources/assets/imsm/blockstates/useradded1232.json index 59e5aa6b..59ba3c74 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1232.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1232.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1232"}}} +{"variants": {"": {"model": "imsm:block/useradded1232"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1233.json b/src/main/resources/assets/imsm/blockstates/useradded1233.json index d26fab76..3c77b80f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1233.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1233.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1233"}}} +{"variants": {"": {"model": "imsm:block/useradded1233"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1234.json b/src/main/resources/assets/imsm/blockstates/useradded1234.json index 2d92f8df..ca95db35 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1234.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1234.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1234"}}} +{"variants": {"": {"model": "imsm:block/useradded1234"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1235.json b/src/main/resources/assets/imsm/blockstates/useradded1235.json index dfc23c48..41f94083 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1235.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1235.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1235"}}} +{"variants": {"": {"model": "imsm:block/useradded1235"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1236.json b/src/main/resources/assets/imsm/blockstates/useradded1236.json index 4c9c928b..68eb6ba2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1236.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1236.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1236"}}} +{"variants": {"": {"model": "imsm:block/useradded1236"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1237.json b/src/main/resources/assets/imsm/blockstates/useradded1237.json index 209df896..9d7b3d64 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1237.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1237.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1237"}}} +{"variants": {"": {"model": "imsm:block/useradded1237"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1238.json b/src/main/resources/assets/imsm/blockstates/useradded1238.json index bb420886..1b38f7cf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1238.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1238.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1238"}}} +{"variants": {"": {"model": "imsm:block/useradded1238"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1239.json b/src/main/resources/assets/imsm/blockstates/useradded1239.json index e4bfb804..6f5d44ed 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1239.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1239.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1239"}}} +{"variants": {"": {"model": "imsm:block/useradded1239"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded124.json b/src/main/resources/assets/imsm/blockstates/useradded124.json index 26e2aef3..117ec0f8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded124.json +++ b/src/main/resources/assets/imsm/blockstates/useradded124.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded124"}}} +{"variants": {"": {"model": "imsm:block/useradded124"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1240.json b/src/main/resources/assets/imsm/blockstates/useradded1240.json index bccd511d..fa180510 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1240.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1240.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1240"}}} +{"variants": {"": {"model": "imsm:block/useradded1240"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1241.json b/src/main/resources/assets/imsm/blockstates/useradded1241.json index 5b8e3cff..0f244194 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1241.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1241.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1241"}}} +{"variants": {"": {"model": "imsm:block/useradded1241"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1242.json b/src/main/resources/assets/imsm/blockstates/useradded1242.json index c00a5ad8..9dd3e475 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1242.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1242.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1242"}}} +{"variants": {"": {"model": "imsm:block/useradded1242"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1243.json b/src/main/resources/assets/imsm/blockstates/useradded1243.json index f015a945..7cc58082 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1243.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1243.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1243"}}} +{"variants": {"": {"model": "imsm:block/useradded1243"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1244.json b/src/main/resources/assets/imsm/blockstates/useradded1244.json index 9732261f..fb2fa3fc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1244.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1244.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1244"}}} +{"variants": {"": {"model": "imsm:block/useradded1244"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1245.json b/src/main/resources/assets/imsm/blockstates/useradded1245.json index 2de85699..3d2af3ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1245.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1245.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1245"}}} +{"variants": {"": {"model": "imsm:block/useradded1245"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1246.json b/src/main/resources/assets/imsm/blockstates/useradded1246.json index 58376086..f0c313e8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1246.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1246.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1246"}}} +{"variants": {"": {"model": "imsm:block/useradded1246"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1247.json b/src/main/resources/assets/imsm/blockstates/useradded1247.json index d7b1ed02..ea2b1755 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1247.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1247.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1247"}}} +{"variants": {"": {"model": "imsm:block/useradded1247"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1248.json b/src/main/resources/assets/imsm/blockstates/useradded1248.json index 69a50612..57a8a23c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1248.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1248.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1248"}}} +{"variants": {"": {"model": "imsm:block/useradded1248"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1249.json b/src/main/resources/assets/imsm/blockstates/useradded1249.json index c0229808..8adba878 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1249.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1249.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1249"}}} +{"variants": {"": {"model": "imsm:block/useradded1249"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded125.json b/src/main/resources/assets/imsm/blockstates/useradded125.json index de5e721f..9ba22d6a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded125.json +++ b/src/main/resources/assets/imsm/blockstates/useradded125.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded125"}}} +{"variants": {"": {"model": "imsm:block/useradded125"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1250.json b/src/main/resources/assets/imsm/blockstates/useradded1250.json index 4cf86243..a6c4dd2f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1250.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1250.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1250"}}} +{"variants": {"": {"model": "imsm:block/useradded1250"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1251.json b/src/main/resources/assets/imsm/blockstates/useradded1251.json index c0cab09d..6f7d625d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1251.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1251.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1251"}}} +{"variants": {"": {"model": "imsm:block/useradded1251"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1252.json b/src/main/resources/assets/imsm/blockstates/useradded1252.json index 8d14e0d0..2ba65ecb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1252.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1252.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1252"}}} +{"variants": {"": {"model": "imsm:block/useradded1252"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1253.json b/src/main/resources/assets/imsm/blockstates/useradded1253.json index d437ddeb..e87a92ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1253.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1253.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1253"}}} +{"variants": {"": {"model": "imsm:block/useradded1253"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1254.json b/src/main/resources/assets/imsm/blockstates/useradded1254.json index 24d6de9e..32efba22 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1254.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1254.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1254"}}} +{"variants": {"": {"model": "imsm:block/useradded1254"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1255.json b/src/main/resources/assets/imsm/blockstates/useradded1255.json index 6245fc46..f49a478e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1255.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1255.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1255"}}} +{"variants": {"": {"model": "imsm:block/useradded1255"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1256.json b/src/main/resources/assets/imsm/blockstates/useradded1256.json index 81c01422..53c996fe 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1256.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1256.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1256"}}} +{"variants": {"": {"model": "imsm:block/useradded1256"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1257.json b/src/main/resources/assets/imsm/blockstates/useradded1257.json index 8ae34960..6f19e884 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1257.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1257.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1257"}}} +{"variants": {"": {"model": "imsm:block/useradded1257"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1258.json b/src/main/resources/assets/imsm/blockstates/useradded1258.json index 684f05c9..31c0697c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1258.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1258.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1258"}}} +{"variants": {"": {"model": "imsm:block/useradded1258"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1259.json b/src/main/resources/assets/imsm/blockstates/useradded1259.json index f83a6b04..effa4a5d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1259.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1259.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1259"}}} +{"variants": {"": {"model": "imsm:block/useradded1259"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded126.json b/src/main/resources/assets/imsm/blockstates/useradded126.json index 7a88b6b1..a7c9d5b8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded126.json +++ b/src/main/resources/assets/imsm/blockstates/useradded126.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded126"}}} +{"variants": {"": {"model": "imsm:block/useradded126"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1260.json b/src/main/resources/assets/imsm/blockstates/useradded1260.json index 34c922fe..b8c9d898 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1260.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1260.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1260"}}} +{"variants": {"": {"model": "imsm:block/useradded1260"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1261.json b/src/main/resources/assets/imsm/blockstates/useradded1261.json index 42373352..f4b8a082 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1261.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1261.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1261"}}} +{"variants": {"": {"model": "imsm:block/useradded1261"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1262.json b/src/main/resources/assets/imsm/blockstates/useradded1262.json index a978c4e2..ce575e67 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1262.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1262.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1262"}}} +{"variants": {"": {"model": "imsm:block/useradded1262"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1263.json b/src/main/resources/assets/imsm/blockstates/useradded1263.json index ba99ccfc..8f121388 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1263.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1263.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1263"}}} +{"variants": {"": {"model": "imsm:block/useradded1263"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1264.json b/src/main/resources/assets/imsm/blockstates/useradded1264.json index 35fdde7d..98f047a4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1264.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1264.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1264"}}} +{"variants": {"": {"model": "imsm:block/useradded1264"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1265.json b/src/main/resources/assets/imsm/blockstates/useradded1265.json index 97a31325..db6eded9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1265.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1265.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1265"}}} +{"variants": {"": {"model": "imsm:block/useradded1265"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1266.json b/src/main/resources/assets/imsm/blockstates/useradded1266.json index 86a170b6..228c41bb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1266.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1266.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1266"}}} +{"variants": {"": {"model": "imsm:block/useradded1266"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1267.json b/src/main/resources/assets/imsm/blockstates/useradded1267.json index 4f19827f..8f5624ae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1267.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1267.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1267"}}} +{"variants": {"": {"model": "imsm:block/useradded1267"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1268.json b/src/main/resources/assets/imsm/blockstates/useradded1268.json index 8582fbe2..084ffaf0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1268.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1268.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1268"}}} +{"variants": {"": {"model": "imsm:block/useradded1268"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1269.json b/src/main/resources/assets/imsm/blockstates/useradded1269.json index c6ec972b..108344ef 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1269.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1269.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1269"}}} +{"variants": {"": {"model": "imsm:block/useradded1269"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded127.json b/src/main/resources/assets/imsm/blockstates/useradded127.json index 6fb4be51..cecd0266 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded127.json +++ b/src/main/resources/assets/imsm/blockstates/useradded127.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded127"}}} +{"variants": {"": {"model": "imsm:block/useradded127"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1270.json b/src/main/resources/assets/imsm/blockstates/useradded1270.json index eb0f472b..acd52642 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1270.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1270.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1270"}}} +{"variants": {"": {"model": "imsm:block/useradded1270"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1271.json b/src/main/resources/assets/imsm/blockstates/useradded1271.json index c620e3dd..584c7b2f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1271.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1271.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1271"}}} +{"variants": {"": {"model": "imsm:block/useradded1271"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1272.json b/src/main/resources/assets/imsm/blockstates/useradded1272.json index 4eb62563..24dd3e50 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1272.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1272.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1272"}}} +{"variants": {"": {"model": "imsm:block/useradded1272"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1273.json b/src/main/resources/assets/imsm/blockstates/useradded1273.json index 70eef823..f21f24c8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1273.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1273.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1273"}}} +{"variants": {"": {"model": "imsm:block/useradded1273"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1274.json b/src/main/resources/assets/imsm/blockstates/useradded1274.json index be6556f3..872d213d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1274.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1274.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1274"}}} +{"variants": {"": {"model": "imsm:block/useradded1274"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1275.json b/src/main/resources/assets/imsm/blockstates/useradded1275.json index 5b36b174..1b741a81 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1275.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1275.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1275"}}} +{"variants": {"": {"model": "imsm:block/useradded1275"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1276.json b/src/main/resources/assets/imsm/blockstates/useradded1276.json index c3547e5c..b27d7a71 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1276.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1276.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1276"}}} +{"variants": {"": {"model": "imsm:block/useradded1276"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1277.json b/src/main/resources/assets/imsm/blockstates/useradded1277.json index cb4ffdc4..ef0a60b1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1277.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1277.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1277"}}} +{"variants": {"": {"model": "imsm:block/useradded1277"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1278.json b/src/main/resources/assets/imsm/blockstates/useradded1278.json index 749b8890..e7b62ae4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1278.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1278.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1278"}}} +{"variants": {"": {"model": "imsm:block/useradded1278"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1279.json b/src/main/resources/assets/imsm/blockstates/useradded1279.json index 93c940a1..78b572d7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1279.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1279.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1279"}}} +{"variants": {"": {"model": "imsm:block/useradded1279"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded128.json b/src/main/resources/assets/imsm/blockstates/useradded128.json index 0140cabb..9a972411 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded128.json +++ b/src/main/resources/assets/imsm/blockstates/useradded128.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded128"}}} +{"variants": {"": {"model": "imsm:block/useradded128"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1280.json b/src/main/resources/assets/imsm/blockstates/useradded1280.json index 62f52375..017e8ee2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1280.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1280.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1280"}}} +{"variants": {"": {"model": "imsm:block/useradded1280"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1281.json b/src/main/resources/assets/imsm/blockstates/useradded1281.json index d3ce219e..f5aedd5f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1281.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1281.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1281"}}} +{"variants": {"": {"model": "imsm:block/useradded1281"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1282.json b/src/main/resources/assets/imsm/blockstates/useradded1282.json index 2c8fedfc..d0f02e62 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1282.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1282.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1282"}}} +{"variants": {"": {"model": "imsm:block/useradded1282"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1283.json b/src/main/resources/assets/imsm/blockstates/useradded1283.json index 5df335a0..6900b7e6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1283.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1283.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1283"}}} +{"variants": {"": {"model": "imsm:block/useradded1283"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1284.json b/src/main/resources/assets/imsm/blockstates/useradded1284.json index 617f36e5..242f76ca 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1284.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1284.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1284"}}} +{"variants": {"": {"model": "imsm:block/useradded1284"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1285.json b/src/main/resources/assets/imsm/blockstates/useradded1285.json index 8446b89e..8d136427 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1285.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1285.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1285"}}} +{"variants": {"": {"model": "imsm:block/useradded1285"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1286.json b/src/main/resources/assets/imsm/blockstates/useradded1286.json index 42cb442c..471e991d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1286.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1286.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1286"}}} +{"variants": {"": {"model": "imsm:block/useradded1286"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1287.json b/src/main/resources/assets/imsm/blockstates/useradded1287.json index 5ba6d047..837c9cfe 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1287.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1287.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1287"}}} +{"variants": {"": {"model": "imsm:block/useradded1287"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1288.json b/src/main/resources/assets/imsm/blockstates/useradded1288.json index 1bf8619a..9f9ff00a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1288.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1288.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1288"}}} +{"variants": {"": {"model": "imsm:block/useradded1288"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1289.json b/src/main/resources/assets/imsm/blockstates/useradded1289.json index 583e1f6b..faf01bd4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1289.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1289.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1289"}}} +{"variants": {"": {"model": "imsm:block/useradded1289"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded129.json b/src/main/resources/assets/imsm/blockstates/useradded129.json index 44ed11cd..bde0fe68 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded129.json +++ b/src/main/resources/assets/imsm/blockstates/useradded129.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded129"}}} +{"variants": {"": {"model": "imsm:block/useradded129"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1290.json b/src/main/resources/assets/imsm/blockstates/useradded1290.json index e169b649..267d78c2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1290.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1290.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1290"}}} +{"variants": {"": {"model": "imsm:block/useradded1290"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1291.json b/src/main/resources/assets/imsm/blockstates/useradded1291.json index 5fa393d0..cd6e3d36 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1291.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1291.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1291"}}} +{"variants": {"": {"model": "imsm:block/useradded1291"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1292.json b/src/main/resources/assets/imsm/blockstates/useradded1292.json index 701893b8..ea2a47d4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1292.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1292.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1292"}}} +{"variants": {"": {"model": "imsm:block/useradded1292"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1293.json b/src/main/resources/assets/imsm/blockstates/useradded1293.json index 1b86374d..27c33600 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1293.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1293.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1293"}}} +{"variants": {"": {"model": "imsm:block/useradded1293"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1294.json b/src/main/resources/assets/imsm/blockstates/useradded1294.json index f7b5eeca..2b822ae1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1294.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1294.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1294"}}} +{"variants": {"": {"model": "imsm:block/useradded1294"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1295.json b/src/main/resources/assets/imsm/blockstates/useradded1295.json index dae5ed88..5b0d7a0d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1295.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1295.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1295"}}} +{"variants": {"": {"model": "imsm:block/useradded1295"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1296.json b/src/main/resources/assets/imsm/blockstates/useradded1296.json index 9e875692..ef672c0e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1296.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1296.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1296"}}} +{"variants": {"": {"model": "imsm:block/useradded1296"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1297.json b/src/main/resources/assets/imsm/blockstates/useradded1297.json index 93e88a0b..2179738f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1297.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1297.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1297"}}} +{"variants": {"": {"model": "imsm:block/useradded1297"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1298.json b/src/main/resources/assets/imsm/blockstates/useradded1298.json index d56c63e0..bb4938b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1298.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1298.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1298"}}} +{"variants": {"": {"model": "imsm:block/useradded1298"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1299.json b/src/main/resources/assets/imsm/blockstates/useradded1299.json index 967069ef..981a7744 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1299.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1299.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1299"}}} +{"variants": {"": {"model": "imsm:block/useradded1299"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded13.json b/src/main/resources/assets/imsm/blockstates/useradded13.json index be5c5b3d..9c1a98eb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded13.json +++ b/src/main/resources/assets/imsm/blockstates/useradded13.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded13"}}} +{"variants": {"": {"model": "imsm:block/useradded13"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded130.json b/src/main/resources/assets/imsm/blockstates/useradded130.json index 463c92ac..d9c15cde 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded130.json +++ b/src/main/resources/assets/imsm/blockstates/useradded130.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded130"}}} +{"variants": {"": {"model": "imsm:block/useradded130"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1300.json b/src/main/resources/assets/imsm/blockstates/useradded1300.json index 68da0c91..c6a9d3bf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1300.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1300.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1300"}}} +{"variants": {"": {"model": "imsm:block/useradded1300"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1301.json b/src/main/resources/assets/imsm/blockstates/useradded1301.json index 3670c715..e362efcb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1301.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1301.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1301"}}} +{"variants": {"": {"model": "imsm:block/useradded1301"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1302.json b/src/main/resources/assets/imsm/blockstates/useradded1302.json index c5604c0d..10d4d6d9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1302.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1302.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1302"}}} +{"variants": {"": {"model": "imsm:block/useradded1302"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1303.json b/src/main/resources/assets/imsm/blockstates/useradded1303.json index 1ee1cbdb..0cc20d49 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1303.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1303.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1303"}}} +{"variants": {"": {"model": "imsm:block/useradded1303"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1304.json b/src/main/resources/assets/imsm/blockstates/useradded1304.json index d968580e..a4c4bd1a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1304.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1304.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1304"}}} +{"variants": {"": {"model": "imsm:block/useradded1304"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1305.json b/src/main/resources/assets/imsm/blockstates/useradded1305.json index de7b1ce7..f8ff6174 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1305.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1305.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1305"}}} +{"variants": {"": {"model": "imsm:block/useradded1305"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1306.json b/src/main/resources/assets/imsm/blockstates/useradded1306.json index c8b767e8..4e5264ee 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1306.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1306.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1306"}}} +{"variants": {"": {"model": "imsm:block/useradded1306"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1307.json b/src/main/resources/assets/imsm/blockstates/useradded1307.json index c51c4e8e..514ac25b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1307.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1307.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1307"}}} +{"variants": {"": {"model": "imsm:block/useradded1307"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1308.json b/src/main/resources/assets/imsm/blockstates/useradded1308.json index 1a4446fc..f00e6e17 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1308.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1308.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1308"}}} +{"variants": {"": {"model": "imsm:block/useradded1308"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1309.json b/src/main/resources/assets/imsm/blockstates/useradded1309.json index b0e1a1c5..d95ce33a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1309.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1309.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1309"}}} +{"variants": {"": {"model": "imsm:block/useradded1309"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded131.json b/src/main/resources/assets/imsm/blockstates/useradded131.json index 981daef3..6da30b61 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded131.json +++ b/src/main/resources/assets/imsm/blockstates/useradded131.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded131"}}} +{"variants": {"": {"model": "imsm:block/useradded131"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1310.json b/src/main/resources/assets/imsm/blockstates/useradded1310.json index 47e68000..228b572c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1310.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1310.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1310"}}} +{"variants": {"": {"model": "imsm:block/useradded1310"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1311.json b/src/main/resources/assets/imsm/blockstates/useradded1311.json index f6e79769..2f2efb14 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1311.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1311.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1311"}}} +{"variants": {"": {"model": "imsm:block/useradded1311"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1312.json b/src/main/resources/assets/imsm/blockstates/useradded1312.json index f55f039b..4ab1606f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1312.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1312.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1312"}}} +{"variants": {"": {"model": "imsm:block/useradded1312"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1313.json b/src/main/resources/assets/imsm/blockstates/useradded1313.json index dd0630f2..d9615268 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1313.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1313.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1313"}}} +{"variants": {"": {"model": "imsm:block/useradded1313"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1314.json b/src/main/resources/assets/imsm/blockstates/useradded1314.json index 946737da..6d712b1a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1314.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1314.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1314"}}} +{"variants": {"": {"model": "imsm:block/useradded1314"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1315.json b/src/main/resources/assets/imsm/blockstates/useradded1315.json index 6aa6d462..0d045c51 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1315.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1315.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1315"}}} +{"variants": {"": {"model": "imsm:block/useradded1315"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1316.json b/src/main/resources/assets/imsm/blockstates/useradded1316.json index 7b67844d..10bd6958 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1316.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1316.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1316"}}} +{"variants": {"": {"model": "imsm:block/useradded1316"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1317.json b/src/main/resources/assets/imsm/blockstates/useradded1317.json index d7f7352a..536d6a22 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1317.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1317.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1317"}}} +{"variants": {"": {"model": "imsm:block/useradded1317"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1318.json b/src/main/resources/assets/imsm/blockstates/useradded1318.json index 0208f534..0e0d0011 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1318.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1318.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1318"}}} +{"variants": {"": {"model": "imsm:block/useradded1318"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1319.json b/src/main/resources/assets/imsm/blockstates/useradded1319.json index e713b6aa..1371d8c9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1319.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1319.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1319"}}} +{"variants": {"": {"model": "imsm:block/useradded1319"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded132.json b/src/main/resources/assets/imsm/blockstates/useradded132.json index 0927d952..c90c3947 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded132.json +++ b/src/main/resources/assets/imsm/blockstates/useradded132.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded132"}}} +{"variants": {"": {"model": "imsm:block/useradded132"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1320.json b/src/main/resources/assets/imsm/blockstates/useradded1320.json index c1e499ac..76ffc957 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1320.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1320.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1320"}}} +{"variants": {"": {"model": "imsm:block/useradded1320"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1321.json b/src/main/resources/assets/imsm/blockstates/useradded1321.json index 00346ec3..52fb4a4d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1321.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1321.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1321"}}} +{"variants": {"": {"model": "imsm:block/useradded1321"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1322.json b/src/main/resources/assets/imsm/blockstates/useradded1322.json index 8055b10e..09acfb16 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1322.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1322.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1322"}}} +{"variants": {"": {"model": "imsm:block/useradded1322"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1323.json b/src/main/resources/assets/imsm/blockstates/useradded1323.json index 60dace19..2df0a758 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1323.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1323.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1323"}}} +{"variants": {"": {"model": "imsm:block/useradded1323"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1324.json b/src/main/resources/assets/imsm/blockstates/useradded1324.json index 2dc1e926..49fd5937 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1324.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1324.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1324"}}} +{"variants": {"": {"model": "imsm:block/useradded1324"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1325.json b/src/main/resources/assets/imsm/blockstates/useradded1325.json index bdc461b8..9ddc826f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1325.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1325.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1325"}}} +{"variants": {"": {"model": "imsm:block/useradded1325"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1326.json b/src/main/resources/assets/imsm/blockstates/useradded1326.json index e5e7cb58..edc60cae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1326.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1326.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1326"}}} +{"variants": {"": {"model": "imsm:block/useradded1326"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1327.json b/src/main/resources/assets/imsm/blockstates/useradded1327.json index 1be02d3b..a44b4f7b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1327.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1327.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1327"}}} +{"variants": {"": {"model": "imsm:block/useradded1327"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1328.json b/src/main/resources/assets/imsm/blockstates/useradded1328.json index 72d5d55a..eb65d948 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1328.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1328.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1328"}}} +{"variants": {"": {"model": "imsm:block/useradded1328"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1329.json b/src/main/resources/assets/imsm/blockstates/useradded1329.json index 6901e816..b789c4bd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1329.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1329.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1329"}}} +{"variants": {"": {"model": "imsm:block/useradded1329"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded133.json b/src/main/resources/assets/imsm/blockstates/useradded133.json index 152269a7..46c076fe 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded133.json +++ b/src/main/resources/assets/imsm/blockstates/useradded133.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded133"}}} +{"variants": {"": {"model": "imsm:block/useradded133"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1330.json b/src/main/resources/assets/imsm/blockstates/useradded1330.json index d5083b07..42e36db9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1330.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1330.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1330"}}} +{"variants": {"": {"model": "imsm:block/useradded1330"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1331.json b/src/main/resources/assets/imsm/blockstates/useradded1331.json index 18df61ce..e0495ad6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1331.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1331.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1331"}}} +{"variants": {"": {"model": "imsm:block/useradded1331"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1332.json b/src/main/resources/assets/imsm/blockstates/useradded1332.json index bc0c2d9c..6425623b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1332.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1332.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1332"}}} +{"variants": {"": {"model": "imsm:block/useradded1332"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1333.json b/src/main/resources/assets/imsm/blockstates/useradded1333.json index 4f9969df..fd665beb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1333.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1333.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1333"}}} +{"variants": {"": {"model": "imsm:block/useradded1333"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1334.json b/src/main/resources/assets/imsm/blockstates/useradded1334.json index 153a0158..c1611201 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1334.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1334.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1334"}}} +{"variants": {"": {"model": "imsm:block/useradded1334"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1335.json b/src/main/resources/assets/imsm/blockstates/useradded1335.json index 585b7a91..87ed357f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1335.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1335.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1335"}}} +{"variants": {"": {"model": "imsm:block/useradded1335"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1336.json b/src/main/resources/assets/imsm/blockstates/useradded1336.json index ed5a13d7..cfb58273 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1336.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1336.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1336"}}} +{"variants": {"": {"model": "imsm:block/useradded1336"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1337.json b/src/main/resources/assets/imsm/blockstates/useradded1337.json index dc78190c..0b37d927 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1337.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1337.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1337"}}} +{"variants": {"": {"model": "imsm:block/useradded1337"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1338.json b/src/main/resources/assets/imsm/blockstates/useradded1338.json index 3abf6e6d..4b5d8232 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1338.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1338.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1338"}}} +{"variants": {"": {"model": "imsm:block/useradded1338"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1339.json b/src/main/resources/assets/imsm/blockstates/useradded1339.json index 4eb4ba74..acf5a317 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1339.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1339.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1339"}}} +{"variants": {"": {"model": "imsm:block/useradded1339"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded134.json b/src/main/resources/assets/imsm/blockstates/useradded134.json index 61e7348e..006cf142 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded134.json +++ b/src/main/resources/assets/imsm/blockstates/useradded134.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded134"}}} +{"variants": {"": {"model": "imsm:block/useradded134"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1340.json b/src/main/resources/assets/imsm/blockstates/useradded1340.json index e1b5de57..91b32923 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1340.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1340.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1340"}}} +{"variants": {"": {"model": "imsm:block/useradded1340"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1341.json b/src/main/resources/assets/imsm/blockstates/useradded1341.json index 9cbc5ec4..adbf6e95 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1341.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1341.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1341"}}} +{"variants": {"": {"model": "imsm:block/useradded1341"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1342.json b/src/main/resources/assets/imsm/blockstates/useradded1342.json index fd71ca17..84753d59 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1342.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1342.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1342"}}} +{"variants": {"": {"model": "imsm:block/useradded1342"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1343.json b/src/main/resources/assets/imsm/blockstates/useradded1343.json index 3d905448..281b077e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1343.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1343.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1343"}}} +{"variants": {"": {"model": "imsm:block/useradded1343"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1344.json b/src/main/resources/assets/imsm/blockstates/useradded1344.json index 2e8d2d8a..cd90468f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1344.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1344.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1344"}}} +{"variants": {"": {"model": "imsm:block/useradded1344"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1345.json b/src/main/resources/assets/imsm/blockstates/useradded1345.json index cb2ccab7..1fe02c70 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1345.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1345.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1345"}}} +{"variants": {"": {"model": "imsm:block/useradded1345"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1346.json b/src/main/resources/assets/imsm/blockstates/useradded1346.json index a52576f5..6730c617 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1346.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1346.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1346"}}} +{"variants": {"": {"model": "imsm:block/useradded1346"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1347.json b/src/main/resources/assets/imsm/blockstates/useradded1347.json index ba4e9d8b..8727cc00 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1347.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1347.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1347"}}} +{"variants": {"": {"model": "imsm:block/useradded1347"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1348.json b/src/main/resources/assets/imsm/blockstates/useradded1348.json index 7e663905..2dd79707 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1348.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1348.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1348"}}} +{"variants": {"": {"model": "imsm:block/useradded1348"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1349.json b/src/main/resources/assets/imsm/blockstates/useradded1349.json index 362da466..ed7429e5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1349.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1349.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1349"}}} +{"variants": {"": {"model": "imsm:block/useradded1349"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded135.json b/src/main/resources/assets/imsm/blockstates/useradded135.json index 5968fe4f..0689b944 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded135.json +++ b/src/main/resources/assets/imsm/blockstates/useradded135.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded135"}}} +{"variants": {"": {"model": "imsm:block/useradded135"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1350.json b/src/main/resources/assets/imsm/blockstates/useradded1350.json index 40d9f9cc..a5915578 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1350.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1350.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1350"}}} +{"variants": {"": {"model": "imsm:block/useradded1350"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1351.json b/src/main/resources/assets/imsm/blockstates/useradded1351.json index c1e78699..398f63bf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1351.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1351.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1351"}}} +{"variants": {"": {"model": "imsm:block/useradded1351"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1352.json b/src/main/resources/assets/imsm/blockstates/useradded1352.json index 7e9da223..26d38968 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1352.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1352.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1352"}}} +{"variants": {"": {"model": "imsm:block/useradded1352"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1353.json b/src/main/resources/assets/imsm/blockstates/useradded1353.json index 8cfce318..8904c850 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1353.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1353.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1353"}}} +{"variants": {"": {"model": "imsm:block/useradded1353"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1354.json b/src/main/resources/assets/imsm/blockstates/useradded1354.json index f84360d5..81742bf1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1354.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1354.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1354"}}} +{"variants": {"": {"model": "imsm:block/useradded1354"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1355.json b/src/main/resources/assets/imsm/blockstates/useradded1355.json index 5a196b0a..922bd300 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1355.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1355.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1355"}}} +{"variants": {"": {"model": "imsm:block/useradded1355"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1356.json b/src/main/resources/assets/imsm/blockstates/useradded1356.json index 35b2c809..4b750289 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1356.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1356.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1356"}}} +{"variants": {"": {"model": "imsm:block/useradded1356"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1357.json b/src/main/resources/assets/imsm/blockstates/useradded1357.json index 6efbd8da..9cb71c1b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1357.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1357.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1357"}}} +{"variants": {"": {"model": "imsm:block/useradded1357"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1358.json b/src/main/resources/assets/imsm/blockstates/useradded1358.json index cc1c6478..5fe4103e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1358.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1358.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1358"}}} +{"variants": {"": {"model": "imsm:block/useradded1358"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1359.json b/src/main/resources/assets/imsm/blockstates/useradded1359.json index cbe9f4f9..289bedde 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1359.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1359.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1359"}}} +{"variants": {"": {"model": "imsm:block/useradded1359"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded136.json b/src/main/resources/assets/imsm/blockstates/useradded136.json index 9af8d049..0f2c20f1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded136.json +++ b/src/main/resources/assets/imsm/blockstates/useradded136.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded136"}}} +{"variants": {"": {"model": "imsm:block/useradded136"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1360.json b/src/main/resources/assets/imsm/blockstates/useradded1360.json index 9e5b5ad1..05417381 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1360.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1360.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1360"}}} +{"variants": {"": {"model": "imsm:block/useradded1360"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1361.json b/src/main/resources/assets/imsm/blockstates/useradded1361.json index 354cd1dd..3e447bf3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1361.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1361.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1361"}}} +{"variants": {"": {"model": "imsm:block/useradded1361"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1362.json b/src/main/resources/assets/imsm/blockstates/useradded1362.json index 79ced42d..8cca3da1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1362.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1362.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1362"}}} +{"variants": {"": {"model": "imsm:block/useradded1362"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1363.json b/src/main/resources/assets/imsm/blockstates/useradded1363.json index cdd2d5b3..15debf91 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1363.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1363.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1363"}}} +{"variants": {"": {"model": "imsm:block/useradded1363"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1364.json b/src/main/resources/assets/imsm/blockstates/useradded1364.json index 9ae7fa95..1487bd7c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1364.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1364.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1364"}}} +{"variants": {"": {"model": "imsm:block/useradded1364"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1365.json b/src/main/resources/assets/imsm/blockstates/useradded1365.json index ac1b15cf..dc4c5722 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1365.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1365.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1365"}}} +{"variants": {"": {"model": "imsm:block/useradded1365"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1366.json b/src/main/resources/assets/imsm/blockstates/useradded1366.json index cca5f655..a02317d3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1366.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1366.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1366"}}} +{"variants": {"": {"model": "imsm:block/useradded1366"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1367.json b/src/main/resources/assets/imsm/blockstates/useradded1367.json index c5435832..d35bb1fc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1367.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1367.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1367"}}} +{"variants": {"": {"model": "imsm:block/useradded1367"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1368.json b/src/main/resources/assets/imsm/blockstates/useradded1368.json index 8b224121..37137ba9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1368.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1368.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1368"}}} +{"variants": {"": {"model": "imsm:block/useradded1368"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1369.json b/src/main/resources/assets/imsm/blockstates/useradded1369.json index 233ee585..4db38d8f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1369.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1369.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1369"}}} +{"variants": {"": {"model": "imsm:block/useradded1369"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded137.json b/src/main/resources/assets/imsm/blockstates/useradded137.json index 5fe966d9..5e14710c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded137.json +++ b/src/main/resources/assets/imsm/blockstates/useradded137.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded137"}}} +{"variants": {"": {"model": "imsm:block/useradded137"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1370.json b/src/main/resources/assets/imsm/blockstates/useradded1370.json index da336b66..97b490d4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1370.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1370.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1370"}}} +{"variants": {"": {"model": "imsm:block/useradded1370"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1371.json b/src/main/resources/assets/imsm/blockstates/useradded1371.json index fbfadd4a..55ad09c1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1371.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1371.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1371"}}} +{"variants": {"": {"model": "imsm:block/useradded1371"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1372.json b/src/main/resources/assets/imsm/blockstates/useradded1372.json index a5f58946..785369af 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1372.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1372.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1372"}}} +{"variants": {"": {"model": "imsm:block/useradded1372"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1373.json b/src/main/resources/assets/imsm/blockstates/useradded1373.json index 42641899..a224fc01 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1373.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1373.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1373"}}} +{"variants": {"": {"model": "imsm:block/useradded1373"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1374.json b/src/main/resources/assets/imsm/blockstates/useradded1374.json index 2e1a407a..1424b4e8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1374.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1374.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1374"}}} +{"variants": {"": {"model": "imsm:block/useradded1374"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1375.json b/src/main/resources/assets/imsm/blockstates/useradded1375.json index f2a5fe94..5edcf5a7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1375.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1375.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1375"}}} +{"variants": {"": {"model": "imsm:block/useradded1375"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1376.json b/src/main/resources/assets/imsm/blockstates/useradded1376.json index 7c157475..7c707ef8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1376.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1376.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1376"}}} +{"variants": {"": {"model": "imsm:block/useradded1376"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1377.json b/src/main/resources/assets/imsm/blockstates/useradded1377.json index e0c2a986..af5d8b72 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1377.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1377.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1377"}}} +{"variants": {"": {"model": "imsm:block/useradded1377"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1378.json b/src/main/resources/assets/imsm/blockstates/useradded1378.json index a6c8cd24..68a28342 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1378.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1378.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1378"}}} +{"variants": {"": {"model": "imsm:block/useradded1378"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1379.json b/src/main/resources/assets/imsm/blockstates/useradded1379.json index 8773f3eb..ba5c4605 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1379.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1379.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1379"}}} +{"variants": {"": {"model": "imsm:block/useradded1379"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded138.json b/src/main/resources/assets/imsm/blockstates/useradded138.json index f54d5fd8..0f6b13d9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded138.json +++ b/src/main/resources/assets/imsm/blockstates/useradded138.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded138"}}} +{"variants": {"": {"model": "imsm:block/useradded138"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1380.json b/src/main/resources/assets/imsm/blockstates/useradded1380.json index c3cda3a3..dd000dd9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1380.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1380.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1380"}}} +{"variants": {"": {"model": "imsm:block/useradded1380"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1381.json b/src/main/resources/assets/imsm/blockstates/useradded1381.json index d38c6089..fe120188 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1381.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1381.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1381"}}} +{"variants": {"": {"model": "imsm:block/useradded1381"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1382.json b/src/main/resources/assets/imsm/blockstates/useradded1382.json index ece2a25f..f33c6a81 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1382.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1382.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1382"}}} +{"variants": {"": {"model": "imsm:block/useradded1382"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1383.json b/src/main/resources/assets/imsm/blockstates/useradded1383.json index 5a1291b8..99226e06 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1383.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1383.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1383"}}} +{"variants": {"": {"model": "imsm:block/useradded1383"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1384.json b/src/main/resources/assets/imsm/blockstates/useradded1384.json index a0cab3ab..35410ac2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1384.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1384.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1384"}}} +{"variants": {"": {"model": "imsm:block/useradded1384"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1385.json b/src/main/resources/assets/imsm/blockstates/useradded1385.json index 330ba2ca..16a43efd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1385.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1385.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1385"}}} +{"variants": {"": {"model": "imsm:block/useradded1385"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1386.json b/src/main/resources/assets/imsm/blockstates/useradded1386.json index ff353ff0..b5485177 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1386.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1386.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1386"}}} +{"variants": {"": {"model": "imsm:block/useradded1386"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1387.json b/src/main/resources/assets/imsm/blockstates/useradded1387.json index 2876a447..5d90c827 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1387.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1387.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1387"}}} +{"variants": {"": {"model": "imsm:block/useradded1387"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1388.json b/src/main/resources/assets/imsm/blockstates/useradded1388.json index f8e8c7f4..72774c44 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1388.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1388.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1388"}}} +{"variants": {"": {"model": "imsm:block/useradded1388"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1389.json b/src/main/resources/assets/imsm/blockstates/useradded1389.json index 6f213d9e..d270a6a0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1389.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1389.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1389"}}} +{"variants": {"": {"model": "imsm:block/useradded1389"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded139.json b/src/main/resources/assets/imsm/blockstates/useradded139.json index 4eebee7e..c0fd6f46 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded139.json +++ b/src/main/resources/assets/imsm/blockstates/useradded139.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded139"}}} +{"variants": {"": {"model": "imsm:block/useradded139"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1390.json b/src/main/resources/assets/imsm/blockstates/useradded1390.json index 8416fda0..db52b3da 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1390.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1390.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1390"}}} +{"variants": {"": {"model": "imsm:block/useradded1390"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1391.json b/src/main/resources/assets/imsm/blockstates/useradded1391.json index c4123845..317f302c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1391.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1391.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1391"}}} +{"variants": {"": {"model": "imsm:block/useradded1391"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1392.json b/src/main/resources/assets/imsm/blockstates/useradded1392.json index c7ccc9c0..7ae8228e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1392.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1392.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1392"}}} +{"variants": {"": {"model": "imsm:block/useradded1392"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1393.json b/src/main/resources/assets/imsm/blockstates/useradded1393.json index b5cc1a60..71b3a58e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1393.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1393.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1393"}}} +{"variants": {"": {"model": "imsm:block/useradded1393"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1394.json b/src/main/resources/assets/imsm/blockstates/useradded1394.json index 3b2f5892..34180ac9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1394.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1394.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1394"}}} +{"variants": {"": {"model": "imsm:block/useradded1394"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1395.json b/src/main/resources/assets/imsm/blockstates/useradded1395.json index e94f2384..125ebd72 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1395.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1395.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1395"}}} +{"variants": {"": {"model": "imsm:block/useradded1395"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1396.json b/src/main/resources/assets/imsm/blockstates/useradded1396.json index b3f765ba..ee18521a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1396.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1396.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1396"}}} +{"variants": {"": {"model": "imsm:block/useradded1396"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1397.json b/src/main/resources/assets/imsm/blockstates/useradded1397.json index 8f33f354..a58d8ea4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1397.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1397.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1397"}}} +{"variants": {"": {"model": "imsm:block/useradded1397"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1398.json b/src/main/resources/assets/imsm/blockstates/useradded1398.json index 9ea6a285..e903288a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1398.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1398.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1398"}}} +{"variants": {"": {"model": "imsm:block/useradded1398"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1399.json b/src/main/resources/assets/imsm/blockstates/useradded1399.json index 76594d91..b68b2e36 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1399.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1399.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1399"}}} +{"variants": {"": {"model": "imsm:block/useradded1399"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded14.json b/src/main/resources/assets/imsm/blockstates/useradded14.json index 5365086e..4eb25abf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded14.json +++ b/src/main/resources/assets/imsm/blockstates/useradded14.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded14"}}} +{"variants": {"": {"model": "imsm:block/useradded14"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded140.json b/src/main/resources/assets/imsm/blockstates/useradded140.json index b0255b55..f9b7b839 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded140.json +++ b/src/main/resources/assets/imsm/blockstates/useradded140.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded140"}}} +{"variants": {"": {"model": "imsm:block/useradded140"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1400.json b/src/main/resources/assets/imsm/blockstates/useradded1400.json index 0e3cad7c..8d4356cb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1400.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1400.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1400"}}} +{"variants": {"": {"model": "imsm:block/useradded1400"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1401.json b/src/main/resources/assets/imsm/blockstates/useradded1401.json index 9d12123d..14a280b6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1401.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1401.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1401"}}} +{"variants": {"": {"model": "imsm:block/useradded1401"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1402.json b/src/main/resources/assets/imsm/blockstates/useradded1402.json index ad36bf17..8640b401 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1402.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1402.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1402"}}} +{"variants": {"": {"model": "imsm:block/useradded1402"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1403.json b/src/main/resources/assets/imsm/blockstates/useradded1403.json index bcf6d2bc..da1da5a4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1403.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1403.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1403"}}} +{"variants": {"": {"model": "imsm:block/useradded1403"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1404.json b/src/main/resources/assets/imsm/blockstates/useradded1404.json index 9ee36916..b6c57f94 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1404.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1404.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1404"}}} +{"variants": {"": {"model": "imsm:block/useradded1404"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1405.json b/src/main/resources/assets/imsm/blockstates/useradded1405.json index d4bf738d..beea08a2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1405.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1405.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1405"}}} +{"variants": {"": {"model": "imsm:block/useradded1405"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1406.json b/src/main/resources/assets/imsm/blockstates/useradded1406.json index 45602ce1..da3a2da0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1406.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1406.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1406"}}} +{"variants": {"": {"model": "imsm:block/useradded1406"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1407.json b/src/main/resources/assets/imsm/blockstates/useradded1407.json index 74382cef..4f9d4fa7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1407.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1407.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1407"}}} +{"variants": {"": {"model": "imsm:block/useradded1407"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1408.json b/src/main/resources/assets/imsm/blockstates/useradded1408.json index 0f24f0b0..b9d1f58e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1408.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1408.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1408"}}} +{"variants": {"": {"model": "imsm:block/useradded1408"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1409.json b/src/main/resources/assets/imsm/blockstates/useradded1409.json index 50b0818c..b939f637 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1409.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1409.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1409"}}} +{"variants": {"": {"model": "imsm:block/useradded1409"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded141.json b/src/main/resources/assets/imsm/blockstates/useradded141.json index 8224297f..25fcd201 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded141.json +++ b/src/main/resources/assets/imsm/blockstates/useradded141.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded141"}}} +{"variants": {"": {"model": "imsm:block/useradded141"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1410.json b/src/main/resources/assets/imsm/blockstates/useradded1410.json index 7f1f09f4..664b8c81 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1410.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1410.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1410"}}} +{"variants": {"": {"model": "imsm:block/useradded1410"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1411.json b/src/main/resources/assets/imsm/blockstates/useradded1411.json index 519780ce..c2afc0d9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1411.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1411.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1411"}}} +{"variants": {"": {"model": "imsm:block/useradded1411"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1412.json b/src/main/resources/assets/imsm/blockstates/useradded1412.json index 9a998df0..fd82859e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1412.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1412.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1412"}}} +{"variants": {"": {"model": "imsm:block/useradded1412"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1413.json b/src/main/resources/assets/imsm/blockstates/useradded1413.json index 9ce74e03..68709793 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1413.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1413.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1413"}}} +{"variants": {"": {"model": "imsm:block/useradded1413"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1414.json b/src/main/resources/assets/imsm/blockstates/useradded1414.json index 14bc750b..f53f7a27 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1414.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1414.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1414"}}} +{"variants": {"": {"model": "imsm:block/useradded1414"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1415.json b/src/main/resources/assets/imsm/blockstates/useradded1415.json index fe8e207b..d6146979 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1415.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1415.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1415"}}} +{"variants": {"": {"model": "imsm:block/useradded1415"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1416.json b/src/main/resources/assets/imsm/blockstates/useradded1416.json index d2b7eb4c..c676ae39 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1416.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1416.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1416"}}} +{"variants": {"": {"model": "imsm:block/useradded1416"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1417.json b/src/main/resources/assets/imsm/blockstates/useradded1417.json index 897e22c8..d670a1c2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1417.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1417.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1417"}}} +{"variants": {"": {"model": "imsm:block/useradded1417"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1418.json b/src/main/resources/assets/imsm/blockstates/useradded1418.json index 178cc387..66f69e38 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1418.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1418.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1418"}}} +{"variants": {"": {"model": "imsm:block/useradded1418"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1419.json b/src/main/resources/assets/imsm/blockstates/useradded1419.json index 6a547cfd..a442af38 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1419.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1419.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1419"}}} +{"variants": {"": {"model": "imsm:block/useradded1419"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded142.json b/src/main/resources/assets/imsm/blockstates/useradded142.json index 43395d56..396bb2ef 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded142.json +++ b/src/main/resources/assets/imsm/blockstates/useradded142.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded142"}}} +{"variants": {"": {"model": "imsm:block/useradded142"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1420.json b/src/main/resources/assets/imsm/blockstates/useradded1420.json index 167b57b0..9a4a522e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1420.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1420.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1420"}}} +{"variants": {"": {"model": "imsm:block/useradded1420"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1421.json b/src/main/resources/assets/imsm/blockstates/useradded1421.json index 5407dd9b..7e4f277f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1421.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1421.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1421"}}} +{"variants": {"": {"model": "imsm:block/useradded1421"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1422.json b/src/main/resources/assets/imsm/blockstates/useradded1422.json index 8c9717b1..8ce92b39 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1422.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1422.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1422"}}} +{"variants": {"": {"model": "imsm:block/useradded1422"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1423.json b/src/main/resources/assets/imsm/blockstates/useradded1423.json index da74e1fd..df533cd1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1423.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1423.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1423"}}} +{"variants": {"": {"model": "imsm:block/useradded1423"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1424.json b/src/main/resources/assets/imsm/blockstates/useradded1424.json index c994d201..a9b49e87 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1424.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1424.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1424"}}} +{"variants": {"": {"model": "imsm:block/useradded1424"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1425.json b/src/main/resources/assets/imsm/blockstates/useradded1425.json index 59b8834c..5fb7ca0d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1425.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1425.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1425"}}} +{"variants": {"": {"model": "imsm:block/useradded1425"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1426.json b/src/main/resources/assets/imsm/blockstates/useradded1426.json index 4324697f..0c88a0f9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1426.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1426.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1426"}}} +{"variants": {"": {"model": "imsm:block/useradded1426"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1427.json b/src/main/resources/assets/imsm/blockstates/useradded1427.json index a804c51a..53777e4a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1427.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1427.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1427"}}} +{"variants": {"": {"model": "imsm:block/useradded1427"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1428.json b/src/main/resources/assets/imsm/blockstates/useradded1428.json index 56462b59..5bd16427 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1428.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1428.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1428"}}} +{"variants": {"": {"model": "imsm:block/useradded1428"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1429.json b/src/main/resources/assets/imsm/blockstates/useradded1429.json index 79cbb9ce..f62a9be7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1429.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1429.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1429"}}} +{"variants": {"": {"model": "imsm:block/useradded1429"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded143.json b/src/main/resources/assets/imsm/blockstates/useradded143.json index 03f364d8..fd61815a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded143.json +++ b/src/main/resources/assets/imsm/blockstates/useradded143.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded143"}}} +{"variants": {"": {"model": "imsm:block/useradded143"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1430.json b/src/main/resources/assets/imsm/blockstates/useradded1430.json index 2178c345..c82aebda 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1430.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1430.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1430"}}} +{"variants": {"": {"model": "imsm:block/useradded1430"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1431.json b/src/main/resources/assets/imsm/blockstates/useradded1431.json index 1315b3f6..f9777b16 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1431.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1431.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1431"}}} +{"variants": {"": {"model": "imsm:block/useradded1431"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1432.json b/src/main/resources/assets/imsm/blockstates/useradded1432.json index e5bec4b1..951702b5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1432.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1432.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1432"}}} +{"variants": {"": {"model": "imsm:block/useradded1432"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1433.json b/src/main/resources/assets/imsm/blockstates/useradded1433.json index b5fb8018..baf4d094 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1433.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1433.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1433"}}} +{"variants": {"": {"model": "imsm:block/useradded1433"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1434.json b/src/main/resources/assets/imsm/blockstates/useradded1434.json index 81237be6..9b6ee48b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1434.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1434.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1434"}}} +{"variants": {"": {"model": "imsm:block/useradded1434"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1435.json b/src/main/resources/assets/imsm/blockstates/useradded1435.json index f7167d1a..a2a378cd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1435.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1435.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1435"}}} +{"variants": {"": {"model": "imsm:block/useradded1435"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1436.json b/src/main/resources/assets/imsm/blockstates/useradded1436.json index f45a4113..690e7aad 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1436.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1436.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1436"}}} +{"variants": {"": {"model": "imsm:block/useradded1436"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1437.json b/src/main/resources/assets/imsm/blockstates/useradded1437.json index af1b6b62..4eb4aec2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1437.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1437.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1437"}}} +{"variants": {"": {"model": "imsm:block/useradded1437"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1438.json b/src/main/resources/assets/imsm/blockstates/useradded1438.json index cf79f830..17a81583 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1438.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1438.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1438"}}} +{"variants": {"": {"model": "imsm:block/useradded1438"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1439.json b/src/main/resources/assets/imsm/blockstates/useradded1439.json index 3168f659..ca54f68b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1439.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1439.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1439"}}} +{"variants": {"": {"model": "imsm:block/useradded1439"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded144.json b/src/main/resources/assets/imsm/blockstates/useradded144.json index 7a0c9c49..500c04d1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded144.json +++ b/src/main/resources/assets/imsm/blockstates/useradded144.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded144"}}} +{"variants": {"": {"model": "imsm:block/useradded144"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1440.json b/src/main/resources/assets/imsm/blockstates/useradded1440.json index 9c95be1b..b92ea16b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1440.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1440.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1440"}}} +{"variants": {"": {"model": "imsm:block/useradded1440"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1441.json b/src/main/resources/assets/imsm/blockstates/useradded1441.json index ddb263d5..047f021a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1441.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1441.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1441"}}} +{"variants": {"": {"model": "imsm:block/useradded1441"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1442.json b/src/main/resources/assets/imsm/blockstates/useradded1442.json index 04881dd9..5d14399a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1442.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1442.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1442"}}} +{"variants": {"": {"model": "imsm:block/useradded1442"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1443.json b/src/main/resources/assets/imsm/blockstates/useradded1443.json index 4fcc0724..98a2b91b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1443.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1443.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1443"}}} +{"variants": {"": {"model": "imsm:block/useradded1443"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1444.json b/src/main/resources/assets/imsm/blockstates/useradded1444.json index 72367a0e..921850a8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1444.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1444.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1444"}}} +{"variants": {"": {"model": "imsm:block/useradded1444"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1445.json b/src/main/resources/assets/imsm/blockstates/useradded1445.json index 343f2a0d..2b2e6cd5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1445.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1445.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1445"}}} +{"variants": {"": {"model": "imsm:block/useradded1445"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1446.json b/src/main/resources/assets/imsm/blockstates/useradded1446.json index db372165..5aa5de2a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1446.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1446.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1446"}}} +{"variants": {"": {"model": "imsm:block/useradded1446"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1447.json b/src/main/resources/assets/imsm/blockstates/useradded1447.json index 6e86e550..c2a28568 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1447.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1447.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1447"}}} +{"variants": {"": {"model": "imsm:block/useradded1447"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1448.json b/src/main/resources/assets/imsm/blockstates/useradded1448.json index 23d6310d..d96da758 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1448.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1448.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1448"}}} +{"variants": {"": {"model": "imsm:block/useradded1448"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1449.json b/src/main/resources/assets/imsm/blockstates/useradded1449.json index bbfd00d1..db494cc4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1449.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1449.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1449"}}} +{"variants": {"": {"model": "imsm:block/useradded1449"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded145.json b/src/main/resources/assets/imsm/blockstates/useradded145.json index bfa1ef9d..73739cb0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded145.json +++ b/src/main/resources/assets/imsm/blockstates/useradded145.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded145"}}} +{"variants": {"": {"model": "imsm:block/useradded145"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1450.json b/src/main/resources/assets/imsm/blockstates/useradded1450.json index 1173136d..3e83dcc8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1450.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1450.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1450"}}} +{"variants": {"": {"model": "imsm:block/useradded1450"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1451.json b/src/main/resources/assets/imsm/blockstates/useradded1451.json index 141aa2e6..33ffa09b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1451.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1451.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1451"}}} +{"variants": {"": {"model": "imsm:block/useradded1451"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1452.json b/src/main/resources/assets/imsm/blockstates/useradded1452.json index 39963cec..c49df146 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1452.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1452.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1452"}}} +{"variants": {"": {"model": "imsm:block/useradded1452"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1453.json b/src/main/resources/assets/imsm/blockstates/useradded1453.json index 4da37b6b..1ca06d2b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1453.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1453.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1453"}}} +{"variants": {"": {"model": "imsm:block/useradded1453"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1454.json b/src/main/resources/assets/imsm/blockstates/useradded1454.json index 5649101b..8ae51f84 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1454.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1454.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1454"}}} +{"variants": {"": {"model": "imsm:block/useradded1454"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1455.json b/src/main/resources/assets/imsm/blockstates/useradded1455.json index e5d1a706..478e5bc8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1455.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1455.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1455"}}} +{"variants": {"": {"model": "imsm:block/useradded1455"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1456.json b/src/main/resources/assets/imsm/blockstates/useradded1456.json index 258a92a7..e87ce2bb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1456.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1456.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1456"}}} +{"variants": {"": {"model": "imsm:block/useradded1456"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1457.json b/src/main/resources/assets/imsm/blockstates/useradded1457.json index 2ec37326..677b0959 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1457.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1457.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1457"}}} +{"variants": {"": {"model": "imsm:block/useradded1457"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1458.json b/src/main/resources/assets/imsm/blockstates/useradded1458.json index a6f7a87c..a38190dc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1458.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1458.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1458"}}} +{"variants": {"": {"model": "imsm:block/useradded1458"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1459.json b/src/main/resources/assets/imsm/blockstates/useradded1459.json index 0b4c0b01..580c8d97 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1459.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1459.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1459"}}} +{"variants": {"": {"model": "imsm:block/useradded1459"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded146.json b/src/main/resources/assets/imsm/blockstates/useradded146.json index 74bca45a..d2f292ef 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded146.json +++ b/src/main/resources/assets/imsm/blockstates/useradded146.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded146"}}} +{"variants": {"": {"model": "imsm:block/useradded146"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1460.json b/src/main/resources/assets/imsm/blockstates/useradded1460.json index b24552a0..686c4bc6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1460.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1460.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1460"}}} +{"variants": {"": {"model": "imsm:block/useradded1460"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1461.json b/src/main/resources/assets/imsm/blockstates/useradded1461.json index 5d7bb27a..9e4c6f25 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1461.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1461.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1461"}}} +{"variants": {"": {"model": "imsm:block/useradded1461"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1462.json b/src/main/resources/assets/imsm/blockstates/useradded1462.json index 5200c8f2..06009c66 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1462.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1462.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1462"}}} +{"variants": {"": {"model": "imsm:block/useradded1462"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1463.json b/src/main/resources/assets/imsm/blockstates/useradded1463.json index b15a2f4a..073a46fd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1463.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1463.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1463"}}} +{"variants": {"": {"model": "imsm:block/useradded1463"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1464.json b/src/main/resources/assets/imsm/blockstates/useradded1464.json index 4d4a019b..cd7d6d3b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1464.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1464.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1464"}}} +{"variants": {"": {"model": "imsm:block/useradded1464"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1465.json b/src/main/resources/assets/imsm/blockstates/useradded1465.json index 83c1c56e..ea0c56d1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1465.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1465.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1465"}}} +{"variants": {"": {"model": "imsm:block/useradded1465"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1466.json b/src/main/resources/assets/imsm/blockstates/useradded1466.json index d228bde2..786c9628 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1466.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1466.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1466"}}} +{"variants": {"": {"model": "imsm:block/useradded1466"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1467.json b/src/main/resources/assets/imsm/blockstates/useradded1467.json index a8f41c5d..34438e32 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1467.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1467.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1467"}}} +{"variants": {"": {"model": "imsm:block/useradded1467"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1468.json b/src/main/resources/assets/imsm/blockstates/useradded1468.json index f63100ff..9a34ef81 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1468.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1468.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1468"}}} +{"variants": {"": {"model": "imsm:block/useradded1468"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1469.json b/src/main/resources/assets/imsm/blockstates/useradded1469.json index 71369173..15dc157a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1469.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1469.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1469"}}} +{"variants": {"": {"model": "imsm:block/useradded1469"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded147.json b/src/main/resources/assets/imsm/blockstates/useradded147.json index d26a1492..c9119cf3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded147.json +++ b/src/main/resources/assets/imsm/blockstates/useradded147.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded147"}}} +{"variants": {"": {"model": "imsm:block/useradded147"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1470.json b/src/main/resources/assets/imsm/blockstates/useradded1470.json index 52fe5763..87cf136d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1470.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1470.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1470"}}} +{"variants": {"": {"model": "imsm:block/useradded1470"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1471.json b/src/main/resources/assets/imsm/blockstates/useradded1471.json index 7b369a9f..8a562786 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1471.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1471.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1471"}}} +{"variants": {"": {"model": "imsm:block/useradded1471"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1472.json b/src/main/resources/assets/imsm/blockstates/useradded1472.json index 4aa9b0a2..4cc02f37 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1472.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1472.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1472"}}} +{"variants": {"": {"model": "imsm:block/useradded1472"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1473.json b/src/main/resources/assets/imsm/blockstates/useradded1473.json index d047dfc2..265fe8ae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1473.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1473.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1473"}}} +{"variants": {"": {"model": "imsm:block/useradded1473"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1474.json b/src/main/resources/assets/imsm/blockstates/useradded1474.json index fc2599a6..0d1d9642 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1474.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1474.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1474"}}} +{"variants": {"": {"model": "imsm:block/useradded1474"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1475.json b/src/main/resources/assets/imsm/blockstates/useradded1475.json index 38a3c017..09c75cda 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1475.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1475.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1475"}}} +{"variants": {"": {"model": "imsm:block/useradded1475"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1476.json b/src/main/resources/assets/imsm/blockstates/useradded1476.json index 7cdb54e4..6a454317 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1476.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1476.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1476"}}} +{"variants": {"": {"model": "imsm:block/useradded1476"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1477.json b/src/main/resources/assets/imsm/blockstates/useradded1477.json index 4568f92f..c43eb25c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1477.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1477.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1477"}}} +{"variants": {"": {"model": "imsm:block/useradded1477"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1478.json b/src/main/resources/assets/imsm/blockstates/useradded1478.json index fac613fe..d333d3e2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1478.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1478.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1478"}}} +{"variants": {"": {"model": "imsm:block/useradded1478"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1479.json b/src/main/resources/assets/imsm/blockstates/useradded1479.json index fbbb9891..1cce08f2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1479.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1479.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1479"}}} +{"variants": {"": {"model": "imsm:block/useradded1479"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded148.json b/src/main/resources/assets/imsm/blockstates/useradded148.json index c7f99a6a..616967a0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded148.json +++ b/src/main/resources/assets/imsm/blockstates/useradded148.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded148"}}} +{"variants": {"": {"model": "imsm:block/useradded148"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1480.json b/src/main/resources/assets/imsm/blockstates/useradded1480.json index 931fc588..4a7e174d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1480.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1480.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1480"}}} +{"variants": {"": {"model": "imsm:block/useradded1480"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1481.json b/src/main/resources/assets/imsm/blockstates/useradded1481.json index b146dea9..acd46e2c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1481.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1481.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1481"}}} +{"variants": {"": {"model": "imsm:block/useradded1481"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1482.json b/src/main/resources/assets/imsm/blockstates/useradded1482.json index 9321c2d4..f9cbcf64 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1482.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1482.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1482"}}} +{"variants": {"": {"model": "imsm:block/useradded1482"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1483.json b/src/main/resources/assets/imsm/blockstates/useradded1483.json index ef21464e..9514b5d0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1483.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1483.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1483"}}} +{"variants": {"": {"model": "imsm:block/useradded1483"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1484.json b/src/main/resources/assets/imsm/blockstates/useradded1484.json index 8e59ed97..ac38dce3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1484.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1484.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1484"}}} +{"variants": {"": {"model": "imsm:block/useradded1484"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1485.json b/src/main/resources/assets/imsm/blockstates/useradded1485.json index 7fb1744b..dc0572ec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1485.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1485.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1485"}}} +{"variants": {"": {"model": "imsm:block/useradded1485"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1486.json b/src/main/resources/assets/imsm/blockstates/useradded1486.json index c5b039d6..3b384fc4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1486.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1486.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1486"}}} +{"variants": {"": {"model": "imsm:block/useradded1486"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1487.json b/src/main/resources/assets/imsm/blockstates/useradded1487.json index f1fa607b..61474e14 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1487.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1487.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1487"}}} +{"variants": {"": {"model": "imsm:block/useradded1487"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1488.json b/src/main/resources/assets/imsm/blockstates/useradded1488.json index ed8d887a..a1bda0fa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1488.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1488.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1488"}}} +{"variants": {"": {"model": "imsm:block/useradded1488"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1489.json b/src/main/resources/assets/imsm/blockstates/useradded1489.json index bf5bed22..7a2a8deb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1489.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1489.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1489"}}} +{"variants": {"": {"model": "imsm:block/useradded1489"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded149.json b/src/main/resources/assets/imsm/blockstates/useradded149.json index 30d86d39..62ab61a8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded149.json +++ b/src/main/resources/assets/imsm/blockstates/useradded149.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded149"}}} +{"variants": {"": {"model": "imsm:block/useradded149"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1490.json b/src/main/resources/assets/imsm/blockstates/useradded1490.json index 3f2e9d8f..86894373 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1490.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1490.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1490"}}} +{"variants": {"": {"model": "imsm:block/useradded1490"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1491.json b/src/main/resources/assets/imsm/blockstates/useradded1491.json index e7cf3cb1..9584d2c4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1491.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1491.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1491"}}} +{"variants": {"": {"model": "imsm:block/useradded1491"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1492.json b/src/main/resources/assets/imsm/blockstates/useradded1492.json index 7f9ff0c0..119cfc47 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1492.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1492.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1492"}}} +{"variants": {"": {"model": "imsm:block/useradded1492"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1493.json b/src/main/resources/assets/imsm/blockstates/useradded1493.json index 2fa20fa4..ecc4da2d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1493.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1493.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1493"}}} +{"variants": {"": {"model": "imsm:block/useradded1493"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1494.json b/src/main/resources/assets/imsm/blockstates/useradded1494.json index c4c1cda8..db3b7a86 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1494.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1494.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1494"}}} +{"variants": {"": {"model": "imsm:block/useradded1494"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1495.json b/src/main/resources/assets/imsm/blockstates/useradded1495.json index f09382fd..cff1ce51 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1495.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1495.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1495"}}} +{"variants": {"": {"model": "imsm:block/useradded1495"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1496.json b/src/main/resources/assets/imsm/blockstates/useradded1496.json index 3c98a97b..08b5c1b2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1496.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1496.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1496"}}} +{"variants": {"": {"model": "imsm:block/useradded1496"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1497.json b/src/main/resources/assets/imsm/blockstates/useradded1497.json index 010cfa01..69050220 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1497.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1497.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1497"}}} +{"variants": {"": {"model": "imsm:block/useradded1497"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1498.json b/src/main/resources/assets/imsm/blockstates/useradded1498.json index f01ec222..c7cfa2ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1498.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1498.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1498"}}} +{"variants": {"": {"model": "imsm:block/useradded1498"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1499.json b/src/main/resources/assets/imsm/blockstates/useradded1499.json index d20ca7d7..5227b201 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1499.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1499.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1499"}}} +{"variants": {"": {"model": "imsm:block/useradded1499"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded15.json b/src/main/resources/assets/imsm/blockstates/useradded15.json index 9400379e..bce21af4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded15.json +++ b/src/main/resources/assets/imsm/blockstates/useradded15.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded15"}}} +{"variants": {"": {"model": "imsm:block/useradded15"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded150.json b/src/main/resources/assets/imsm/blockstates/useradded150.json index 0fc9bda8..d684308b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded150.json +++ b/src/main/resources/assets/imsm/blockstates/useradded150.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded150"}}} +{"variants": {"": {"model": "imsm:block/useradded150"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1500.json b/src/main/resources/assets/imsm/blockstates/useradded1500.json index ded001b3..3f953110 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1500.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1500.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1500"}}} +{"variants": {"": {"model": "imsm:block/useradded1500"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1501.json b/src/main/resources/assets/imsm/blockstates/useradded1501.json index 4f6253ce..bb50f352 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1501.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1501.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1501"}}} +{"variants": {"": {"model": "imsm:block/useradded1501"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1502.json b/src/main/resources/assets/imsm/blockstates/useradded1502.json index ae6b0317..29f71c87 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1502.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1502.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1502"}}} +{"variants": {"": {"model": "imsm:block/useradded1502"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1503.json b/src/main/resources/assets/imsm/blockstates/useradded1503.json index a557f8df..6ac29b09 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1503.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1503.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1503"}}} +{"variants": {"": {"model": "imsm:block/useradded1503"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1504.json b/src/main/resources/assets/imsm/blockstates/useradded1504.json index 0b1ba549..e4e85adf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1504.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1504.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1504"}}} +{"variants": {"": {"model": "imsm:block/useradded1504"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1505.json b/src/main/resources/assets/imsm/blockstates/useradded1505.json index 1dd14dc4..e026dadf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1505.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1505.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1505"}}} +{"variants": {"": {"model": "imsm:block/useradded1505"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1506.json b/src/main/resources/assets/imsm/blockstates/useradded1506.json index 42c44dce..049f47df 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1506.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1506.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1506"}}} +{"variants": {"": {"model": "imsm:block/useradded1506"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1507.json b/src/main/resources/assets/imsm/blockstates/useradded1507.json index c63323ae..0fd61160 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1507.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1507.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1507"}}} +{"variants": {"": {"model": "imsm:block/useradded1507"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1508.json b/src/main/resources/assets/imsm/blockstates/useradded1508.json index e7345e6e..3b7f342f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1508.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1508.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1508"}}} +{"variants": {"": {"model": "imsm:block/useradded1508"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1509.json b/src/main/resources/assets/imsm/blockstates/useradded1509.json index 847616eb..199d9fd2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1509.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1509.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1509"}}} +{"variants": {"": {"model": "imsm:block/useradded1509"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded151.json b/src/main/resources/assets/imsm/blockstates/useradded151.json index dcbc6fa5..78580ae9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded151.json +++ b/src/main/resources/assets/imsm/blockstates/useradded151.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded151"}}} +{"variants": {"": {"model": "imsm:block/useradded151"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1510.json b/src/main/resources/assets/imsm/blockstates/useradded1510.json index e845ec4f..be6c3c19 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1510.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1510.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1510"}}} +{"variants": {"": {"model": "imsm:block/useradded1510"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1511.json b/src/main/resources/assets/imsm/blockstates/useradded1511.json index 6b9bcb5a..e28f28d9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1511.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1511.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1511"}}} +{"variants": {"": {"model": "imsm:block/useradded1511"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1512.json b/src/main/resources/assets/imsm/blockstates/useradded1512.json index 2288bf79..06685556 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1512.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1512.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1512"}}} +{"variants": {"": {"model": "imsm:block/useradded1512"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1513.json b/src/main/resources/assets/imsm/blockstates/useradded1513.json index 838e8999..b9f0b96c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1513.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1513.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1513"}}} +{"variants": {"": {"model": "imsm:block/useradded1513"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1514.json b/src/main/resources/assets/imsm/blockstates/useradded1514.json index 00c3ad94..b01c916c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1514.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1514.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1514"}}} +{"variants": {"": {"model": "imsm:block/useradded1514"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1515.json b/src/main/resources/assets/imsm/blockstates/useradded1515.json index 10e815ec..d13a9842 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1515.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1515.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1515"}}} +{"variants": {"": {"model": "imsm:block/useradded1515"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1516.json b/src/main/resources/assets/imsm/blockstates/useradded1516.json index 20670eb8..580eb2ee 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1516.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1516.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1516"}}} +{"variants": {"": {"model": "imsm:block/useradded1516"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1517.json b/src/main/resources/assets/imsm/blockstates/useradded1517.json index 2673240b..755b5095 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1517.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1517.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1517"}}} +{"variants": {"": {"model": "imsm:block/useradded1517"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1518.json b/src/main/resources/assets/imsm/blockstates/useradded1518.json index db4d8384..37e02146 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1518.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1518.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1518"}}} +{"variants": {"": {"model": "imsm:block/useradded1518"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1519.json b/src/main/resources/assets/imsm/blockstates/useradded1519.json index 921d01e4..4c401907 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1519.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1519.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1519"}}} +{"variants": {"": {"model": "imsm:block/useradded1519"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded152.json b/src/main/resources/assets/imsm/blockstates/useradded152.json index ee0de4e4..d8bf4584 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded152.json +++ b/src/main/resources/assets/imsm/blockstates/useradded152.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded152"}}} +{"variants": {"": {"model": "imsm:block/useradded152"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1520.json b/src/main/resources/assets/imsm/blockstates/useradded1520.json index 68e7ef13..5bc3b950 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1520.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1520.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1520"}}} +{"variants": {"": {"model": "imsm:block/useradded1520"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1521.json b/src/main/resources/assets/imsm/blockstates/useradded1521.json index 47b007b6..55f72ef7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1521.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1521.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1521"}}} +{"variants": {"": {"model": "imsm:block/useradded1521"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1522.json b/src/main/resources/assets/imsm/blockstates/useradded1522.json index f18193da..5b23e983 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1522.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1522.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1522"}}} +{"variants": {"": {"model": "imsm:block/useradded1522"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1523.json b/src/main/resources/assets/imsm/blockstates/useradded1523.json index a7ebbf60..0c47e077 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1523.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1523.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1523"}}} +{"variants": {"": {"model": "imsm:block/useradded1523"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1524.json b/src/main/resources/assets/imsm/blockstates/useradded1524.json index 97fcafe2..66892cd3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1524.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1524.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1524"}}} +{"variants": {"": {"model": "imsm:block/useradded1524"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1525.json b/src/main/resources/assets/imsm/blockstates/useradded1525.json index fad6f843..abde4ac2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1525.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1525.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1525"}}} +{"variants": {"": {"model": "imsm:block/useradded1525"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1526.json b/src/main/resources/assets/imsm/blockstates/useradded1526.json index d229d7e4..aea7dd16 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1526.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1526.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1526"}}} +{"variants": {"": {"model": "imsm:block/useradded1526"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1527.json b/src/main/resources/assets/imsm/blockstates/useradded1527.json index 159de879..7d325116 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1527.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1527.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1527"}}} +{"variants": {"": {"model": "imsm:block/useradded1527"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1528.json b/src/main/resources/assets/imsm/blockstates/useradded1528.json index 49fc2542..c5045108 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1528.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1528.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1528"}}} +{"variants": {"": {"model": "imsm:block/useradded1528"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1529.json b/src/main/resources/assets/imsm/blockstates/useradded1529.json index 81e5007b..b205d6e6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1529.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1529.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1529"}}} +{"variants": {"": {"model": "imsm:block/useradded1529"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded153.json b/src/main/resources/assets/imsm/blockstates/useradded153.json index 2c628741..43632440 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded153.json +++ b/src/main/resources/assets/imsm/blockstates/useradded153.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded153"}}} +{"variants": {"": {"model": "imsm:block/useradded153"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1530.json b/src/main/resources/assets/imsm/blockstates/useradded1530.json index 58cfa6be..bb0c52ed 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1530.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1530.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1530"}}} +{"variants": {"": {"model": "imsm:block/useradded1530"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1531.json b/src/main/resources/assets/imsm/blockstates/useradded1531.json index 3f1916f2..436a8f60 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1531.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1531.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1531"}}} +{"variants": {"": {"model": "imsm:block/useradded1531"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1532.json b/src/main/resources/assets/imsm/blockstates/useradded1532.json index fe2be6d7..2712dab9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1532.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1532.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1532"}}} +{"variants": {"": {"model": "imsm:block/useradded1532"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1533.json b/src/main/resources/assets/imsm/blockstates/useradded1533.json index 25c72ac4..dfc62ee3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1533.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1533.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1533"}}} +{"variants": {"": {"model": "imsm:block/useradded1533"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1534.json b/src/main/resources/assets/imsm/blockstates/useradded1534.json index b848f035..45a744c5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1534.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1534.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1534"}}} +{"variants": {"": {"model": "imsm:block/useradded1534"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1535.json b/src/main/resources/assets/imsm/blockstates/useradded1535.json index 9a82fe89..0f9938e1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1535.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1535.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1535"}}} +{"variants": {"": {"model": "imsm:block/useradded1535"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1536.json b/src/main/resources/assets/imsm/blockstates/useradded1536.json index 3c232403..ed3e3e4e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1536.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1536.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1536"}}} +{"variants": {"": {"model": "imsm:block/useradded1536"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1537.json b/src/main/resources/assets/imsm/blockstates/useradded1537.json index d9c8e368..c8a12252 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1537.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1537.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1537"}}} +{"variants": {"": {"model": "imsm:block/useradded1537"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1538.json b/src/main/resources/assets/imsm/blockstates/useradded1538.json index 4d1b4092..cc479331 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1538.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1538.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1538"}}} +{"variants": {"": {"model": "imsm:block/useradded1538"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1539.json b/src/main/resources/assets/imsm/blockstates/useradded1539.json index 42a9f84d..a52eefdb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1539.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1539.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1539"}}} +{"variants": {"": {"model": "imsm:block/useradded1539"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded154.json b/src/main/resources/assets/imsm/blockstates/useradded154.json index 9894015d..125eb864 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded154.json +++ b/src/main/resources/assets/imsm/blockstates/useradded154.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded154"}}} +{"variants": {"": {"model": "imsm:block/useradded154"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1540.json b/src/main/resources/assets/imsm/blockstates/useradded1540.json index 48fb4784..e35b47a7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1540.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1540.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1540"}}} +{"variants": {"": {"model": "imsm:block/useradded1540"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1541.json b/src/main/resources/assets/imsm/blockstates/useradded1541.json index 4c8609a7..c9879d5b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1541.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1541.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1541"}}} +{"variants": {"": {"model": "imsm:block/useradded1541"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1542.json b/src/main/resources/assets/imsm/blockstates/useradded1542.json index a1a19fb6..05c38673 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1542.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1542.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1542"}}} +{"variants": {"": {"model": "imsm:block/useradded1542"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1543.json b/src/main/resources/assets/imsm/blockstates/useradded1543.json index d76bf507..8e9e3417 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1543.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1543.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1543"}}} +{"variants": {"": {"model": "imsm:block/useradded1543"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1544.json b/src/main/resources/assets/imsm/blockstates/useradded1544.json index d4dc3936..3c3c9e89 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1544.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1544.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1544"}}} +{"variants": {"": {"model": "imsm:block/useradded1544"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1545.json b/src/main/resources/assets/imsm/blockstates/useradded1545.json index a0f2b473..6959e58a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1545.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1545.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1545"}}} +{"variants": {"": {"model": "imsm:block/useradded1545"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1546.json b/src/main/resources/assets/imsm/blockstates/useradded1546.json index 9f78ff80..3669e356 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1546.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1546.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1546"}}} +{"variants": {"": {"model": "imsm:block/useradded1546"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1547.json b/src/main/resources/assets/imsm/blockstates/useradded1547.json index 9144c6ed..5673a57f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1547.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1547.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1547"}}} +{"variants": {"": {"model": "imsm:block/useradded1547"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1548.json b/src/main/resources/assets/imsm/blockstates/useradded1548.json index b76eb364..f11a4b53 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1548.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1548.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1548"}}} +{"variants": {"": {"model": "imsm:block/useradded1548"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1549.json b/src/main/resources/assets/imsm/blockstates/useradded1549.json index fd521803..356f1ec0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1549.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1549.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1549"}}} +{"variants": {"": {"model": "imsm:block/useradded1549"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded155.json b/src/main/resources/assets/imsm/blockstates/useradded155.json index 86af61e9..1041a014 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded155.json +++ b/src/main/resources/assets/imsm/blockstates/useradded155.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded155"}}} +{"variants": {"": {"model": "imsm:block/useradded155"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1550.json b/src/main/resources/assets/imsm/blockstates/useradded1550.json index 005a592c..381173bc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1550.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1550.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1550"}}} +{"variants": {"": {"model": "imsm:block/useradded1550"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1551.json b/src/main/resources/assets/imsm/blockstates/useradded1551.json index 772d9178..d0228839 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1551.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1551.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1551"}}} +{"variants": {"": {"model": "imsm:block/useradded1551"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1552.json b/src/main/resources/assets/imsm/blockstates/useradded1552.json index ecefdce5..01ad31cc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1552.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1552.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1552"}}} +{"variants": {"": {"model": "imsm:block/useradded1552"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1553.json b/src/main/resources/assets/imsm/blockstates/useradded1553.json index 029c561a..e9da050e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1553.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1553.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1553"}}} +{"variants": {"": {"model": "imsm:block/useradded1553"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1554.json b/src/main/resources/assets/imsm/blockstates/useradded1554.json index 72c9ef7b..6f6fb8b1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1554.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1554.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1554"}}} +{"variants": {"": {"model": "imsm:block/useradded1554"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1555.json b/src/main/resources/assets/imsm/blockstates/useradded1555.json index e848f544..1db5b717 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1555.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1555.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1555"}}} +{"variants": {"": {"model": "imsm:block/useradded1555"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1556.json b/src/main/resources/assets/imsm/blockstates/useradded1556.json index 05492923..70d6befb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1556.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1556.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1556"}}} +{"variants": {"": {"model": "imsm:block/useradded1556"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1557.json b/src/main/resources/assets/imsm/blockstates/useradded1557.json index 7b1e8c6e..21a652a6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1557.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1557.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1557"}}} +{"variants": {"": {"model": "imsm:block/useradded1557"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1558.json b/src/main/resources/assets/imsm/blockstates/useradded1558.json index cde8bd81..68d7f738 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1558.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1558.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1558"}}} +{"variants": {"": {"model": "imsm:block/useradded1558"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1559.json b/src/main/resources/assets/imsm/blockstates/useradded1559.json index bea22be7..db00888e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1559.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1559.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1559"}}} +{"variants": {"": {"model": "imsm:block/useradded1559"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded156.json b/src/main/resources/assets/imsm/blockstates/useradded156.json index 15ce2bb4..21aed763 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded156.json +++ b/src/main/resources/assets/imsm/blockstates/useradded156.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded156"}}} +{"variants": {"": {"model": "imsm:block/useradded156"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1560.json b/src/main/resources/assets/imsm/blockstates/useradded1560.json index f840fca5..3188ba62 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1560.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1560.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1560"}}} +{"variants": {"": {"model": "imsm:block/useradded1560"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1561.json b/src/main/resources/assets/imsm/blockstates/useradded1561.json index e6418dcd..7900b5eb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1561.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1561.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1561"}}} +{"variants": {"": {"model": "imsm:block/useradded1561"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1562.json b/src/main/resources/assets/imsm/blockstates/useradded1562.json index d2d94835..9bd7ce8d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1562.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1562.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1562"}}} +{"variants": {"": {"model": "imsm:block/useradded1562"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1563.json b/src/main/resources/assets/imsm/blockstates/useradded1563.json index ca6fefac..76a79cb3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1563.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1563.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1563"}}} +{"variants": {"": {"model": "imsm:block/useradded1563"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1564.json b/src/main/resources/assets/imsm/blockstates/useradded1564.json index f99ffb7a..1c539b01 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1564.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1564.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1564"}}} +{"variants": {"": {"model": "imsm:block/useradded1564"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1565.json b/src/main/resources/assets/imsm/blockstates/useradded1565.json index d1c4e8c3..8eaf9c9c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1565.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1565.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1565"}}} +{"variants": {"": {"model": "imsm:block/useradded1565"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1566.json b/src/main/resources/assets/imsm/blockstates/useradded1566.json index bd348edb..5f9b7074 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1566.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1566.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1566"}}} +{"variants": {"": {"model": "imsm:block/useradded1566"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1567.json b/src/main/resources/assets/imsm/blockstates/useradded1567.json index 8b9af38a..9c4dc42f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1567.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1567.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1567"}}} +{"variants": {"": {"model": "imsm:block/useradded1567"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1568.json b/src/main/resources/assets/imsm/blockstates/useradded1568.json index 00a945e0..ddf95a92 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1568.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1568.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1568"}}} +{"variants": {"": {"model": "imsm:block/useradded1568"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1569.json b/src/main/resources/assets/imsm/blockstates/useradded1569.json index ad3a0f38..d2389aa5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1569.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1569.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1569"}}} +{"variants": {"": {"model": "imsm:block/useradded1569"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded157.json b/src/main/resources/assets/imsm/blockstates/useradded157.json index 443c0501..d006bc16 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded157.json +++ b/src/main/resources/assets/imsm/blockstates/useradded157.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded157"}}} +{"variants": {"": {"model": "imsm:block/useradded157"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1570.json b/src/main/resources/assets/imsm/blockstates/useradded1570.json index 83c475f6..a81999f9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1570.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1570.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1570"}}} +{"variants": {"": {"model": "imsm:block/useradded1570"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1571.json b/src/main/resources/assets/imsm/blockstates/useradded1571.json index 7dfb8c04..5461ee34 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1571.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1571.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1571"}}} +{"variants": {"": {"model": "imsm:block/useradded1571"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1572.json b/src/main/resources/assets/imsm/blockstates/useradded1572.json index 24ce37c9..2eb96dcd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1572.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1572.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1572"}}} +{"variants": {"": {"model": "imsm:block/useradded1572"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1573.json b/src/main/resources/assets/imsm/blockstates/useradded1573.json index 9bc93c41..a12e9fab 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1573.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1573.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1573"}}} +{"variants": {"": {"model": "imsm:block/useradded1573"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1574.json b/src/main/resources/assets/imsm/blockstates/useradded1574.json index 78a95a9d..a3f94c05 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1574.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1574.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1574"}}} +{"variants": {"": {"model": "imsm:block/useradded1574"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1575.json b/src/main/resources/assets/imsm/blockstates/useradded1575.json index 9e9bf68b..d0683b0a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1575.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1575.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1575"}}} +{"variants": {"": {"model": "imsm:block/useradded1575"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1576.json b/src/main/resources/assets/imsm/blockstates/useradded1576.json index e0064faa..ddab3c07 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1576.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1576.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1576"}}} +{"variants": {"": {"model": "imsm:block/useradded1576"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1577.json b/src/main/resources/assets/imsm/blockstates/useradded1577.json index 6357d760..a0988c4e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1577.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1577.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1577"}}} +{"variants": {"": {"model": "imsm:block/useradded1577"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1578.json b/src/main/resources/assets/imsm/blockstates/useradded1578.json index 890dfb05..b713b485 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1578.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1578.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1578"}}} +{"variants": {"": {"model": "imsm:block/useradded1578"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1579.json b/src/main/resources/assets/imsm/blockstates/useradded1579.json index 527fa036..8b868e94 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1579.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1579.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1579"}}} +{"variants": {"": {"model": "imsm:block/useradded1579"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded158.json b/src/main/resources/assets/imsm/blockstates/useradded158.json index 50891192..3085d735 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded158.json +++ b/src/main/resources/assets/imsm/blockstates/useradded158.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded158"}}} +{"variants": {"": {"model": "imsm:block/useradded158"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1580.json b/src/main/resources/assets/imsm/blockstates/useradded1580.json index 4725f400..71e82e43 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1580.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1580.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1580"}}} +{"variants": {"": {"model": "imsm:block/useradded1580"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1581.json b/src/main/resources/assets/imsm/blockstates/useradded1581.json index 6272dd29..b579c3f0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1581.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1581.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1581"}}} +{"variants": {"": {"model": "imsm:block/useradded1581"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1582.json b/src/main/resources/assets/imsm/blockstates/useradded1582.json index fb920710..da07da1f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1582.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1582.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1582"}}} +{"variants": {"": {"model": "imsm:block/useradded1582"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1583.json b/src/main/resources/assets/imsm/blockstates/useradded1583.json index 1d6392f3..319b2879 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1583.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1583.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1583"}}} +{"variants": {"": {"model": "imsm:block/useradded1583"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1584.json b/src/main/resources/assets/imsm/blockstates/useradded1584.json index f12f77af..4cc9b3c3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1584.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1584.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1584"}}} +{"variants": {"": {"model": "imsm:block/useradded1584"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1585.json b/src/main/resources/assets/imsm/blockstates/useradded1585.json index b6ff5cdf..42236a05 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1585.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1585.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1585"}}} +{"variants": {"": {"model": "imsm:block/useradded1585"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1586.json b/src/main/resources/assets/imsm/blockstates/useradded1586.json index c7fb7180..98957224 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1586.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1586.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1586"}}} +{"variants": {"": {"model": "imsm:block/useradded1586"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1587.json b/src/main/resources/assets/imsm/blockstates/useradded1587.json index 6cba0d75..7097c3bb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1587.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1587.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1587"}}} +{"variants": {"": {"model": "imsm:block/useradded1587"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1588.json b/src/main/resources/assets/imsm/blockstates/useradded1588.json index da0e49b5..340b004d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1588.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1588.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1588"}}} +{"variants": {"": {"model": "imsm:block/useradded1588"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1589.json b/src/main/resources/assets/imsm/blockstates/useradded1589.json index c1750be1..b5da48f5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1589.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1589.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1589"}}} +{"variants": {"": {"model": "imsm:block/useradded1589"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded159.json b/src/main/resources/assets/imsm/blockstates/useradded159.json index b3cf03e0..8f22e3af 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded159.json +++ b/src/main/resources/assets/imsm/blockstates/useradded159.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded159"}}} +{"variants": {"": {"model": "imsm:block/useradded159"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1590.json b/src/main/resources/assets/imsm/blockstates/useradded1590.json index 69119cb5..3432a700 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1590.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1590.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1590"}}} +{"variants": {"": {"model": "imsm:block/useradded1590"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1591.json b/src/main/resources/assets/imsm/blockstates/useradded1591.json index 5c427a37..0ba88ab2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1591.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1591.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1591"}}} +{"variants": {"": {"model": "imsm:block/useradded1591"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1592.json b/src/main/resources/assets/imsm/blockstates/useradded1592.json index c2f0fb86..d6a3c034 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1592.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1592.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1592"}}} +{"variants": {"": {"model": "imsm:block/useradded1592"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1593.json b/src/main/resources/assets/imsm/blockstates/useradded1593.json index b95f7adf..f550b624 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1593.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1593.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1593"}}} +{"variants": {"": {"model": "imsm:block/useradded1593"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1594.json b/src/main/resources/assets/imsm/blockstates/useradded1594.json index 40be6a81..511fa0be 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1594.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1594.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1594"}}} +{"variants": {"": {"model": "imsm:block/useradded1594"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1595.json b/src/main/resources/assets/imsm/blockstates/useradded1595.json index 35a4616f..22145409 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1595.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1595.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1595"}}} +{"variants": {"": {"model": "imsm:block/useradded1595"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1596.json b/src/main/resources/assets/imsm/blockstates/useradded1596.json index ba2b3fbf..4e363e5a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1596.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1596.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1596"}}} +{"variants": {"": {"model": "imsm:block/useradded1596"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1597.json b/src/main/resources/assets/imsm/blockstates/useradded1597.json index 7d150a4f..f7fe677f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1597.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1597.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1597"}}} +{"variants": {"": {"model": "imsm:block/useradded1597"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1598.json b/src/main/resources/assets/imsm/blockstates/useradded1598.json index 8675733e..00a0f464 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1598.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1598.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1598"}}} +{"variants": {"": {"model": "imsm:block/useradded1598"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1599.json b/src/main/resources/assets/imsm/blockstates/useradded1599.json index 59188fa5..97877773 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1599.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1599.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1599"}}} +{"variants": {"": {"model": "imsm:block/useradded1599"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded16.json b/src/main/resources/assets/imsm/blockstates/useradded16.json index c1c3cd1e..e1d0679b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded16.json +++ b/src/main/resources/assets/imsm/blockstates/useradded16.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded16"}}} +{"variants": {"": {"model": "imsm:block/useradded16"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded160.json b/src/main/resources/assets/imsm/blockstates/useradded160.json index 426638d8..aa7993a8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded160.json +++ b/src/main/resources/assets/imsm/blockstates/useradded160.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded160"}}} +{"variants": {"": {"model": "imsm:block/useradded160"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1600.json b/src/main/resources/assets/imsm/blockstates/useradded1600.json index feecb23f..bd7a5845 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1600.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1600.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1600"}}} +{"variants": {"": {"model": "imsm:block/useradded1600"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1601.json b/src/main/resources/assets/imsm/blockstates/useradded1601.json index d8466b9e..29e1d886 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1601.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1601.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1601"}}} +{"variants": {"": {"model": "imsm:block/useradded1601"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1602.json b/src/main/resources/assets/imsm/blockstates/useradded1602.json index 91effd09..8d32ee50 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1602.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1602.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1602"}}} +{"variants": {"": {"model": "imsm:block/useradded1602"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1603.json b/src/main/resources/assets/imsm/blockstates/useradded1603.json index 0a147285..6e6b2329 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1603.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1603.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1603"}}} +{"variants": {"": {"model": "imsm:block/useradded1603"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1604.json b/src/main/resources/assets/imsm/blockstates/useradded1604.json index 3e7abedd..cfe750d9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1604.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1604.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1604"}}} +{"variants": {"": {"model": "imsm:block/useradded1604"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1605.json b/src/main/resources/assets/imsm/blockstates/useradded1605.json index 45e6361f..e802500c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1605.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1605.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1605"}}} +{"variants": {"": {"model": "imsm:block/useradded1605"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1606.json b/src/main/resources/assets/imsm/blockstates/useradded1606.json index 744db7b7..eba3ea17 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1606.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1606.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1606"}}} +{"variants": {"": {"model": "imsm:block/useradded1606"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1607.json b/src/main/resources/assets/imsm/blockstates/useradded1607.json index d4c7cf64..3264a26a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1607.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1607.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1607"}}} +{"variants": {"": {"model": "imsm:block/useradded1607"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1608.json b/src/main/resources/assets/imsm/blockstates/useradded1608.json index 9022c703..a7b31272 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1608.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1608.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1608"}}} +{"variants": {"": {"model": "imsm:block/useradded1608"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1609.json b/src/main/resources/assets/imsm/blockstates/useradded1609.json index c64d3580..24723c5e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1609.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1609.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1609"}}} +{"variants": {"": {"model": "imsm:block/useradded1609"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded161.json b/src/main/resources/assets/imsm/blockstates/useradded161.json index 68a943a8..9e4d8b98 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded161.json +++ b/src/main/resources/assets/imsm/blockstates/useradded161.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded161"}}} +{"variants": {"": {"model": "imsm:block/useradded161"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1610.json b/src/main/resources/assets/imsm/blockstates/useradded1610.json index 4f157bc0..f683bf79 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1610.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1610.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1610"}}} +{"variants": {"": {"model": "imsm:block/useradded1610"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1611.json b/src/main/resources/assets/imsm/blockstates/useradded1611.json index d751d805..d4a932e8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1611.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1611.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1611"}}} +{"variants": {"": {"model": "imsm:block/useradded1611"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1612.json b/src/main/resources/assets/imsm/blockstates/useradded1612.json index d0380435..ffebdd27 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1612.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1612.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1612"}}} +{"variants": {"": {"model": "imsm:block/useradded1612"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1613.json b/src/main/resources/assets/imsm/blockstates/useradded1613.json index fb900193..0f39a03d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1613.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1613.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1613"}}} +{"variants": {"": {"model": "imsm:block/useradded1613"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1614.json b/src/main/resources/assets/imsm/blockstates/useradded1614.json index fdaf824c..229c2d84 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1614.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1614.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1614"}}} +{"variants": {"": {"model": "imsm:block/useradded1614"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1615.json b/src/main/resources/assets/imsm/blockstates/useradded1615.json index 6e897f4d..5575711f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1615.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1615.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1615"}}} +{"variants": {"": {"model": "imsm:block/useradded1615"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1616.json b/src/main/resources/assets/imsm/blockstates/useradded1616.json index 905c2d67..045a06f0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1616.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1616.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1616"}}} +{"variants": {"": {"model": "imsm:block/useradded1616"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1617.json b/src/main/resources/assets/imsm/blockstates/useradded1617.json index e36fd689..9f1fc554 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1617.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1617.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1617"}}} +{"variants": {"": {"model": "imsm:block/useradded1617"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1618.json b/src/main/resources/assets/imsm/blockstates/useradded1618.json index 09bf8619..80791c97 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1618.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1618.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1618"}}} +{"variants": {"": {"model": "imsm:block/useradded1618"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1619.json b/src/main/resources/assets/imsm/blockstates/useradded1619.json index 7464bb66..e695d136 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1619.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1619.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1619"}}} +{"variants": {"": {"model": "imsm:block/useradded1619"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded162.json b/src/main/resources/assets/imsm/blockstates/useradded162.json index 067dc4fd..40918d1c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded162.json +++ b/src/main/resources/assets/imsm/blockstates/useradded162.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded162"}}} +{"variants": {"": {"model": "imsm:block/useradded162"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1620.json b/src/main/resources/assets/imsm/blockstates/useradded1620.json index 3410ac50..f44c5d85 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1620.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1620.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1620"}}} +{"variants": {"": {"model": "imsm:block/useradded1620"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1621.json b/src/main/resources/assets/imsm/blockstates/useradded1621.json index 9203dc91..cc021808 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1621.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1621.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1621"}}} +{"variants": {"": {"model": "imsm:block/useradded1621"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1622.json b/src/main/resources/assets/imsm/blockstates/useradded1622.json index 0ae27f1d..39803ac0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1622.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1622.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1622"}}} +{"variants": {"": {"model": "imsm:block/useradded1622"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1623.json b/src/main/resources/assets/imsm/blockstates/useradded1623.json index 93b3fc9b..c900a83e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1623.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1623.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1623"}}} +{"variants": {"": {"model": "imsm:block/useradded1623"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1624.json b/src/main/resources/assets/imsm/blockstates/useradded1624.json index 02c68e7f..201193f0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1624.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1624.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1624"}}} +{"variants": {"": {"model": "imsm:block/useradded1624"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1625.json b/src/main/resources/assets/imsm/blockstates/useradded1625.json index d5f07be0..ae224da0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1625.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1625.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1625"}}} +{"variants": {"": {"model": "imsm:block/useradded1625"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1626.json b/src/main/resources/assets/imsm/blockstates/useradded1626.json index 41a2e4d9..84082fa1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1626.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1626.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1626"}}} +{"variants": {"": {"model": "imsm:block/useradded1626"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1627.json b/src/main/resources/assets/imsm/blockstates/useradded1627.json index 3c4c5442..9d95f7cb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1627.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1627.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1627"}}} +{"variants": {"": {"model": "imsm:block/useradded1627"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1628.json b/src/main/resources/assets/imsm/blockstates/useradded1628.json index 7b128ab8..97fc2d3d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1628.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1628.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1628"}}} +{"variants": {"": {"model": "imsm:block/useradded1628"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1629.json b/src/main/resources/assets/imsm/blockstates/useradded1629.json index 392c2fc4..f03fbe80 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1629.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1629.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1629"}}} +{"variants": {"": {"model": "imsm:block/useradded1629"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded163.json b/src/main/resources/assets/imsm/blockstates/useradded163.json index 109c8a93..9d94b5b9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded163.json +++ b/src/main/resources/assets/imsm/blockstates/useradded163.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded163"}}} +{"variants": {"": {"model": "imsm:block/useradded163"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1630.json b/src/main/resources/assets/imsm/blockstates/useradded1630.json index 15046277..cacad138 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1630.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1630.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1630"}}} +{"variants": {"": {"model": "imsm:block/useradded1630"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1631.json b/src/main/resources/assets/imsm/blockstates/useradded1631.json index 286c95c9..f333f35e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1631.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1631.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1631"}}} +{"variants": {"": {"model": "imsm:block/useradded1631"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1632.json b/src/main/resources/assets/imsm/blockstates/useradded1632.json index 09b9a2a4..f63c8b8e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1632.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1632.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1632"}}} +{"variants": {"": {"model": "imsm:block/useradded1632"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1633.json b/src/main/resources/assets/imsm/blockstates/useradded1633.json index a722193c..4e8dd0e6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1633.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1633.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1633"}}} +{"variants": {"": {"model": "imsm:block/useradded1633"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1634.json b/src/main/resources/assets/imsm/blockstates/useradded1634.json index 02059633..a6cc9bfc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1634.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1634.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1634"}}} +{"variants": {"": {"model": "imsm:block/useradded1634"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1635.json b/src/main/resources/assets/imsm/blockstates/useradded1635.json index f68fb920..0804effa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1635.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1635.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1635"}}} +{"variants": {"": {"model": "imsm:block/useradded1635"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1636.json b/src/main/resources/assets/imsm/blockstates/useradded1636.json index 952952aa..1278769f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1636.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1636.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1636"}}} +{"variants": {"": {"model": "imsm:block/useradded1636"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1637.json b/src/main/resources/assets/imsm/blockstates/useradded1637.json index e39a67a5..5c5a41ab 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1637.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1637.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1637"}}} +{"variants": {"": {"model": "imsm:block/useradded1637"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1638.json b/src/main/resources/assets/imsm/blockstates/useradded1638.json index a350b9e3..ed965d5e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1638.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1638.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1638"}}} +{"variants": {"": {"model": "imsm:block/useradded1638"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1639.json b/src/main/resources/assets/imsm/blockstates/useradded1639.json index bdbd140d..8de7f960 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1639.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1639.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1639"}}} +{"variants": {"": {"model": "imsm:block/useradded1639"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded164.json b/src/main/resources/assets/imsm/blockstates/useradded164.json index 73068a0f..572e02da 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded164.json +++ b/src/main/resources/assets/imsm/blockstates/useradded164.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded164"}}} +{"variants": {"": {"model": "imsm:block/useradded164"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1640.json b/src/main/resources/assets/imsm/blockstates/useradded1640.json index fb6462d5..0220332b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1640.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1640.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1640"}}} +{"variants": {"": {"model": "imsm:block/useradded1640"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1641.json b/src/main/resources/assets/imsm/blockstates/useradded1641.json index 858104d9..962a73cb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1641.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1641.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1641"}}} +{"variants": {"": {"model": "imsm:block/useradded1641"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1642.json b/src/main/resources/assets/imsm/blockstates/useradded1642.json index 4ddde89b..ee085673 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1642.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1642.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1642"}}} +{"variants": {"": {"model": "imsm:block/useradded1642"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1643.json b/src/main/resources/assets/imsm/blockstates/useradded1643.json index b34f54b5..bf56ad90 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1643.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1643.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1643"}}} +{"variants": {"": {"model": "imsm:block/useradded1643"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1644.json b/src/main/resources/assets/imsm/blockstates/useradded1644.json index d42407e2..e72856cf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1644.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1644.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1644"}}} +{"variants": {"": {"model": "imsm:block/useradded1644"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1645.json b/src/main/resources/assets/imsm/blockstates/useradded1645.json index 9f5bf209..2bff128b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1645.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1645.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1645"}}} +{"variants": {"": {"model": "imsm:block/useradded1645"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1646.json b/src/main/resources/assets/imsm/blockstates/useradded1646.json index 5ef0a3ce..941e29fd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1646.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1646.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1646"}}} +{"variants": {"": {"model": "imsm:block/useradded1646"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1647.json b/src/main/resources/assets/imsm/blockstates/useradded1647.json index 89b11625..614d8d8a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1647.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1647.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1647"}}} +{"variants": {"": {"model": "imsm:block/useradded1647"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1648.json b/src/main/resources/assets/imsm/blockstates/useradded1648.json index 1caf1bec..ff1a6505 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1648.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1648.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1648"}}} +{"variants": {"": {"model": "imsm:block/useradded1648"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1649.json b/src/main/resources/assets/imsm/blockstates/useradded1649.json index 84f5bafb..c47baaf8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1649.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1649.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1649"}}} +{"variants": {"": {"model": "imsm:block/useradded1649"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded165.json b/src/main/resources/assets/imsm/blockstates/useradded165.json index 44dc5457..b87be63c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded165.json +++ b/src/main/resources/assets/imsm/blockstates/useradded165.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded165"}}} +{"variants": {"": {"model": "imsm:block/useradded165"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1650.json b/src/main/resources/assets/imsm/blockstates/useradded1650.json index 5ea78f55..02d37f02 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1650.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1650.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1650"}}} +{"variants": {"": {"model": "imsm:block/useradded1650"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1651.json b/src/main/resources/assets/imsm/blockstates/useradded1651.json index 4d3745b4..162b54a3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1651.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1651.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1651"}}} +{"variants": {"": {"model": "imsm:block/useradded1651"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1652.json b/src/main/resources/assets/imsm/blockstates/useradded1652.json index 855c7570..3dc3f362 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1652.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1652.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1652"}}} +{"variants": {"": {"model": "imsm:block/useradded1652"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1653.json b/src/main/resources/assets/imsm/blockstates/useradded1653.json index b16955a1..3890f290 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1653.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1653.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1653"}}} +{"variants": {"": {"model": "imsm:block/useradded1653"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1654.json b/src/main/resources/assets/imsm/blockstates/useradded1654.json index b1f8c2cd..cb772d0c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1654.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1654.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1654"}}} +{"variants": {"": {"model": "imsm:block/useradded1654"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1655.json b/src/main/resources/assets/imsm/blockstates/useradded1655.json index 11e82f7c..5e399b70 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1655.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1655.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1655"}}} +{"variants": {"": {"model": "imsm:block/useradded1655"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1656.json b/src/main/resources/assets/imsm/blockstates/useradded1656.json index 6172e0fc..66921e45 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1656.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1656.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1656"}}} +{"variants": {"": {"model": "imsm:block/useradded1656"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1657.json b/src/main/resources/assets/imsm/blockstates/useradded1657.json index 70fc9f95..29d265d3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1657.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1657.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1657"}}} +{"variants": {"": {"model": "imsm:block/useradded1657"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1658.json b/src/main/resources/assets/imsm/blockstates/useradded1658.json index 905f8e1c..e9d196e7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1658.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1658.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1658"}}} +{"variants": {"": {"model": "imsm:block/useradded1658"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1659.json b/src/main/resources/assets/imsm/blockstates/useradded1659.json index 5c4544a0..612077c1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1659.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1659.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1659"}}} +{"variants": {"": {"model": "imsm:block/useradded1659"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded166.json b/src/main/resources/assets/imsm/blockstates/useradded166.json index c7601a94..c7cb7798 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded166.json +++ b/src/main/resources/assets/imsm/blockstates/useradded166.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded166"}}} +{"variants": {"": {"model": "imsm:block/useradded166"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1660.json b/src/main/resources/assets/imsm/blockstates/useradded1660.json index 96612960..acfc525c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1660.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1660.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1660"}}} +{"variants": {"": {"model": "imsm:block/useradded1660"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1661.json b/src/main/resources/assets/imsm/blockstates/useradded1661.json index b28619c7..40f6428c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1661.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1661.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1661"}}} +{"variants": {"": {"model": "imsm:block/useradded1661"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1662.json b/src/main/resources/assets/imsm/blockstates/useradded1662.json index 45d3a598..5a080270 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1662.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1662.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1662"}}} +{"variants": {"": {"model": "imsm:block/useradded1662"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1663.json b/src/main/resources/assets/imsm/blockstates/useradded1663.json index 81e74f7f..01e7f7f0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1663.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1663.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1663"}}} +{"variants": {"": {"model": "imsm:block/useradded1663"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1664.json b/src/main/resources/assets/imsm/blockstates/useradded1664.json index 6b6d23a4..47de5741 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1664.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1664.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1664"}}} +{"variants": {"": {"model": "imsm:block/useradded1664"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1665.json b/src/main/resources/assets/imsm/blockstates/useradded1665.json index 7b04830d..a2305f2a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1665.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1665.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1665"}}} +{"variants": {"": {"model": "imsm:block/useradded1665"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1666.json b/src/main/resources/assets/imsm/blockstates/useradded1666.json index 9317abd1..a80b2b61 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1666.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1666.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1666"}}} +{"variants": {"": {"model": "imsm:block/useradded1666"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1667.json b/src/main/resources/assets/imsm/blockstates/useradded1667.json index 13a8423e..06c6b1b6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1667.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1667.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1667"}}} +{"variants": {"": {"model": "imsm:block/useradded1667"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1668.json b/src/main/resources/assets/imsm/blockstates/useradded1668.json index b52bdfe9..d67c5d55 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1668.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1668.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1668"}}} +{"variants": {"": {"model": "imsm:block/useradded1668"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1669.json b/src/main/resources/assets/imsm/blockstates/useradded1669.json index 918a2a9d..b8eabc82 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1669.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1669.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1669"}}} +{"variants": {"": {"model": "imsm:block/useradded1669"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded167.json b/src/main/resources/assets/imsm/blockstates/useradded167.json index 0ae4a605..6a517f24 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded167.json +++ b/src/main/resources/assets/imsm/blockstates/useradded167.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded167"}}} +{"variants": {"": {"model": "imsm:block/useradded167"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1670.json b/src/main/resources/assets/imsm/blockstates/useradded1670.json index f43f4ad7..a35b2831 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1670.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1670.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1670"}}} +{"variants": {"": {"model": "imsm:block/useradded1670"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1671.json b/src/main/resources/assets/imsm/blockstates/useradded1671.json index 5e0db2c3..d388e60e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1671.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1671.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1671"}}} +{"variants": {"": {"model": "imsm:block/useradded1671"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1672.json b/src/main/resources/assets/imsm/blockstates/useradded1672.json index c73d4c78..fb897fba 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1672.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1672.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1672"}}} +{"variants": {"": {"model": "imsm:block/useradded1672"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1673.json b/src/main/resources/assets/imsm/blockstates/useradded1673.json index 52d25831..20ec8e9b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1673.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1673.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1673"}}} +{"variants": {"": {"model": "imsm:block/useradded1673"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1674.json b/src/main/resources/assets/imsm/blockstates/useradded1674.json index b1dd719e..7ef1271e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1674.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1674.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1674"}}} +{"variants": {"": {"model": "imsm:block/useradded1674"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1675.json b/src/main/resources/assets/imsm/blockstates/useradded1675.json index a5223be9..604d7e3b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1675.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1675.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1675"}}} +{"variants": {"": {"model": "imsm:block/useradded1675"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1676.json b/src/main/resources/assets/imsm/blockstates/useradded1676.json index c155cec5..f593460b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1676.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1676.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1676"}}} +{"variants": {"": {"model": "imsm:block/useradded1676"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1677.json b/src/main/resources/assets/imsm/blockstates/useradded1677.json index 3217bb15..0295cb63 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1677.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1677.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1677"}}} +{"variants": {"": {"model": "imsm:block/useradded1677"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1678.json b/src/main/resources/assets/imsm/blockstates/useradded1678.json index fc9d6883..1bd252d7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1678.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1678.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1678"}}} +{"variants": {"": {"model": "imsm:block/useradded1678"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1679.json b/src/main/resources/assets/imsm/blockstates/useradded1679.json index 69e2bb2f..6d0a9270 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1679.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1679.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1679"}}} +{"variants": {"": {"model": "imsm:block/useradded1679"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded168.json b/src/main/resources/assets/imsm/blockstates/useradded168.json index 3d60fdc6..249424ba 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded168.json +++ b/src/main/resources/assets/imsm/blockstates/useradded168.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded168"}}} +{"variants": {"": {"model": "imsm:block/useradded168"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1680.json b/src/main/resources/assets/imsm/blockstates/useradded1680.json index 4a10851e..2c16dc3c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1680.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1680.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1680"}}} +{"variants": {"": {"model": "imsm:block/useradded1680"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1681.json b/src/main/resources/assets/imsm/blockstates/useradded1681.json index b06a524b..ba1db7b6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1681.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1681.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1681"}}} +{"variants": {"": {"model": "imsm:block/useradded1681"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1682.json b/src/main/resources/assets/imsm/blockstates/useradded1682.json index fb0850e7..b0f83970 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1682.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1682.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1682"}}} +{"variants": {"": {"model": "imsm:block/useradded1682"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1683.json b/src/main/resources/assets/imsm/blockstates/useradded1683.json index ae775dd3..ca17b9ba 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1683.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1683.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1683"}}} +{"variants": {"": {"model": "imsm:block/useradded1683"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1684.json b/src/main/resources/assets/imsm/blockstates/useradded1684.json index ce923123..c175a0f7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1684.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1684.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1684"}}} +{"variants": {"": {"model": "imsm:block/useradded1684"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1685.json b/src/main/resources/assets/imsm/blockstates/useradded1685.json index eaf991fa..df724121 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1685.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1685.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1685"}}} +{"variants": {"": {"model": "imsm:block/useradded1685"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1686.json b/src/main/resources/assets/imsm/blockstates/useradded1686.json index db2ad6f9..65e77f2d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1686.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1686.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1686"}}} +{"variants": {"": {"model": "imsm:block/useradded1686"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1687.json b/src/main/resources/assets/imsm/blockstates/useradded1687.json index 903a516d..d62bda77 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1687.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1687.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1687"}}} +{"variants": {"": {"model": "imsm:block/useradded1687"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1688.json b/src/main/resources/assets/imsm/blockstates/useradded1688.json index 3c9b0d42..8f39f136 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1688.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1688.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1688"}}} +{"variants": {"": {"model": "imsm:block/useradded1688"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1689.json b/src/main/resources/assets/imsm/blockstates/useradded1689.json index 775f6074..60b31ef7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1689.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1689.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1689"}}} +{"variants": {"": {"model": "imsm:block/useradded1689"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded169.json b/src/main/resources/assets/imsm/blockstates/useradded169.json index e6956333..c141982e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded169.json +++ b/src/main/resources/assets/imsm/blockstates/useradded169.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded169"}}} +{"variants": {"": {"model": "imsm:block/useradded169"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1690.json b/src/main/resources/assets/imsm/blockstates/useradded1690.json index a9f943e7..72fccbd6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1690.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1690.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1690"}}} +{"variants": {"": {"model": "imsm:block/useradded1690"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1691.json b/src/main/resources/assets/imsm/blockstates/useradded1691.json index 6ce29795..816c0fea 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1691.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1691.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1691"}}} +{"variants": {"": {"model": "imsm:block/useradded1691"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1692.json b/src/main/resources/assets/imsm/blockstates/useradded1692.json index 9906964e..2e15f49e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1692.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1692.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1692"}}} +{"variants": {"": {"model": "imsm:block/useradded1692"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1693.json b/src/main/resources/assets/imsm/blockstates/useradded1693.json index 260f1146..af687a2c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1693.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1693.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1693"}}} +{"variants": {"": {"model": "imsm:block/useradded1693"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1694.json b/src/main/resources/assets/imsm/blockstates/useradded1694.json index 1bf9a7c7..ffe76492 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1694.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1694.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1694"}}} +{"variants": {"": {"model": "imsm:block/useradded1694"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1695.json b/src/main/resources/assets/imsm/blockstates/useradded1695.json index 3466ebf3..6210b7a6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1695.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1695.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1695"}}} +{"variants": {"": {"model": "imsm:block/useradded1695"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1696.json b/src/main/resources/assets/imsm/blockstates/useradded1696.json index 2da08f7e..7067d9c7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1696.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1696.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1696"}}} +{"variants": {"": {"model": "imsm:block/useradded1696"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1697.json b/src/main/resources/assets/imsm/blockstates/useradded1697.json index 178b5d88..b3e046a8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1697.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1697.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1697"}}} +{"variants": {"": {"model": "imsm:block/useradded1697"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1698.json b/src/main/resources/assets/imsm/blockstates/useradded1698.json index 1d1256f6..430148e0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1698.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1698.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1698"}}} +{"variants": {"": {"model": "imsm:block/useradded1698"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1699.json b/src/main/resources/assets/imsm/blockstates/useradded1699.json index d07cd67d..99e33745 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1699.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1699.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1699"}}} +{"variants": {"": {"model": "imsm:block/useradded1699"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded17.json b/src/main/resources/assets/imsm/blockstates/useradded17.json index 130ac993..dd2cbe81 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded17.json +++ b/src/main/resources/assets/imsm/blockstates/useradded17.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded17"}}} +{"variants": {"": {"model": "imsm:block/useradded17"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded170.json b/src/main/resources/assets/imsm/blockstates/useradded170.json index b8359f63..a0a1b7e5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded170.json +++ b/src/main/resources/assets/imsm/blockstates/useradded170.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded170"}}} +{"variants": {"": {"model": "imsm:block/useradded170"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1700.json b/src/main/resources/assets/imsm/blockstates/useradded1700.json index 7257fe0d..8731aca5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1700.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1700.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1700"}}} +{"variants": {"": {"model": "imsm:block/useradded1700"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1701.json b/src/main/resources/assets/imsm/blockstates/useradded1701.json index 90bcc8cb..eaaa4536 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1701.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1701.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1701"}}} +{"variants": {"": {"model": "imsm:block/useradded1701"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1702.json b/src/main/resources/assets/imsm/blockstates/useradded1702.json index e014ad21..64c14ff1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1702.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1702.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1702"}}} +{"variants": {"": {"model": "imsm:block/useradded1702"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1703.json b/src/main/resources/assets/imsm/blockstates/useradded1703.json index d1f0bafb..3f48ae6d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1703.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1703.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1703"}}} +{"variants": {"": {"model": "imsm:block/useradded1703"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1704.json b/src/main/resources/assets/imsm/blockstates/useradded1704.json index fee33ef4..66b09c29 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1704.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1704.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1704"}}} +{"variants": {"": {"model": "imsm:block/useradded1704"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1705.json b/src/main/resources/assets/imsm/blockstates/useradded1705.json index 4524394a..c06f1906 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1705.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1705.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1705"}}} +{"variants": {"": {"model": "imsm:block/useradded1705"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1706.json b/src/main/resources/assets/imsm/blockstates/useradded1706.json index c7321aeb..1ac52c01 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1706.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1706.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1706"}}} +{"variants": {"": {"model": "imsm:block/useradded1706"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1707.json b/src/main/resources/assets/imsm/blockstates/useradded1707.json index ee310e1a..315c48f3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1707.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1707.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1707"}}} +{"variants": {"": {"model": "imsm:block/useradded1707"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1708.json b/src/main/resources/assets/imsm/blockstates/useradded1708.json index 3aff42cf..8062ae95 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1708.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1708.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1708"}}} +{"variants": {"": {"model": "imsm:block/useradded1708"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1709.json b/src/main/resources/assets/imsm/blockstates/useradded1709.json index 509f2482..24f6365f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1709.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1709.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1709"}}} +{"variants": {"": {"model": "imsm:block/useradded1709"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded171.json b/src/main/resources/assets/imsm/blockstates/useradded171.json index fb1bd3b7..5c614c1c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded171.json +++ b/src/main/resources/assets/imsm/blockstates/useradded171.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded171"}}} +{"variants": {"": {"model": "imsm:block/useradded171"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1710.json b/src/main/resources/assets/imsm/blockstates/useradded1710.json index fd9f9cdd..b9495a31 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1710.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1710.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1710"}}} +{"variants": {"": {"model": "imsm:block/useradded1710"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1711.json b/src/main/resources/assets/imsm/blockstates/useradded1711.json index 3d872ac4..8c5f2013 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1711.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1711.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1711"}}} +{"variants": {"": {"model": "imsm:block/useradded1711"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1712.json b/src/main/resources/assets/imsm/blockstates/useradded1712.json index ed832563..ff9f8f76 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1712.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1712.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1712"}}} +{"variants": {"": {"model": "imsm:block/useradded1712"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1713.json b/src/main/resources/assets/imsm/blockstates/useradded1713.json index 1e9a77f1..ead371ab 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1713.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1713.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1713"}}} +{"variants": {"": {"model": "imsm:block/useradded1713"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1714.json b/src/main/resources/assets/imsm/blockstates/useradded1714.json index 8615e221..f361807a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1714.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1714.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1714"}}} +{"variants": {"": {"model": "imsm:block/useradded1714"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1715.json b/src/main/resources/assets/imsm/blockstates/useradded1715.json index be78fe58..38fe5072 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1715.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1715.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1715"}}} +{"variants": {"": {"model": "imsm:block/useradded1715"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1716.json b/src/main/resources/assets/imsm/blockstates/useradded1716.json index 7d9e909b..33168e63 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1716.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1716.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1716"}}} +{"variants": {"": {"model": "imsm:block/useradded1716"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1717.json b/src/main/resources/assets/imsm/blockstates/useradded1717.json index fe45ef80..867245e9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1717.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1717.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1717"}}} +{"variants": {"": {"model": "imsm:block/useradded1717"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1718.json b/src/main/resources/assets/imsm/blockstates/useradded1718.json index bd5b82f1..41ebf284 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1718.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1718.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1718"}}} +{"variants": {"": {"model": "imsm:block/useradded1718"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1719.json b/src/main/resources/assets/imsm/blockstates/useradded1719.json index c0afe63b..a3309790 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1719.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1719.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1719"}}} +{"variants": {"": {"model": "imsm:block/useradded1719"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded172.json b/src/main/resources/assets/imsm/blockstates/useradded172.json index 9aa7d306..eac4d22b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded172.json +++ b/src/main/resources/assets/imsm/blockstates/useradded172.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded172"}}} +{"variants": {"": {"model": "imsm:block/useradded172"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1720.json b/src/main/resources/assets/imsm/blockstates/useradded1720.json index 20af25ae..966c4438 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1720.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1720.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1720"}}} +{"variants": {"": {"model": "imsm:block/useradded1720"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1721.json b/src/main/resources/assets/imsm/blockstates/useradded1721.json index c1ffdf0e..806b5b0e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1721.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1721.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1721"}}} +{"variants": {"": {"model": "imsm:block/useradded1721"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1722.json b/src/main/resources/assets/imsm/blockstates/useradded1722.json index 8f01017f..ffb32433 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1722.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1722.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1722"}}} +{"variants": {"": {"model": "imsm:block/useradded1722"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1723.json b/src/main/resources/assets/imsm/blockstates/useradded1723.json index 305fe001..906bd0de 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1723.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1723.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1723"}}} +{"variants": {"": {"model": "imsm:block/useradded1723"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1724.json b/src/main/resources/assets/imsm/blockstates/useradded1724.json index fdf0306b..4c062a66 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1724.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1724.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1724"}}} +{"variants": {"": {"model": "imsm:block/useradded1724"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1725.json b/src/main/resources/assets/imsm/blockstates/useradded1725.json index d00e6430..7cf4663d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1725.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1725.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1725"}}} +{"variants": {"": {"model": "imsm:block/useradded1725"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1726.json b/src/main/resources/assets/imsm/blockstates/useradded1726.json index 4c65d0c7..8f6c4acc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1726.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1726.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1726"}}} +{"variants": {"": {"model": "imsm:block/useradded1726"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1727.json b/src/main/resources/assets/imsm/blockstates/useradded1727.json index 39b50ebf..eb81bf1c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1727.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1727.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1727"}}} +{"variants": {"": {"model": "imsm:block/useradded1727"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1728.json b/src/main/resources/assets/imsm/blockstates/useradded1728.json index 83139569..8eab91d2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1728.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1728.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1728"}}} +{"variants": {"": {"model": "imsm:block/useradded1728"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1729.json b/src/main/resources/assets/imsm/blockstates/useradded1729.json index 7ba51d7e..623b0a21 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1729.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1729.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1729"}}} +{"variants": {"": {"model": "imsm:block/useradded1729"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded173.json b/src/main/resources/assets/imsm/blockstates/useradded173.json index 81274da3..b341ba31 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded173.json +++ b/src/main/resources/assets/imsm/blockstates/useradded173.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded173"}}} +{"variants": {"": {"model": "imsm:block/useradded173"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1730.json b/src/main/resources/assets/imsm/blockstates/useradded1730.json index 76f9ccae..61712eae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1730.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1730.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1730"}}} +{"variants": {"": {"model": "imsm:block/useradded1730"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1731.json b/src/main/resources/assets/imsm/blockstates/useradded1731.json index 79a6a553..bc50cf1a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1731.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1731.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1731"}}} +{"variants": {"": {"model": "imsm:block/useradded1731"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1732.json b/src/main/resources/assets/imsm/blockstates/useradded1732.json index b6e05ddf..c7748984 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1732.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1732.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1732"}}} +{"variants": {"": {"model": "imsm:block/useradded1732"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1733.json b/src/main/resources/assets/imsm/blockstates/useradded1733.json index b06ec03f..6bad0523 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1733.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1733.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1733"}}} +{"variants": {"": {"model": "imsm:block/useradded1733"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1734.json b/src/main/resources/assets/imsm/blockstates/useradded1734.json index d9952f5b..5389c657 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1734.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1734.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1734"}}} +{"variants": {"": {"model": "imsm:block/useradded1734"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1735.json b/src/main/resources/assets/imsm/blockstates/useradded1735.json index bd75d140..d37ed488 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1735.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1735.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1735"}}} +{"variants": {"": {"model": "imsm:block/useradded1735"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1736.json b/src/main/resources/assets/imsm/blockstates/useradded1736.json index ae63c24d..61779579 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1736.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1736.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1736"}}} +{"variants": {"": {"model": "imsm:block/useradded1736"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1737.json b/src/main/resources/assets/imsm/blockstates/useradded1737.json index 436a36b2..aae01201 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1737.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1737.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1737"}}} +{"variants": {"": {"model": "imsm:block/useradded1737"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1738.json b/src/main/resources/assets/imsm/blockstates/useradded1738.json index 5d0f29ab..54d24c21 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1738.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1738.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1738"}}} +{"variants": {"": {"model": "imsm:block/useradded1738"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1739.json b/src/main/resources/assets/imsm/blockstates/useradded1739.json index ec0a1011..0ebf47e8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1739.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1739.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1739"}}} +{"variants": {"": {"model": "imsm:block/useradded1739"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded174.json b/src/main/resources/assets/imsm/blockstates/useradded174.json index a7a688e9..49ab751b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded174.json +++ b/src/main/resources/assets/imsm/blockstates/useradded174.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded174"}}} +{"variants": {"": {"model": "imsm:block/useradded174"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1740.json b/src/main/resources/assets/imsm/blockstates/useradded1740.json index 47845c2d..9a221243 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1740.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1740.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1740"}}} +{"variants": {"": {"model": "imsm:block/useradded1740"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1741.json b/src/main/resources/assets/imsm/blockstates/useradded1741.json index 0b1a50e4..f45345ba 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1741.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1741.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1741"}}} +{"variants": {"": {"model": "imsm:block/useradded1741"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1742.json b/src/main/resources/assets/imsm/blockstates/useradded1742.json index 0f972e02..f232d40e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1742.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1742.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1742"}}} +{"variants": {"": {"model": "imsm:block/useradded1742"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1743.json b/src/main/resources/assets/imsm/blockstates/useradded1743.json index 404ee288..195491d6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1743.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1743.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1743"}}} +{"variants": {"": {"model": "imsm:block/useradded1743"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1744.json b/src/main/resources/assets/imsm/blockstates/useradded1744.json index aecb555e..08eeb887 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1744.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1744.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1744"}}} +{"variants": {"": {"model": "imsm:block/useradded1744"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1745.json b/src/main/resources/assets/imsm/blockstates/useradded1745.json index ab87b619..9f0a2b3f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1745.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1745.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1745"}}} +{"variants": {"": {"model": "imsm:block/useradded1745"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1746.json b/src/main/resources/assets/imsm/blockstates/useradded1746.json index e86d49ab..1965039d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1746.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1746.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1746"}}} +{"variants": {"": {"model": "imsm:block/useradded1746"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1747.json b/src/main/resources/assets/imsm/blockstates/useradded1747.json index 306bbe17..05aa76ca 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1747.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1747.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1747"}}} +{"variants": {"": {"model": "imsm:block/useradded1747"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1748.json b/src/main/resources/assets/imsm/blockstates/useradded1748.json index 6be0c6e6..f1aade38 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1748.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1748.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1748"}}} +{"variants": {"": {"model": "imsm:block/useradded1748"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1749.json b/src/main/resources/assets/imsm/blockstates/useradded1749.json index 9f40c8be..7a77a671 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1749.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1749.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1749"}}} +{"variants": {"": {"model": "imsm:block/useradded1749"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded175.json b/src/main/resources/assets/imsm/blockstates/useradded175.json index 5c30105b..1b969add 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded175.json +++ b/src/main/resources/assets/imsm/blockstates/useradded175.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded175"}}} +{"variants": {"": {"model": "imsm:block/useradded175"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1750.json b/src/main/resources/assets/imsm/blockstates/useradded1750.json index a62c7c5b..17a20fa4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1750.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1750.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1750"}}} +{"variants": {"": {"model": "imsm:block/useradded1750"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1751.json b/src/main/resources/assets/imsm/blockstates/useradded1751.json index 9a953bc7..91bb19b8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1751.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1751.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1751"}}} +{"variants": {"": {"model": "imsm:block/useradded1751"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1752.json b/src/main/resources/assets/imsm/blockstates/useradded1752.json index 7b160b19..f66b27f5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1752.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1752.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1752"}}} +{"variants": {"": {"model": "imsm:block/useradded1752"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1753.json b/src/main/resources/assets/imsm/blockstates/useradded1753.json index e9207eb3..79249582 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1753.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1753.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1753"}}} +{"variants": {"": {"model": "imsm:block/useradded1753"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1754.json b/src/main/resources/assets/imsm/blockstates/useradded1754.json index 64e6f772..00009b74 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1754.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1754.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1754"}}} +{"variants": {"": {"model": "imsm:block/useradded1754"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1755.json b/src/main/resources/assets/imsm/blockstates/useradded1755.json index 073db436..c46d9a91 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1755.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1755.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1755"}}} +{"variants": {"": {"model": "imsm:block/useradded1755"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1756.json b/src/main/resources/assets/imsm/blockstates/useradded1756.json index 6f8171d3..1eca646d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1756.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1756.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1756"}}} +{"variants": {"": {"model": "imsm:block/useradded1756"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1757.json b/src/main/resources/assets/imsm/blockstates/useradded1757.json index 55c5c998..5a0e76fe 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1757.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1757.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1757"}}} +{"variants": {"": {"model": "imsm:block/useradded1757"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1758.json b/src/main/resources/assets/imsm/blockstates/useradded1758.json index f1101ab8..6e0268d3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1758.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1758.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1758"}}} +{"variants": {"": {"model": "imsm:block/useradded1758"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1759.json b/src/main/resources/assets/imsm/blockstates/useradded1759.json index 1ff15a88..8ba65131 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1759.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1759.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1759"}}} +{"variants": {"": {"model": "imsm:block/useradded1759"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded176.json b/src/main/resources/assets/imsm/blockstates/useradded176.json index 2258ee2f..0bfe8f96 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded176.json +++ b/src/main/resources/assets/imsm/blockstates/useradded176.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded176"}}} +{"variants": {"": {"model": "imsm:block/useradded176"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1760.json b/src/main/resources/assets/imsm/blockstates/useradded1760.json index e1e1010b..73bd0884 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1760.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1760.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1760"}}} +{"variants": {"": {"model": "imsm:block/useradded1760"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1761.json b/src/main/resources/assets/imsm/blockstates/useradded1761.json index d6c869a4..1904c1d4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1761.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1761.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1761"}}} +{"variants": {"": {"model": "imsm:block/useradded1761"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1762.json b/src/main/resources/assets/imsm/blockstates/useradded1762.json index 669a14b0..f5c9e936 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1762.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1762.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1762"}}} +{"variants": {"": {"model": "imsm:block/useradded1762"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1763.json b/src/main/resources/assets/imsm/blockstates/useradded1763.json index f93b3224..13a61750 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1763.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1763.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1763"}}} +{"variants": {"": {"model": "imsm:block/useradded1763"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1764.json b/src/main/resources/assets/imsm/blockstates/useradded1764.json index 686570ea..d453e685 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1764.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1764.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1764"}}} +{"variants": {"": {"model": "imsm:block/useradded1764"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1765.json b/src/main/resources/assets/imsm/blockstates/useradded1765.json index ba222a63..ec8a61bf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1765.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1765.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1765"}}} +{"variants": {"": {"model": "imsm:block/useradded1765"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1766.json b/src/main/resources/assets/imsm/blockstates/useradded1766.json index 03675311..7e2ebec5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1766.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1766.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1766"}}} +{"variants": {"": {"model": "imsm:block/useradded1766"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1767.json b/src/main/resources/assets/imsm/blockstates/useradded1767.json index 34a47d66..3d0d0689 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1767.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1767.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1767"}}} +{"variants": {"": {"model": "imsm:block/useradded1767"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1768.json b/src/main/resources/assets/imsm/blockstates/useradded1768.json index 2f622356..fb682910 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1768.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1768.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1768"}}} +{"variants": {"": {"model": "imsm:block/useradded1768"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1769.json b/src/main/resources/assets/imsm/blockstates/useradded1769.json index ff169684..71d98950 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1769.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1769.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1769"}}} +{"variants": {"": {"model": "imsm:block/useradded1769"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded177.json b/src/main/resources/assets/imsm/blockstates/useradded177.json index 9f60981e..a9aeecf9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded177.json +++ b/src/main/resources/assets/imsm/blockstates/useradded177.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded177"}}} +{"variants": {"": {"model": "imsm:block/useradded177"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1770.json b/src/main/resources/assets/imsm/blockstates/useradded1770.json index 7e7c1d35..fb09f2d0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1770.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1770.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1770"}}} +{"variants": {"": {"model": "imsm:block/useradded1770"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1771.json b/src/main/resources/assets/imsm/blockstates/useradded1771.json index 405926dc..1656ba9c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1771.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1771.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1771"}}} +{"variants": {"": {"model": "imsm:block/useradded1771"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1772.json b/src/main/resources/assets/imsm/blockstates/useradded1772.json index 394ef887..2f3d5039 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1772.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1772.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1772"}}} +{"variants": {"": {"model": "imsm:block/useradded1772"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1773.json b/src/main/resources/assets/imsm/blockstates/useradded1773.json index 7ceaa046..8c0beba7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1773.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1773.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1773"}}} +{"variants": {"": {"model": "imsm:block/useradded1773"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1774.json b/src/main/resources/assets/imsm/blockstates/useradded1774.json index 321c39a3..865687d3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1774.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1774.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1774"}}} +{"variants": {"": {"model": "imsm:block/useradded1774"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1775.json b/src/main/resources/assets/imsm/blockstates/useradded1775.json index e9982fc3..ce9c2769 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1775.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1775.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1775"}}} +{"variants": {"": {"model": "imsm:block/useradded1775"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1776.json b/src/main/resources/assets/imsm/blockstates/useradded1776.json index cf0327f3..3c060af6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1776.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1776.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1776"}}} +{"variants": {"": {"model": "imsm:block/useradded1776"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1777.json b/src/main/resources/assets/imsm/blockstates/useradded1777.json index 4d39aad5..fa7d717b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1777.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1777.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1777"}}} +{"variants": {"": {"model": "imsm:block/useradded1777"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1778.json b/src/main/resources/assets/imsm/blockstates/useradded1778.json index 70691f76..a94d8456 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1778.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1778.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1778"}}} +{"variants": {"": {"model": "imsm:block/useradded1778"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1779.json b/src/main/resources/assets/imsm/blockstates/useradded1779.json index 72d87273..b770a913 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1779.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1779.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1779"}}} +{"variants": {"": {"model": "imsm:block/useradded1779"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded178.json b/src/main/resources/assets/imsm/blockstates/useradded178.json index ad6bdca8..bf2bdeef 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded178.json +++ b/src/main/resources/assets/imsm/blockstates/useradded178.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded178"}}} +{"variants": {"": {"model": "imsm:block/useradded178"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1780.json b/src/main/resources/assets/imsm/blockstates/useradded1780.json index be351a7c..9ab78900 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1780.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1780.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1780"}}} +{"variants": {"": {"model": "imsm:block/useradded1780"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1781.json b/src/main/resources/assets/imsm/blockstates/useradded1781.json index 35704131..0322a9b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1781.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1781.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1781"}}} +{"variants": {"": {"model": "imsm:block/useradded1781"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1782.json b/src/main/resources/assets/imsm/blockstates/useradded1782.json index f587ab74..cffa3308 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1782.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1782.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1782"}}} +{"variants": {"": {"model": "imsm:block/useradded1782"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1783.json b/src/main/resources/assets/imsm/blockstates/useradded1783.json index 376067c9..cdd51418 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1783.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1783.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1783"}}} +{"variants": {"": {"model": "imsm:block/useradded1783"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1784.json b/src/main/resources/assets/imsm/blockstates/useradded1784.json index c4c725f2..630eac7b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1784.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1784.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1784"}}} +{"variants": {"": {"model": "imsm:block/useradded1784"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1785.json b/src/main/resources/assets/imsm/blockstates/useradded1785.json index 294d7a31..dd273bc9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1785.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1785.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1785"}}} +{"variants": {"": {"model": "imsm:block/useradded1785"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1786.json b/src/main/resources/assets/imsm/blockstates/useradded1786.json index 11222395..a4482a90 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1786.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1786.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1786"}}} +{"variants": {"": {"model": "imsm:block/useradded1786"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1787.json b/src/main/resources/assets/imsm/blockstates/useradded1787.json index a1901c69..068b080e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1787.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1787.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1787"}}} +{"variants": {"": {"model": "imsm:block/useradded1787"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1788.json b/src/main/resources/assets/imsm/blockstates/useradded1788.json index 3ed9d709..76a0204d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1788.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1788.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1788"}}} +{"variants": {"": {"model": "imsm:block/useradded1788"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1789.json b/src/main/resources/assets/imsm/blockstates/useradded1789.json index f6cbfd69..2cfc80d9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1789.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1789.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1789"}}} +{"variants": {"": {"model": "imsm:block/useradded1789"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded179.json b/src/main/resources/assets/imsm/blockstates/useradded179.json index 9172df91..9f92d7ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded179.json +++ b/src/main/resources/assets/imsm/blockstates/useradded179.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded179"}}} +{"variants": {"": {"model": "imsm:block/useradded179"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1790.json b/src/main/resources/assets/imsm/blockstates/useradded1790.json index 63d2b087..05655264 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1790.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1790.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1790"}}} +{"variants": {"": {"model": "imsm:block/useradded1790"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1791.json b/src/main/resources/assets/imsm/blockstates/useradded1791.json index b511bd81..fe9b2df7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1791.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1791.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1791"}}} +{"variants": {"": {"model": "imsm:block/useradded1791"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1792.json b/src/main/resources/assets/imsm/blockstates/useradded1792.json index e943cbe3..d0b6e2af 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1792.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1792.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1792"}}} +{"variants": {"": {"model": "imsm:block/useradded1792"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1793.json b/src/main/resources/assets/imsm/blockstates/useradded1793.json index c6735229..a254af7c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1793.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1793.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1793"}}} +{"variants": {"": {"model": "imsm:block/useradded1793"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1794.json b/src/main/resources/assets/imsm/blockstates/useradded1794.json index 2d0ebfa6..dad2c20b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1794.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1794.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1794"}}} +{"variants": {"": {"model": "imsm:block/useradded1794"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1795.json b/src/main/resources/assets/imsm/blockstates/useradded1795.json index e387dd10..235ae0b5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1795.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1795.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1795"}}} +{"variants": {"": {"model": "imsm:block/useradded1795"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1796.json b/src/main/resources/assets/imsm/blockstates/useradded1796.json index ab770428..355e72b5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1796.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1796.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1796"}}} +{"variants": {"": {"model": "imsm:block/useradded1796"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1797.json b/src/main/resources/assets/imsm/blockstates/useradded1797.json index 21c0d4f9..7db3b269 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1797.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1797.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1797"}}} +{"variants": {"": {"model": "imsm:block/useradded1797"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1798.json b/src/main/resources/assets/imsm/blockstates/useradded1798.json index 095a347d..e296ced7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1798.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1798.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1798"}}} +{"variants": {"": {"model": "imsm:block/useradded1798"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1799.json b/src/main/resources/assets/imsm/blockstates/useradded1799.json index be0de28d..e71a91fb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1799.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1799.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1799"}}} +{"variants": {"": {"model": "imsm:block/useradded1799"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded18.json b/src/main/resources/assets/imsm/blockstates/useradded18.json index c8c7231a..6f4d6905 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded18.json +++ b/src/main/resources/assets/imsm/blockstates/useradded18.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded18"}}} +{"variants": {"": {"model": "imsm:block/useradded18"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded180.json b/src/main/resources/assets/imsm/blockstates/useradded180.json index d1f95e47..0a9d7fe7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded180.json +++ b/src/main/resources/assets/imsm/blockstates/useradded180.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded180"}}} +{"variants": {"": {"model": "imsm:block/useradded180"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1800.json b/src/main/resources/assets/imsm/blockstates/useradded1800.json index e17fbfcb..7e8420b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1800.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1800.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1800"}}} +{"variants": {"": {"model": "imsm:block/useradded1800"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1801.json b/src/main/resources/assets/imsm/blockstates/useradded1801.json index 0827e467..153954e7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1801.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1801.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1801"}}} +{"variants": {"": {"model": "imsm:block/useradded1801"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1802.json b/src/main/resources/assets/imsm/blockstates/useradded1802.json index 0a78abf7..6f5f6e76 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1802.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1802.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1802"}}} +{"variants": {"": {"model": "imsm:block/useradded1802"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1803.json b/src/main/resources/assets/imsm/blockstates/useradded1803.json index ddf617e7..26cf86fc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1803.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1803.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1803"}}} +{"variants": {"": {"model": "imsm:block/useradded1803"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1804.json b/src/main/resources/assets/imsm/blockstates/useradded1804.json index 085eadb5..8b0249e9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1804.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1804.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1804"}}} +{"variants": {"": {"model": "imsm:block/useradded1804"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1805.json b/src/main/resources/assets/imsm/blockstates/useradded1805.json index 6a7dcb2d..2b8772ae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1805.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1805.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1805"}}} +{"variants": {"": {"model": "imsm:block/useradded1805"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1806.json b/src/main/resources/assets/imsm/blockstates/useradded1806.json index 3f449b4b..0dccd31a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1806.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1806.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1806"}}} +{"variants": {"": {"model": "imsm:block/useradded1806"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1807.json b/src/main/resources/assets/imsm/blockstates/useradded1807.json index 7591f795..84d4322e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1807.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1807.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1807"}}} +{"variants": {"": {"model": "imsm:block/useradded1807"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1808.json b/src/main/resources/assets/imsm/blockstates/useradded1808.json index b4b5f998..69458de3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1808.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1808.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1808"}}} +{"variants": {"": {"model": "imsm:block/useradded1808"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1809.json b/src/main/resources/assets/imsm/blockstates/useradded1809.json index e5689af9..c6139fde 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1809.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1809.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1809"}}} +{"variants": {"": {"model": "imsm:block/useradded1809"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded181.json b/src/main/resources/assets/imsm/blockstates/useradded181.json index e9e8d59d..baeb3220 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded181.json +++ b/src/main/resources/assets/imsm/blockstates/useradded181.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded181"}}} +{"variants": {"": {"model": "imsm:block/useradded181"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1810.json b/src/main/resources/assets/imsm/blockstates/useradded1810.json index dcbd9c23..9e124bd8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1810.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1810.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1810"}}} +{"variants": {"": {"model": "imsm:block/useradded1810"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1811.json b/src/main/resources/assets/imsm/blockstates/useradded1811.json index 7f0398ab..27107a60 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1811.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1811.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1811"}}} +{"variants": {"": {"model": "imsm:block/useradded1811"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1812.json b/src/main/resources/assets/imsm/blockstates/useradded1812.json index 59562377..5bd405f8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1812.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1812.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1812"}}} +{"variants": {"": {"model": "imsm:block/useradded1812"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1813.json b/src/main/resources/assets/imsm/blockstates/useradded1813.json index 3c0cd418..109d4045 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1813.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1813.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1813"}}} +{"variants": {"": {"model": "imsm:block/useradded1813"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1814.json b/src/main/resources/assets/imsm/blockstates/useradded1814.json index d7a26e9a..c9766c26 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1814.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1814.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1814"}}} +{"variants": {"": {"model": "imsm:block/useradded1814"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1815.json b/src/main/resources/assets/imsm/blockstates/useradded1815.json index 7a98a86c..8399afc6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1815.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1815.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1815"}}} +{"variants": {"": {"model": "imsm:block/useradded1815"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1816.json b/src/main/resources/assets/imsm/blockstates/useradded1816.json index cc0365dd..2484711f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1816.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1816.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1816"}}} +{"variants": {"": {"model": "imsm:block/useradded1816"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1817.json b/src/main/resources/assets/imsm/blockstates/useradded1817.json index 08a7084a..600ad2ad 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1817.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1817.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1817"}}} +{"variants": {"": {"model": "imsm:block/useradded1817"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1818.json b/src/main/resources/assets/imsm/blockstates/useradded1818.json index b35927f3..3d77801c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1818.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1818.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1818"}}} +{"variants": {"": {"model": "imsm:block/useradded1818"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1819.json b/src/main/resources/assets/imsm/blockstates/useradded1819.json index 033cc700..6edbacc8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1819.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1819.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1819"}}} +{"variants": {"": {"model": "imsm:block/useradded1819"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded182.json b/src/main/resources/assets/imsm/blockstates/useradded182.json index 61605c77..b89a062b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded182.json +++ b/src/main/resources/assets/imsm/blockstates/useradded182.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded182"}}} +{"variants": {"": {"model": "imsm:block/useradded182"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1820.json b/src/main/resources/assets/imsm/blockstates/useradded1820.json index 950dceac..61f7faa0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1820.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1820.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1820"}}} +{"variants": {"": {"model": "imsm:block/useradded1820"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1821.json b/src/main/resources/assets/imsm/blockstates/useradded1821.json index 01fd9804..484ca0b5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1821.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1821.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1821"}}} +{"variants": {"": {"model": "imsm:block/useradded1821"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1822.json b/src/main/resources/assets/imsm/blockstates/useradded1822.json index fb14275d..63a599e7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1822.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1822.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1822"}}} +{"variants": {"": {"model": "imsm:block/useradded1822"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1823.json b/src/main/resources/assets/imsm/blockstates/useradded1823.json index 8d841073..27fde0df 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1823.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1823.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1823"}}} +{"variants": {"": {"model": "imsm:block/useradded1823"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1824.json b/src/main/resources/assets/imsm/blockstates/useradded1824.json index 778de1e1..f67126ca 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1824.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1824.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1824"}}} +{"variants": {"": {"model": "imsm:block/useradded1824"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1825.json b/src/main/resources/assets/imsm/blockstates/useradded1825.json index 905cc4da..552367db 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1825.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1825.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1825"}}} +{"variants": {"": {"model": "imsm:block/useradded1825"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1826.json b/src/main/resources/assets/imsm/blockstates/useradded1826.json index 2a090bd7..b5825d0f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1826.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1826.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1826"}}} +{"variants": {"": {"model": "imsm:block/useradded1826"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1827.json b/src/main/resources/assets/imsm/blockstates/useradded1827.json index 4b875f5a..addcf1ac 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1827.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1827.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1827"}}} +{"variants": {"": {"model": "imsm:block/useradded1827"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1828.json b/src/main/resources/assets/imsm/blockstates/useradded1828.json index 9fb0d113..b4bc9c01 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1828.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1828.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1828"}}} +{"variants": {"": {"model": "imsm:block/useradded1828"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1829.json b/src/main/resources/assets/imsm/blockstates/useradded1829.json index b8b6b220..10badeef 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1829.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1829.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1829"}}} +{"variants": {"": {"model": "imsm:block/useradded1829"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded183.json b/src/main/resources/assets/imsm/blockstates/useradded183.json index 55b72b06..21058931 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded183.json +++ b/src/main/resources/assets/imsm/blockstates/useradded183.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded183"}}} +{"variants": {"": {"model": "imsm:block/useradded183"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1830.json b/src/main/resources/assets/imsm/blockstates/useradded1830.json index b3cc3eca..6ba6ef5e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1830.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1830.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1830"}}} +{"variants": {"": {"model": "imsm:block/useradded1830"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1831.json b/src/main/resources/assets/imsm/blockstates/useradded1831.json index 159b93d4..5188b313 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1831.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1831.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1831"}}} +{"variants": {"": {"model": "imsm:block/useradded1831"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1832.json b/src/main/resources/assets/imsm/blockstates/useradded1832.json index de774ddd..74cee472 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1832.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1832.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1832"}}} +{"variants": {"": {"model": "imsm:block/useradded1832"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1833.json b/src/main/resources/assets/imsm/blockstates/useradded1833.json index 0086af3c..99df82b1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1833.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1833.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1833"}}} +{"variants": {"": {"model": "imsm:block/useradded1833"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1834.json b/src/main/resources/assets/imsm/blockstates/useradded1834.json index 14876bdc..665d4296 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1834.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1834.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1834"}}} +{"variants": {"": {"model": "imsm:block/useradded1834"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1835.json b/src/main/resources/assets/imsm/blockstates/useradded1835.json index daabab6e..0b6ccac9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1835.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1835.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1835"}}} +{"variants": {"": {"model": "imsm:block/useradded1835"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1836.json b/src/main/resources/assets/imsm/blockstates/useradded1836.json index 88f411ab..611ad3cb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1836.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1836.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1836"}}} +{"variants": {"": {"model": "imsm:block/useradded1836"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1837.json b/src/main/resources/assets/imsm/blockstates/useradded1837.json index 7a60315b..b0095290 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1837.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1837.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1837"}}} +{"variants": {"": {"model": "imsm:block/useradded1837"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1838.json b/src/main/resources/assets/imsm/blockstates/useradded1838.json index 0b0debf6..75101e76 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1838.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1838.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1838"}}} +{"variants": {"": {"model": "imsm:block/useradded1838"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1839.json b/src/main/resources/assets/imsm/blockstates/useradded1839.json index 08c58345..bcdaaf49 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1839.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1839.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1839"}}} +{"variants": {"": {"model": "imsm:block/useradded1839"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded184.json b/src/main/resources/assets/imsm/blockstates/useradded184.json index 0786237e..864dbb40 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded184.json +++ b/src/main/resources/assets/imsm/blockstates/useradded184.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded184"}}} +{"variants": {"": {"model": "imsm:block/useradded184"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1840.json b/src/main/resources/assets/imsm/blockstates/useradded1840.json index c13e17f4..c6e5a9b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1840.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1840.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1840"}}} +{"variants": {"": {"model": "imsm:block/useradded1840"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1841.json b/src/main/resources/assets/imsm/blockstates/useradded1841.json index 5f0743b3..b9f5fbae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1841.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1841.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1841"}}} +{"variants": {"": {"model": "imsm:block/useradded1841"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1842.json b/src/main/resources/assets/imsm/blockstates/useradded1842.json index fd1afb8a..5af9db74 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1842.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1842.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1842"}}} +{"variants": {"": {"model": "imsm:block/useradded1842"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1843.json b/src/main/resources/assets/imsm/blockstates/useradded1843.json index d927fc7c..bb375583 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1843.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1843.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1843"}}} +{"variants": {"": {"model": "imsm:block/useradded1843"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1844.json b/src/main/resources/assets/imsm/blockstates/useradded1844.json index 096e94ce..d8bac067 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1844.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1844.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1844"}}} +{"variants": {"": {"model": "imsm:block/useradded1844"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1845.json b/src/main/resources/assets/imsm/blockstates/useradded1845.json index 42722b9b..6b397846 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1845.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1845.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1845"}}} +{"variants": {"": {"model": "imsm:block/useradded1845"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1846.json b/src/main/resources/assets/imsm/blockstates/useradded1846.json index c8a08594..c7990731 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1846.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1846.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1846"}}} +{"variants": {"": {"model": "imsm:block/useradded1846"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1847.json b/src/main/resources/assets/imsm/blockstates/useradded1847.json index d41b8ed9..3a901fd6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1847.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1847.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1847"}}} +{"variants": {"": {"model": "imsm:block/useradded1847"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1848.json b/src/main/resources/assets/imsm/blockstates/useradded1848.json index 4a6debdf..f6a0ce8c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1848.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1848.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1848"}}} +{"variants": {"": {"model": "imsm:block/useradded1848"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1849.json b/src/main/resources/assets/imsm/blockstates/useradded1849.json index b2780c6f..d0f4eb52 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1849.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1849.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1849"}}} +{"variants": {"": {"model": "imsm:block/useradded1849"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded185.json b/src/main/resources/assets/imsm/blockstates/useradded185.json index b0dc2ada..33f69a51 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded185.json +++ b/src/main/resources/assets/imsm/blockstates/useradded185.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded185"}}} +{"variants": {"": {"model": "imsm:block/useradded185"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1850.json b/src/main/resources/assets/imsm/blockstates/useradded1850.json index 352a18ce..58e94472 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1850.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1850.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1850"}}} +{"variants": {"": {"model": "imsm:block/useradded1850"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1851.json b/src/main/resources/assets/imsm/blockstates/useradded1851.json index 9fdf7ef8..0d4bf84e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1851.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1851.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1851"}}} +{"variants": {"": {"model": "imsm:block/useradded1851"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1852.json b/src/main/resources/assets/imsm/blockstates/useradded1852.json index b026a21c..4c9e683a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1852.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1852.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1852"}}} +{"variants": {"": {"model": "imsm:block/useradded1852"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1853.json b/src/main/resources/assets/imsm/blockstates/useradded1853.json index a15f90e3..0968137b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1853.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1853.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1853"}}} +{"variants": {"": {"model": "imsm:block/useradded1853"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1854.json b/src/main/resources/assets/imsm/blockstates/useradded1854.json index f66c95b9..b0e0412b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1854.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1854.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1854"}}} +{"variants": {"": {"model": "imsm:block/useradded1854"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1855.json b/src/main/resources/assets/imsm/blockstates/useradded1855.json index 52ea5791..11f690a3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1855.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1855.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1855"}}} +{"variants": {"": {"model": "imsm:block/useradded1855"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1856.json b/src/main/resources/assets/imsm/blockstates/useradded1856.json index b8f1ac78..68e7e378 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1856.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1856.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1856"}}} +{"variants": {"": {"model": "imsm:block/useradded1856"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1857.json b/src/main/resources/assets/imsm/blockstates/useradded1857.json index a7745a05..f8b07737 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1857.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1857.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1857"}}} +{"variants": {"": {"model": "imsm:block/useradded1857"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1858.json b/src/main/resources/assets/imsm/blockstates/useradded1858.json index 41a5379b..f2aa3b4d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1858.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1858.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1858"}}} +{"variants": {"": {"model": "imsm:block/useradded1858"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1859.json b/src/main/resources/assets/imsm/blockstates/useradded1859.json index 67e2d491..3fd4b18a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1859.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1859.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1859"}}} +{"variants": {"": {"model": "imsm:block/useradded1859"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded186.json b/src/main/resources/assets/imsm/blockstates/useradded186.json index facbf708..2100714b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded186.json +++ b/src/main/resources/assets/imsm/blockstates/useradded186.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded186"}}} +{"variants": {"": {"model": "imsm:block/useradded186"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1860.json b/src/main/resources/assets/imsm/blockstates/useradded1860.json index a8e6b529..092cf9c9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1860.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1860.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1860"}}} +{"variants": {"": {"model": "imsm:block/useradded1860"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1861.json b/src/main/resources/assets/imsm/blockstates/useradded1861.json index 0b02bb82..1384384d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1861.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1861.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1861"}}} +{"variants": {"": {"model": "imsm:block/useradded1861"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1862.json b/src/main/resources/assets/imsm/blockstates/useradded1862.json index 00915847..f1f3512d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1862.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1862.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1862"}}} +{"variants": {"": {"model": "imsm:block/useradded1862"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1863.json b/src/main/resources/assets/imsm/blockstates/useradded1863.json index 2eee9eb9..80fb942c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1863.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1863.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1863"}}} +{"variants": {"": {"model": "imsm:block/useradded1863"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1864.json b/src/main/resources/assets/imsm/blockstates/useradded1864.json index 4978a5b8..80989ff9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1864.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1864.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1864"}}} +{"variants": {"": {"model": "imsm:block/useradded1864"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1865.json b/src/main/resources/assets/imsm/blockstates/useradded1865.json index e0d31857..b7819331 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1865.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1865.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1865"}}} +{"variants": {"": {"model": "imsm:block/useradded1865"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1866.json b/src/main/resources/assets/imsm/blockstates/useradded1866.json index 82d7fbc7..9aedad08 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1866.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1866.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1866"}}} +{"variants": {"": {"model": "imsm:block/useradded1866"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1867.json b/src/main/resources/assets/imsm/blockstates/useradded1867.json index 937f270b..6cdd9580 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1867.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1867.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1867"}}} +{"variants": {"": {"model": "imsm:block/useradded1867"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1868.json b/src/main/resources/assets/imsm/blockstates/useradded1868.json index 0b4bf79f..051ca13d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1868.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1868.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1868"}}} +{"variants": {"": {"model": "imsm:block/useradded1868"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1869.json b/src/main/resources/assets/imsm/blockstates/useradded1869.json index cc7db31f..8d3f6636 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1869.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1869.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1869"}}} +{"variants": {"": {"model": "imsm:block/useradded1869"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded187.json b/src/main/resources/assets/imsm/blockstates/useradded187.json index 60135cdd..ef82df06 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded187.json +++ b/src/main/resources/assets/imsm/blockstates/useradded187.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded187"}}} +{"variants": {"": {"model": "imsm:block/useradded187"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1870.json b/src/main/resources/assets/imsm/blockstates/useradded1870.json index 9e9a0c95..84e71981 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1870.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1870.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1870"}}} +{"variants": {"": {"model": "imsm:block/useradded1870"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1871.json b/src/main/resources/assets/imsm/blockstates/useradded1871.json index 3d1c9fd0..99d98ec2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1871.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1871.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1871"}}} +{"variants": {"": {"model": "imsm:block/useradded1871"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1872.json b/src/main/resources/assets/imsm/blockstates/useradded1872.json index 10c21ea8..e6b6a084 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1872.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1872.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1872"}}} +{"variants": {"": {"model": "imsm:block/useradded1872"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1873.json b/src/main/resources/assets/imsm/blockstates/useradded1873.json index ef41bbd2..3ba93c8e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1873.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1873.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1873"}}} +{"variants": {"": {"model": "imsm:block/useradded1873"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1874.json b/src/main/resources/assets/imsm/blockstates/useradded1874.json index f1920ffc..18e3a6dd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1874.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1874.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1874"}}} +{"variants": {"": {"model": "imsm:block/useradded1874"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1875.json b/src/main/resources/assets/imsm/blockstates/useradded1875.json index d9a1337d..1d31f67c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1875.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1875.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1875"}}} +{"variants": {"": {"model": "imsm:block/useradded1875"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1876.json b/src/main/resources/assets/imsm/blockstates/useradded1876.json index 534ea685..82cad93c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1876.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1876.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1876"}}} +{"variants": {"": {"model": "imsm:block/useradded1876"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1877.json b/src/main/resources/assets/imsm/blockstates/useradded1877.json index 6e05226c..46aeba0f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1877.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1877.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1877"}}} +{"variants": {"": {"model": "imsm:block/useradded1877"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1878.json b/src/main/resources/assets/imsm/blockstates/useradded1878.json index 02ea1c79..eb1be344 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1878.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1878.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1878"}}} +{"variants": {"": {"model": "imsm:block/useradded1878"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1879.json b/src/main/resources/assets/imsm/blockstates/useradded1879.json index eb23733b..fe8f2b9c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1879.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1879.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1879"}}} +{"variants": {"": {"model": "imsm:block/useradded1879"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded188.json b/src/main/resources/assets/imsm/blockstates/useradded188.json index 9d1db341..9b1909c3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded188.json +++ b/src/main/resources/assets/imsm/blockstates/useradded188.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded188"}}} +{"variants": {"": {"model": "imsm:block/useradded188"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1880.json b/src/main/resources/assets/imsm/blockstates/useradded1880.json index 32b2120f..a21914c5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1880.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1880.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1880"}}} +{"variants": {"": {"model": "imsm:block/useradded1880"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1881.json b/src/main/resources/assets/imsm/blockstates/useradded1881.json index 533259fa..476c3f14 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1881.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1881.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1881"}}} +{"variants": {"": {"model": "imsm:block/useradded1881"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1882.json b/src/main/resources/assets/imsm/blockstates/useradded1882.json index e38a1d00..50a0ed44 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1882.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1882.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1882"}}} +{"variants": {"": {"model": "imsm:block/useradded1882"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1883.json b/src/main/resources/assets/imsm/blockstates/useradded1883.json index e0c2bfc9..30011a85 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1883.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1883.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1883"}}} +{"variants": {"": {"model": "imsm:block/useradded1883"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1884.json b/src/main/resources/assets/imsm/blockstates/useradded1884.json index a852e596..c2a3a0d8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1884.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1884.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1884"}}} +{"variants": {"": {"model": "imsm:block/useradded1884"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1885.json b/src/main/resources/assets/imsm/blockstates/useradded1885.json index 4cad7bb8..c9ecc89a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1885.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1885.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1885"}}} +{"variants": {"": {"model": "imsm:block/useradded1885"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1886.json b/src/main/resources/assets/imsm/blockstates/useradded1886.json index 083ce541..1c2fbf4f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1886.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1886.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1886"}}} +{"variants": {"": {"model": "imsm:block/useradded1886"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1887.json b/src/main/resources/assets/imsm/blockstates/useradded1887.json index 0d6b03d2..fac20573 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1887.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1887.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1887"}}} +{"variants": {"": {"model": "imsm:block/useradded1887"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1888.json b/src/main/resources/assets/imsm/blockstates/useradded1888.json index 243cc1b5..086b797f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1888.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1888.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1888"}}} +{"variants": {"": {"model": "imsm:block/useradded1888"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1889.json b/src/main/resources/assets/imsm/blockstates/useradded1889.json index d27d5ca1..d1efc8fb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1889.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1889.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1889"}}} +{"variants": {"": {"model": "imsm:block/useradded1889"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded189.json b/src/main/resources/assets/imsm/blockstates/useradded189.json index f8268104..2c4cb12e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded189.json +++ b/src/main/resources/assets/imsm/blockstates/useradded189.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded189"}}} +{"variants": {"": {"model": "imsm:block/useradded189"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1890.json b/src/main/resources/assets/imsm/blockstates/useradded1890.json index 6856eeb3..894e694c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1890.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1890.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1890"}}} +{"variants": {"": {"model": "imsm:block/useradded1890"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1891.json b/src/main/resources/assets/imsm/blockstates/useradded1891.json index 2e1a8271..f474440c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1891.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1891.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1891"}}} +{"variants": {"": {"model": "imsm:block/useradded1891"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1892.json b/src/main/resources/assets/imsm/blockstates/useradded1892.json index 5975d862..2aab8d09 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1892.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1892.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1892"}}} +{"variants": {"": {"model": "imsm:block/useradded1892"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1893.json b/src/main/resources/assets/imsm/blockstates/useradded1893.json index 017e5e4d..3f8508f1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1893.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1893.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1893"}}} +{"variants": {"": {"model": "imsm:block/useradded1893"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1894.json b/src/main/resources/assets/imsm/blockstates/useradded1894.json index 4df6ce1d..e5469e9f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1894.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1894.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1894"}}} +{"variants": {"": {"model": "imsm:block/useradded1894"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1895.json b/src/main/resources/assets/imsm/blockstates/useradded1895.json index d99a4b4d..970ef213 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1895.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1895.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1895"}}} +{"variants": {"": {"model": "imsm:block/useradded1895"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1896.json b/src/main/resources/assets/imsm/blockstates/useradded1896.json index 5c28175b..f6425321 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1896.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1896.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1896"}}} +{"variants": {"": {"model": "imsm:block/useradded1896"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1897.json b/src/main/resources/assets/imsm/blockstates/useradded1897.json index 43a76e44..3f4a14fb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1897.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1897.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1897"}}} +{"variants": {"": {"model": "imsm:block/useradded1897"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1898.json b/src/main/resources/assets/imsm/blockstates/useradded1898.json index 8542ccb8..447f176a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1898.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1898.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1898"}}} +{"variants": {"": {"model": "imsm:block/useradded1898"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1899.json b/src/main/resources/assets/imsm/blockstates/useradded1899.json index 4257578c..094b4c65 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1899.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1899.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1899"}}} +{"variants": {"": {"model": "imsm:block/useradded1899"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded19.json b/src/main/resources/assets/imsm/blockstates/useradded19.json index 0c24564a..8bfb15c6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded19.json +++ b/src/main/resources/assets/imsm/blockstates/useradded19.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded19"}}} +{"variants": {"": {"model": "imsm:block/useradded19"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded190.json b/src/main/resources/assets/imsm/blockstates/useradded190.json index c0948742..1747f59b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded190.json +++ b/src/main/resources/assets/imsm/blockstates/useradded190.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded190"}}} +{"variants": {"": {"model": "imsm:block/useradded190"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1900.json b/src/main/resources/assets/imsm/blockstates/useradded1900.json index fae60fa7..bebdd824 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1900.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1900.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1900"}}} +{"variants": {"": {"model": "imsm:block/useradded1900"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1901.json b/src/main/resources/assets/imsm/blockstates/useradded1901.json index 6d237894..ad823edd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1901.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1901.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1901"}}} +{"variants": {"": {"model": "imsm:block/useradded1901"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1902.json b/src/main/resources/assets/imsm/blockstates/useradded1902.json index 3bbafeae..c9a874cb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1902.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1902.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1902"}}} +{"variants": {"": {"model": "imsm:block/useradded1902"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1903.json b/src/main/resources/assets/imsm/blockstates/useradded1903.json index b820af69..4700d4f2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1903.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1903.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1903"}}} +{"variants": {"": {"model": "imsm:block/useradded1903"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1904.json b/src/main/resources/assets/imsm/blockstates/useradded1904.json index b906d9a1..3176a881 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1904.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1904.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1904"}}} +{"variants": {"": {"model": "imsm:block/useradded1904"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1905.json b/src/main/resources/assets/imsm/blockstates/useradded1905.json index c41af1c7..745cba88 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1905.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1905.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1905"}}} +{"variants": {"": {"model": "imsm:block/useradded1905"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1906.json b/src/main/resources/assets/imsm/blockstates/useradded1906.json index 8a70906f..c80f0df1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1906.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1906.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1906"}}} +{"variants": {"": {"model": "imsm:block/useradded1906"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1907.json b/src/main/resources/assets/imsm/blockstates/useradded1907.json index a9ec49b5..5a27a921 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1907.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1907.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1907"}}} +{"variants": {"": {"model": "imsm:block/useradded1907"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1908.json b/src/main/resources/assets/imsm/blockstates/useradded1908.json index 589fb23a..6c337849 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1908.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1908.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1908"}}} +{"variants": {"": {"model": "imsm:block/useradded1908"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1909.json b/src/main/resources/assets/imsm/blockstates/useradded1909.json index 3af5e327..7ffbad5c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1909.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1909.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1909"}}} +{"variants": {"": {"model": "imsm:block/useradded1909"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded191.json b/src/main/resources/assets/imsm/blockstates/useradded191.json index d39a8dbf..40e79bf4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded191.json +++ b/src/main/resources/assets/imsm/blockstates/useradded191.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded191"}}} +{"variants": {"": {"model": "imsm:block/useradded191"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1910.json b/src/main/resources/assets/imsm/blockstates/useradded1910.json index e6b024a0..c071b376 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1910.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1910.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1910"}}} +{"variants": {"": {"model": "imsm:block/useradded1910"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1911.json b/src/main/resources/assets/imsm/blockstates/useradded1911.json index 034fa504..a27681eb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1911.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1911.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1911"}}} +{"variants": {"": {"model": "imsm:block/useradded1911"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1912.json b/src/main/resources/assets/imsm/blockstates/useradded1912.json index 5c99e56f..b4b7bcea 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1912.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1912.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1912"}}} +{"variants": {"": {"model": "imsm:block/useradded1912"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1913.json b/src/main/resources/assets/imsm/blockstates/useradded1913.json index ed6d9116..bbdce9ab 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1913.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1913.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1913"}}} +{"variants": {"": {"model": "imsm:block/useradded1913"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1914.json b/src/main/resources/assets/imsm/blockstates/useradded1914.json index 705d2a75..a1f3bf40 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1914.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1914.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1914"}}} +{"variants": {"": {"model": "imsm:block/useradded1914"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1915.json b/src/main/resources/assets/imsm/blockstates/useradded1915.json index 627ffd65..4ac13e2c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1915.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1915.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1915"}}} +{"variants": {"": {"model": "imsm:block/useradded1915"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1916.json b/src/main/resources/assets/imsm/blockstates/useradded1916.json index cf212164..318554b4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1916.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1916.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1916"}}} +{"variants": {"": {"model": "imsm:block/useradded1916"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1917.json b/src/main/resources/assets/imsm/blockstates/useradded1917.json index f49e0d0a..1e472884 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1917.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1917.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1917"}}} +{"variants": {"": {"model": "imsm:block/useradded1917"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1918.json b/src/main/resources/assets/imsm/blockstates/useradded1918.json index 6709c0be..d50145d7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1918.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1918.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1918"}}} +{"variants": {"": {"model": "imsm:block/useradded1918"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1919.json b/src/main/resources/assets/imsm/blockstates/useradded1919.json index 454f6e9c..e42c9326 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1919.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1919.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1919"}}} +{"variants": {"": {"model": "imsm:block/useradded1919"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded192.json b/src/main/resources/assets/imsm/blockstates/useradded192.json index 4cdcfaf4..fd983931 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded192.json +++ b/src/main/resources/assets/imsm/blockstates/useradded192.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded192"}}} +{"variants": {"": {"model": "imsm:block/useradded192"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1920.json b/src/main/resources/assets/imsm/blockstates/useradded1920.json index f03474d8..b1d7b821 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1920.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1920.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1920"}}} +{"variants": {"": {"model": "imsm:block/useradded1920"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1921.json b/src/main/resources/assets/imsm/blockstates/useradded1921.json index 9169ec3a..a48f6e2e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1921.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1921.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1921"}}} +{"variants": {"": {"model": "imsm:block/useradded1921"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1922.json b/src/main/resources/assets/imsm/blockstates/useradded1922.json index 427926fc..3fbc639c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1922.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1922.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1922"}}} +{"variants": {"": {"model": "imsm:block/useradded1922"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1923.json b/src/main/resources/assets/imsm/blockstates/useradded1923.json index a4417892..5c383032 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1923.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1923.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1923"}}} +{"variants": {"": {"model": "imsm:block/useradded1923"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1924.json b/src/main/resources/assets/imsm/blockstates/useradded1924.json index 5c9d1c39..862f5a72 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1924.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1924.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1924"}}} +{"variants": {"": {"model": "imsm:block/useradded1924"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1925.json b/src/main/resources/assets/imsm/blockstates/useradded1925.json index 2fac5190..a57bbc12 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1925.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1925.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1925"}}} +{"variants": {"": {"model": "imsm:block/useradded1925"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1926.json b/src/main/resources/assets/imsm/blockstates/useradded1926.json index c3dcfc5e..fcda35ec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1926.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1926.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1926"}}} +{"variants": {"": {"model": "imsm:block/useradded1926"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1927.json b/src/main/resources/assets/imsm/blockstates/useradded1927.json index 5df3c988..3006fdb0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1927.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1927.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1927"}}} +{"variants": {"": {"model": "imsm:block/useradded1927"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1928.json b/src/main/resources/assets/imsm/blockstates/useradded1928.json index 6ff56989..3a4e69c3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1928.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1928.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1928"}}} +{"variants": {"": {"model": "imsm:block/useradded1928"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1929.json b/src/main/resources/assets/imsm/blockstates/useradded1929.json index c402e524..14aa8263 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1929.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1929.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1929"}}} +{"variants": {"": {"model": "imsm:block/useradded1929"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded193.json b/src/main/resources/assets/imsm/blockstates/useradded193.json index 8d1e7cca..18869cae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded193.json +++ b/src/main/resources/assets/imsm/blockstates/useradded193.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded193"}}} +{"variants": {"": {"model": "imsm:block/useradded193"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1930.json b/src/main/resources/assets/imsm/blockstates/useradded1930.json index f65c5dd2..849f5520 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1930.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1930.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1930"}}} +{"variants": {"": {"model": "imsm:block/useradded1930"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1931.json b/src/main/resources/assets/imsm/blockstates/useradded1931.json index 14f44c24..54e42a7a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1931.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1931.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1931"}}} +{"variants": {"": {"model": "imsm:block/useradded1931"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1932.json b/src/main/resources/assets/imsm/blockstates/useradded1932.json index e3385844..26aec523 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1932.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1932.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1932"}}} +{"variants": {"": {"model": "imsm:block/useradded1932"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1933.json b/src/main/resources/assets/imsm/blockstates/useradded1933.json index 2d1e8a40..99ef9c6e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1933.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1933.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1933"}}} +{"variants": {"": {"model": "imsm:block/useradded1933"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1934.json b/src/main/resources/assets/imsm/blockstates/useradded1934.json index b51f122d..bb2442b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1934.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1934.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1934"}}} +{"variants": {"": {"model": "imsm:block/useradded1934"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1935.json b/src/main/resources/assets/imsm/blockstates/useradded1935.json index 7e9fef71..d79f1f4a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1935.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1935.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1935"}}} +{"variants": {"": {"model": "imsm:block/useradded1935"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1936.json b/src/main/resources/assets/imsm/blockstates/useradded1936.json index 46aa7d50..182889ae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1936.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1936.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1936"}}} +{"variants": {"": {"model": "imsm:block/useradded1936"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1937.json b/src/main/resources/assets/imsm/blockstates/useradded1937.json index 77b0693d..fead9a2b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1937.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1937.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1937"}}} +{"variants": {"": {"model": "imsm:block/useradded1937"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1938.json b/src/main/resources/assets/imsm/blockstates/useradded1938.json index 4f8608d5..67fc53ca 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1938.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1938.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1938"}}} +{"variants": {"": {"model": "imsm:block/useradded1938"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1939.json b/src/main/resources/assets/imsm/blockstates/useradded1939.json index c3620ae7..8003393a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1939.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1939.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1939"}}} +{"variants": {"": {"model": "imsm:block/useradded1939"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded194.json b/src/main/resources/assets/imsm/blockstates/useradded194.json index 761c9bda..1494f20d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded194.json +++ b/src/main/resources/assets/imsm/blockstates/useradded194.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded194"}}} +{"variants": {"": {"model": "imsm:block/useradded194"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1940.json b/src/main/resources/assets/imsm/blockstates/useradded1940.json index f8dc56e2..bca672c4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1940.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1940.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1940"}}} +{"variants": {"": {"model": "imsm:block/useradded1940"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1941.json b/src/main/resources/assets/imsm/blockstates/useradded1941.json index a447eb63..7b8528bf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1941.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1941.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1941"}}} +{"variants": {"": {"model": "imsm:block/useradded1941"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1942.json b/src/main/resources/assets/imsm/blockstates/useradded1942.json index 3a7b0c76..d94d2729 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1942.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1942.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1942"}}} +{"variants": {"": {"model": "imsm:block/useradded1942"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1943.json b/src/main/resources/assets/imsm/blockstates/useradded1943.json index c1ad8a71..281ffdf0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1943.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1943.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1943"}}} +{"variants": {"": {"model": "imsm:block/useradded1943"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1944.json b/src/main/resources/assets/imsm/blockstates/useradded1944.json index c2f24aa8..17f9d87f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1944.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1944.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1944"}}} +{"variants": {"": {"model": "imsm:block/useradded1944"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1945.json b/src/main/resources/assets/imsm/blockstates/useradded1945.json index a76fbd4a..0124a003 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1945.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1945.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1945"}}} +{"variants": {"": {"model": "imsm:block/useradded1945"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1946.json b/src/main/resources/assets/imsm/blockstates/useradded1946.json index bacde4bc..219ee678 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1946.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1946.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1946"}}} +{"variants": {"": {"model": "imsm:block/useradded1946"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1947.json b/src/main/resources/assets/imsm/blockstates/useradded1947.json index 11e8afc9..c3d22939 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1947.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1947.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1947"}}} +{"variants": {"": {"model": "imsm:block/useradded1947"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1948.json b/src/main/resources/assets/imsm/blockstates/useradded1948.json index c50b5fbd..db9a0052 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1948.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1948.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1948"}}} +{"variants": {"": {"model": "imsm:block/useradded1948"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1949.json b/src/main/resources/assets/imsm/blockstates/useradded1949.json index 7ffb0cc6..f5995f96 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1949.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1949.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1949"}}} +{"variants": {"": {"model": "imsm:block/useradded1949"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded195.json b/src/main/resources/assets/imsm/blockstates/useradded195.json index 09be134c..211c0a9c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded195.json +++ b/src/main/resources/assets/imsm/blockstates/useradded195.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded195"}}} +{"variants": {"": {"model": "imsm:block/useradded195"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1950.json b/src/main/resources/assets/imsm/blockstates/useradded1950.json index a6e4c35a..5048d5e1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1950.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1950.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1950"}}} +{"variants": {"": {"model": "imsm:block/useradded1950"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1951.json b/src/main/resources/assets/imsm/blockstates/useradded1951.json index 4f52d854..af52eb31 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1951.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1951.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1951"}}} +{"variants": {"": {"model": "imsm:block/useradded1951"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1952.json b/src/main/resources/assets/imsm/blockstates/useradded1952.json index 69f78ef0..f0c5817b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1952.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1952.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1952"}}} +{"variants": {"": {"model": "imsm:block/useradded1952"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1953.json b/src/main/resources/assets/imsm/blockstates/useradded1953.json index f6a2a053..b9004617 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1953.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1953.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1953"}}} +{"variants": {"": {"model": "imsm:block/useradded1953"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1954.json b/src/main/resources/assets/imsm/blockstates/useradded1954.json index 100477ef..98383584 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1954.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1954.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1954"}}} +{"variants": {"": {"model": "imsm:block/useradded1954"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1955.json b/src/main/resources/assets/imsm/blockstates/useradded1955.json index 0a51479e..d59c7743 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1955.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1955.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1955"}}} +{"variants": {"": {"model": "imsm:block/useradded1955"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1956.json b/src/main/resources/assets/imsm/blockstates/useradded1956.json index df1e12b0..2e4edbaa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1956.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1956.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1956"}}} +{"variants": {"": {"model": "imsm:block/useradded1956"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1957.json b/src/main/resources/assets/imsm/blockstates/useradded1957.json index a31f047a..60b1be88 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1957.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1957.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1957"}}} +{"variants": {"": {"model": "imsm:block/useradded1957"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1958.json b/src/main/resources/assets/imsm/blockstates/useradded1958.json index 40cec46c..5a158a98 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1958.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1958.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1958"}}} +{"variants": {"": {"model": "imsm:block/useradded1958"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1959.json b/src/main/resources/assets/imsm/blockstates/useradded1959.json index d4247dc1..46839092 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1959.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1959.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1959"}}} +{"variants": {"": {"model": "imsm:block/useradded1959"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded196.json b/src/main/resources/assets/imsm/blockstates/useradded196.json index 57140869..f685cd32 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded196.json +++ b/src/main/resources/assets/imsm/blockstates/useradded196.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded196"}}} +{"variants": {"": {"model": "imsm:block/useradded196"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1960.json b/src/main/resources/assets/imsm/blockstates/useradded1960.json index 93cf5963..d5fea9be 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1960.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1960.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1960"}}} +{"variants": {"": {"model": "imsm:block/useradded1960"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1961.json b/src/main/resources/assets/imsm/blockstates/useradded1961.json index 53eddd62..3f405fb9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1961.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1961.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1961"}}} +{"variants": {"": {"model": "imsm:block/useradded1961"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1962.json b/src/main/resources/assets/imsm/blockstates/useradded1962.json index 9a843ed0..0b5c36c0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1962.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1962.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1962"}}} +{"variants": {"": {"model": "imsm:block/useradded1962"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1963.json b/src/main/resources/assets/imsm/blockstates/useradded1963.json index 3bd7ac71..e5e4c5dc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1963.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1963.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1963"}}} +{"variants": {"": {"model": "imsm:block/useradded1963"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1964.json b/src/main/resources/assets/imsm/blockstates/useradded1964.json index a42c47f5..e27c0a87 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1964.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1964.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1964"}}} +{"variants": {"": {"model": "imsm:block/useradded1964"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1965.json b/src/main/resources/assets/imsm/blockstates/useradded1965.json index 7e0f6300..2ef3b4b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1965.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1965.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1965"}}} +{"variants": {"": {"model": "imsm:block/useradded1965"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1966.json b/src/main/resources/assets/imsm/blockstates/useradded1966.json index 6819f687..73858b4e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1966.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1966.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1966"}}} +{"variants": {"": {"model": "imsm:block/useradded1966"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1967.json b/src/main/resources/assets/imsm/blockstates/useradded1967.json index c3dcd0d1..9c504488 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1967.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1967.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1967"}}} +{"variants": {"": {"model": "imsm:block/useradded1967"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1968.json b/src/main/resources/assets/imsm/blockstates/useradded1968.json index 259e81fb..1560167a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1968.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1968.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1968"}}} +{"variants": {"": {"model": "imsm:block/useradded1968"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1969.json b/src/main/resources/assets/imsm/blockstates/useradded1969.json index 0814ac16..2804733c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1969.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1969.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1969"}}} +{"variants": {"": {"model": "imsm:block/useradded1969"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded197.json b/src/main/resources/assets/imsm/blockstates/useradded197.json index bcef14ff..c0d5d424 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded197.json +++ b/src/main/resources/assets/imsm/blockstates/useradded197.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded197"}}} +{"variants": {"": {"model": "imsm:block/useradded197"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1970.json b/src/main/resources/assets/imsm/blockstates/useradded1970.json index 5d7c2668..97dd79f0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1970.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1970.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1970"}}} +{"variants": {"": {"model": "imsm:block/useradded1970"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1971.json b/src/main/resources/assets/imsm/blockstates/useradded1971.json index 3fc83be8..175ff654 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1971.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1971.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1971"}}} +{"variants": {"": {"model": "imsm:block/useradded1971"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1972.json b/src/main/resources/assets/imsm/blockstates/useradded1972.json index 409630f4..3d123034 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1972.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1972.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1972"}}} +{"variants": {"": {"model": "imsm:block/useradded1972"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1973.json b/src/main/resources/assets/imsm/blockstates/useradded1973.json index dee716fe..86635b09 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1973.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1973.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1973"}}} +{"variants": {"": {"model": "imsm:block/useradded1973"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1974.json b/src/main/resources/assets/imsm/blockstates/useradded1974.json index 74a01467..73cb0bf9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1974.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1974.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1974"}}} +{"variants": {"": {"model": "imsm:block/useradded1974"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1975.json b/src/main/resources/assets/imsm/blockstates/useradded1975.json index f9ec6951..971dba1f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1975.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1975.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1975"}}} +{"variants": {"": {"model": "imsm:block/useradded1975"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1976.json b/src/main/resources/assets/imsm/blockstates/useradded1976.json index 39742c47..ff7a5152 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1976.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1976.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1976"}}} +{"variants": {"": {"model": "imsm:block/useradded1976"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1977.json b/src/main/resources/assets/imsm/blockstates/useradded1977.json index 7c753b87..eacdbc6a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1977.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1977.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1977"}}} +{"variants": {"": {"model": "imsm:block/useradded1977"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1978.json b/src/main/resources/assets/imsm/blockstates/useradded1978.json index 35fc380c..0178158b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1978.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1978.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1978"}}} +{"variants": {"": {"model": "imsm:block/useradded1978"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1979.json b/src/main/resources/assets/imsm/blockstates/useradded1979.json index a9679a48..6d8d332e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1979.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1979.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1979"}}} +{"variants": {"": {"model": "imsm:block/useradded1979"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded198.json b/src/main/resources/assets/imsm/blockstates/useradded198.json index 6b6ed21a..995a1c39 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded198.json +++ b/src/main/resources/assets/imsm/blockstates/useradded198.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded198"}}} +{"variants": {"": {"model": "imsm:block/useradded198"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1980.json b/src/main/resources/assets/imsm/blockstates/useradded1980.json index 829751f1..e4c1e087 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1980.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1980.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1980"}}} +{"variants": {"": {"model": "imsm:block/useradded1980"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1981.json b/src/main/resources/assets/imsm/blockstates/useradded1981.json index ba21f921..2326abed 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1981.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1981.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1981"}}} +{"variants": {"": {"model": "imsm:block/useradded1981"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1982.json b/src/main/resources/assets/imsm/blockstates/useradded1982.json index 5de4406a..0c97a6b8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1982.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1982.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1982"}}} +{"variants": {"": {"model": "imsm:block/useradded1982"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1983.json b/src/main/resources/assets/imsm/blockstates/useradded1983.json index d0c1ebca..c152bd58 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1983.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1983.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1983"}}} +{"variants": {"": {"model": "imsm:block/useradded1983"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1984.json b/src/main/resources/assets/imsm/blockstates/useradded1984.json index 44f53927..e9f32e91 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1984.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1984.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1984"}}} +{"variants": {"": {"model": "imsm:block/useradded1984"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1985.json b/src/main/resources/assets/imsm/blockstates/useradded1985.json index 4f69dd7b..5989da8a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1985.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1985.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1985"}}} +{"variants": {"": {"model": "imsm:block/useradded1985"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1986.json b/src/main/resources/assets/imsm/blockstates/useradded1986.json index eb1d5d21..b39cb2cf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1986.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1986.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1986"}}} +{"variants": {"": {"model": "imsm:block/useradded1986"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1987.json b/src/main/resources/assets/imsm/blockstates/useradded1987.json index 7a7c6e5e..ebdc91f7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1987.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1987.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1987"}}} +{"variants": {"": {"model": "imsm:block/useradded1987"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1988.json b/src/main/resources/assets/imsm/blockstates/useradded1988.json index a3cb02d0..4d3d7bf2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1988.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1988.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1988"}}} +{"variants": {"": {"model": "imsm:block/useradded1988"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1989.json b/src/main/resources/assets/imsm/blockstates/useradded1989.json index 48ad927b..bc91d016 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1989.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1989.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1989"}}} +{"variants": {"": {"model": "imsm:block/useradded1989"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded199.json b/src/main/resources/assets/imsm/blockstates/useradded199.json index affdee4e..3fb86d08 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded199.json +++ b/src/main/resources/assets/imsm/blockstates/useradded199.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded199"}}} +{"variants": {"": {"model": "imsm:block/useradded199"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1990.json b/src/main/resources/assets/imsm/blockstates/useradded1990.json index 5d5ce6d9..ada2ef3c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1990.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1990.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1990"}}} +{"variants": {"": {"model": "imsm:block/useradded1990"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1991.json b/src/main/resources/assets/imsm/blockstates/useradded1991.json index f610e6b3..7f948d11 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1991.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1991.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1991"}}} +{"variants": {"": {"model": "imsm:block/useradded1991"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1992.json b/src/main/resources/assets/imsm/blockstates/useradded1992.json index 84eeed33..a618fc9c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1992.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1992.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1992"}}} +{"variants": {"": {"model": "imsm:block/useradded1992"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1993.json b/src/main/resources/assets/imsm/blockstates/useradded1993.json index f3de14bc..7d495d2b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1993.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1993.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1993"}}} +{"variants": {"": {"model": "imsm:block/useradded1993"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1994.json b/src/main/resources/assets/imsm/blockstates/useradded1994.json index efa0b01a..db22d7f6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1994.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1994.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1994"}}} +{"variants": {"": {"model": "imsm:block/useradded1994"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1995.json b/src/main/resources/assets/imsm/blockstates/useradded1995.json index 5ce9b8a8..40bcdc24 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1995.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1995.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1995"}}} +{"variants": {"": {"model": "imsm:block/useradded1995"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1996.json b/src/main/resources/assets/imsm/blockstates/useradded1996.json index ab6c6ec0..0f93be90 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1996.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1996.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1996"}}} +{"variants": {"": {"model": "imsm:block/useradded1996"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1997.json b/src/main/resources/assets/imsm/blockstates/useradded1997.json index 99907b25..e08fb052 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1997.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1997.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1997"}}} +{"variants": {"": {"model": "imsm:block/useradded1997"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1998.json b/src/main/resources/assets/imsm/blockstates/useradded1998.json index 64ed6d0e..905b4b97 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1998.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1998.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1998"}}} +{"variants": {"": {"model": "imsm:block/useradded1998"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded1999.json b/src/main/resources/assets/imsm/blockstates/useradded1999.json index 98a75e5c..b8c0f5de 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded1999.json +++ b/src/main/resources/assets/imsm/blockstates/useradded1999.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded1999"}}} +{"variants": {"": {"model": "imsm:block/useradded1999"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded2.json b/src/main/resources/assets/imsm/blockstates/useradded2.json index 0cb2bd63..fd850386 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded2.json +++ b/src/main/resources/assets/imsm/blockstates/useradded2.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded2"}}} +{"variants": {"": {"model": "imsm:block/useradded2"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded20.json b/src/main/resources/assets/imsm/blockstates/useradded20.json index 8442caa3..2014d408 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded20.json +++ b/src/main/resources/assets/imsm/blockstates/useradded20.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded20"}}} +{"variants": {"": {"model": "imsm:block/useradded20"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded200.json b/src/main/resources/assets/imsm/blockstates/useradded200.json index 91f077fc..55d63756 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded200.json +++ b/src/main/resources/assets/imsm/blockstates/useradded200.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded200"}}} +{"variants": {"": {"model": "imsm:block/useradded200"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded2000.json b/src/main/resources/assets/imsm/blockstates/useradded2000.json index c7c31e22..62395a53 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded2000.json +++ b/src/main/resources/assets/imsm/blockstates/useradded2000.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded2000"}}} +{"variants": {"": {"model": "imsm:block/useradded2000"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded201.json b/src/main/resources/assets/imsm/blockstates/useradded201.json index 814516ae..dace5aed 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded201.json +++ b/src/main/resources/assets/imsm/blockstates/useradded201.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded201"}}} +{"variants": {"": {"model": "imsm:block/useradded201"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded202.json b/src/main/resources/assets/imsm/blockstates/useradded202.json index ddcb7bb8..1fec19b4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded202.json +++ b/src/main/resources/assets/imsm/blockstates/useradded202.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded202"}}} +{"variants": {"": {"model": "imsm:block/useradded202"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded203.json b/src/main/resources/assets/imsm/blockstates/useradded203.json index 07f19b1d..c36b92bd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded203.json +++ b/src/main/resources/assets/imsm/blockstates/useradded203.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded203"}}} +{"variants": {"": {"model": "imsm:block/useradded203"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded204.json b/src/main/resources/assets/imsm/blockstates/useradded204.json index 23baa1e3..77ae7c2c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded204.json +++ b/src/main/resources/assets/imsm/blockstates/useradded204.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded204"}}} +{"variants": {"": {"model": "imsm:block/useradded204"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded205.json b/src/main/resources/assets/imsm/blockstates/useradded205.json index b6a509d1..3c7b1bb5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded205.json +++ b/src/main/resources/assets/imsm/blockstates/useradded205.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded205"}}} +{"variants": {"": {"model": "imsm:block/useradded205"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded206.json b/src/main/resources/assets/imsm/blockstates/useradded206.json index 912c0775..87f29448 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded206.json +++ b/src/main/resources/assets/imsm/blockstates/useradded206.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded206"}}} +{"variants": {"": {"model": "imsm:block/useradded206"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded207.json b/src/main/resources/assets/imsm/blockstates/useradded207.json index 09b606e7..43ad99dd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded207.json +++ b/src/main/resources/assets/imsm/blockstates/useradded207.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded207"}}} +{"variants": {"": {"model": "imsm:block/useradded207"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded208.json b/src/main/resources/assets/imsm/blockstates/useradded208.json index 1fff5b1c..325efd9a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded208.json +++ b/src/main/resources/assets/imsm/blockstates/useradded208.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded208"}}} +{"variants": {"": {"model": "imsm:block/useradded208"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded209.json b/src/main/resources/assets/imsm/blockstates/useradded209.json index 6fbf3abb..1c1c5084 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded209.json +++ b/src/main/resources/assets/imsm/blockstates/useradded209.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded209"}}} +{"variants": {"": {"model": "imsm:block/useradded209"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded21.json b/src/main/resources/assets/imsm/blockstates/useradded21.json index d1063e47..11bd6506 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded21.json +++ b/src/main/resources/assets/imsm/blockstates/useradded21.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded21"}}} +{"variants": {"": {"model": "imsm:block/useradded21"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded210.json b/src/main/resources/assets/imsm/blockstates/useradded210.json index cb6ab32e..c2c22161 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded210.json +++ b/src/main/resources/assets/imsm/blockstates/useradded210.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded210"}}} +{"variants": {"": {"model": "imsm:block/useradded210"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded211.json b/src/main/resources/assets/imsm/blockstates/useradded211.json index 09acc862..e29936db 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded211.json +++ b/src/main/resources/assets/imsm/blockstates/useradded211.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded211"}}} +{"variants": {"": {"model": "imsm:block/useradded211"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded212.json b/src/main/resources/assets/imsm/blockstates/useradded212.json index 97093142..9261999f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded212.json +++ b/src/main/resources/assets/imsm/blockstates/useradded212.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded212"}}} +{"variants": {"": {"model": "imsm:block/useradded212"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded213.json b/src/main/resources/assets/imsm/blockstates/useradded213.json index 47967d7b..597c3dfc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded213.json +++ b/src/main/resources/assets/imsm/blockstates/useradded213.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded213"}}} +{"variants": {"": {"model": "imsm:block/useradded213"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded214.json b/src/main/resources/assets/imsm/blockstates/useradded214.json index 7f58bc6f..d6929747 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded214.json +++ b/src/main/resources/assets/imsm/blockstates/useradded214.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded214"}}} +{"variants": {"": {"model": "imsm:block/useradded214"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded215.json b/src/main/resources/assets/imsm/blockstates/useradded215.json index 101f406e..989b272b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded215.json +++ b/src/main/resources/assets/imsm/blockstates/useradded215.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded215"}}} +{"variants": {"": {"model": "imsm:block/useradded215"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded216.json b/src/main/resources/assets/imsm/blockstates/useradded216.json index 40ddebe8..5d20dc8f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded216.json +++ b/src/main/resources/assets/imsm/blockstates/useradded216.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded216"}}} +{"variants": {"": {"model": "imsm:block/useradded216"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded217.json b/src/main/resources/assets/imsm/blockstates/useradded217.json index a93c22f9..f0c9dc9d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded217.json +++ b/src/main/resources/assets/imsm/blockstates/useradded217.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded217"}}} +{"variants": {"": {"model": "imsm:block/useradded217"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded218.json b/src/main/resources/assets/imsm/blockstates/useradded218.json index 0ab07ffd..fd724c5a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded218.json +++ b/src/main/resources/assets/imsm/blockstates/useradded218.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded218"}}} +{"variants": {"": {"model": "imsm:block/useradded218"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded219.json b/src/main/resources/assets/imsm/blockstates/useradded219.json index 84a04b0d..7732781c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded219.json +++ b/src/main/resources/assets/imsm/blockstates/useradded219.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded219"}}} +{"variants": {"": {"model": "imsm:block/useradded219"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded22.json b/src/main/resources/assets/imsm/blockstates/useradded22.json index 2361160f..1eea7085 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded22.json +++ b/src/main/resources/assets/imsm/blockstates/useradded22.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded22"}}} +{"variants": {"": {"model": "imsm:block/useradded22"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded220.json b/src/main/resources/assets/imsm/blockstates/useradded220.json index 64bb5e41..20781c50 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded220.json +++ b/src/main/resources/assets/imsm/blockstates/useradded220.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded220"}}} +{"variants": {"": {"model": "imsm:block/useradded220"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded221.json b/src/main/resources/assets/imsm/blockstates/useradded221.json index 458b4607..001b34d0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded221.json +++ b/src/main/resources/assets/imsm/blockstates/useradded221.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded221"}}} +{"variants": {"": {"model": "imsm:block/useradded221"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded222.json b/src/main/resources/assets/imsm/blockstates/useradded222.json index a08051f3..1ee04491 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded222.json +++ b/src/main/resources/assets/imsm/blockstates/useradded222.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded222"}}} +{"variants": {"": {"model": "imsm:block/useradded222"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded223.json b/src/main/resources/assets/imsm/blockstates/useradded223.json index 434fa8ab..9f8b7a73 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded223.json +++ b/src/main/resources/assets/imsm/blockstates/useradded223.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded223"}}} +{"variants": {"": {"model": "imsm:block/useradded223"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded224.json b/src/main/resources/assets/imsm/blockstates/useradded224.json index 77bb7ef9..57cd446c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded224.json +++ b/src/main/resources/assets/imsm/blockstates/useradded224.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded224"}}} +{"variants": {"": {"model": "imsm:block/useradded224"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded225.json b/src/main/resources/assets/imsm/blockstates/useradded225.json index d42abe5e..ee48ae2b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded225.json +++ b/src/main/resources/assets/imsm/blockstates/useradded225.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded225"}}} +{"variants": {"": {"model": "imsm:block/useradded225"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded226.json b/src/main/resources/assets/imsm/blockstates/useradded226.json index 6a734215..468f750a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded226.json +++ b/src/main/resources/assets/imsm/blockstates/useradded226.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded226"}}} +{"variants": {"": {"model": "imsm:block/useradded226"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded227.json b/src/main/resources/assets/imsm/blockstates/useradded227.json index 0ddc59e0..71e1e656 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded227.json +++ b/src/main/resources/assets/imsm/blockstates/useradded227.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded227"}}} +{"variants": {"": {"model": "imsm:block/useradded227"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded228.json b/src/main/resources/assets/imsm/blockstates/useradded228.json index 2532f560..cfdfbdae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded228.json +++ b/src/main/resources/assets/imsm/blockstates/useradded228.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded228"}}} +{"variants": {"": {"model": "imsm:block/useradded228"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded229.json b/src/main/resources/assets/imsm/blockstates/useradded229.json index da3149eb..d8890946 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded229.json +++ b/src/main/resources/assets/imsm/blockstates/useradded229.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded229"}}} +{"variants": {"": {"model": "imsm:block/useradded229"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded23.json b/src/main/resources/assets/imsm/blockstates/useradded23.json index a35da587..ebe19e6e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded23.json +++ b/src/main/resources/assets/imsm/blockstates/useradded23.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded23"}}} +{"variants": {"": {"model": "imsm:block/useradded23"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded230.json b/src/main/resources/assets/imsm/blockstates/useradded230.json index 79183049..84eeb04c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded230.json +++ b/src/main/resources/assets/imsm/blockstates/useradded230.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded230"}}} +{"variants": {"": {"model": "imsm:block/useradded230"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded231.json b/src/main/resources/assets/imsm/blockstates/useradded231.json index dec6fc6e..8de59818 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded231.json +++ b/src/main/resources/assets/imsm/blockstates/useradded231.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded231"}}} +{"variants": {"": {"model": "imsm:block/useradded231"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded232.json b/src/main/resources/assets/imsm/blockstates/useradded232.json index a8550ca8..619d7ed6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded232.json +++ b/src/main/resources/assets/imsm/blockstates/useradded232.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded232"}}} +{"variants": {"": {"model": "imsm:block/useradded232"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded233.json b/src/main/resources/assets/imsm/blockstates/useradded233.json index 1df798a8..4354f452 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded233.json +++ b/src/main/resources/assets/imsm/blockstates/useradded233.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded233"}}} +{"variants": {"": {"model": "imsm:block/useradded233"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded234.json b/src/main/resources/assets/imsm/blockstates/useradded234.json index b6c2491a..57af815b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded234.json +++ b/src/main/resources/assets/imsm/blockstates/useradded234.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded234"}}} +{"variants": {"": {"model": "imsm:block/useradded234"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded235.json b/src/main/resources/assets/imsm/blockstates/useradded235.json index 959e5ef8..39dac9d5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded235.json +++ b/src/main/resources/assets/imsm/blockstates/useradded235.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded235"}}} +{"variants": {"": {"model": "imsm:block/useradded235"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded236.json b/src/main/resources/assets/imsm/blockstates/useradded236.json index 9f8f411e..1b3d07e3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded236.json +++ b/src/main/resources/assets/imsm/blockstates/useradded236.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded236"}}} +{"variants": {"": {"model": "imsm:block/useradded236"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded237.json b/src/main/resources/assets/imsm/blockstates/useradded237.json index e6dad4f7..f93ac58e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded237.json +++ b/src/main/resources/assets/imsm/blockstates/useradded237.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded237"}}} +{"variants": {"": {"model": "imsm:block/useradded237"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded238.json b/src/main/resources/assets/imsm/blockstates/useradded238.json index 6e2526e9..b1c56e11 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded238.json +++ b/src/main/resources/assets/imsm/blockstates/useradded238.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded238"}}} +{"variants": {"": {"model": "imsm:block/useradded238"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded239.json b/src/main/resources/assets/imsm/blockstates/useradded239.json index 3e39432a..db753e50 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded239.json +++ b/src/main/resources/assets/imsm/blockstates/useradded239.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded239"}}} +{"variants": {"": {"model": "imsm:block/useradded239"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded24.json b/src/main/resources/assets/imsm/blockstates/useradded24.json index 67149665..18c3bf24 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded24.json +++ b/src/main/resources/assets/imsm/blockstates/useradded24.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded24"}}} +{"variants": {"": {"model": "imsm:block/useradded24"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded240.json b/src/main/resources/assets/imsm/blockstates/useradded240.json index a667b01b..d53ec699 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded240.json +++ b/src/main/resources/assets/imsm/blockstates/useradded240.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded240"}}} +{"variants": {"": {"model": "imsm:block/useradded240"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded241.json b/src/main/resources/assets/imsm/blockstates/useradded241.json index 3823b21d..e75431eb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded241.json +++ b/src/main/resources/assets/imsm/blockstates/useradded241.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded241"}}} +{"variants": {"": {"model": "imsm:block/useradded241"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded242.json b/src/main/resources/assets/imsm/blockstates/useradded242.json index c8c27732..b38d458d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded242.json +++ b/src/main/resources/assets/imsm/blockstates/useradded242.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded242"}}} +{"variants": {"": {"model": "imsm:block/useradded242"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded243.json b/src/main/resources/assets/imsm/blockstates/useradded243.json index d34e1392..535d1945 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded243.json +++ b/src/main/resources/assets/imsm/blockstates/useradded243.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded243"}}} +{"variants": {"": {"model": "imsm:block/useradded243"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded244.json b/src/main/resources/assets/imsm/blockstates/useradded244.json index e5915c74..0ffb927b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded244.json +++ b/src/main/resources/assets/imsm/blockstates/useradded244.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded244"}}} +{"variants": {"": {"model": "imsm:block/useradded244"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded245.json b/src/main/resources/assets/imsm/blockstates/useradded245.json index 018f043e..c87b7285 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded245.json +++ b/src/main/resources/assets/imsm/blockstates/useradded245.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded245"}}} +{"variants": {"": {"model": "imsm:block/useradded245"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded246.json b/src/main/resources/assets/imsm/blockstates/useradded246.json index 59cbf33b..656826de 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded246.json +++ b/src/main/resources/assets/imsm/blockstates/useradded246.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded246"}}} +{"variants": {"": {"model": "imsm:block/useradded246"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded247.json b/src/main/resources/assets/imsm/blockstates/useradded247.json index caa7344b..2bfdac58 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded247.json +++ b/src/main/resources/assets/imsm/blockstates/useradded247.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded247"}}} +{"variants": {"": {"model": "imsm:block/useradded247"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded248.json b/src/main/resources/assets/imsm/blockstates/useradded248.json index 04b48dc8..d092681b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded248.json +++ b/src/main/resources/assets/imsm/blockstates/useradded248.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded248"}}} +{"variants": {"": {"model": "imsm:block/useradded248"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded249.json b/src/main/resources/assets/imsm/blockstates/useradded249.json index d5ece1eb..7ccf8db0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded249.json +++ b/src/main/resources/assets/imsm/blockstates/useradded249.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded249"}}} +{"variants": {"": {"model": "imsm:block/useradded249"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded25.json b/src/main/resources/assets/imsm/blockstates/useradded25.json index 4099fc02..7524baf3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded25.json +++ b/src/main/resources/assets/imsm/blockstates/useradded25.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded25"}}} +{"variants": {"": {"model": "imsm:block/useradded25"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded250.json b/src/main/resources/assets/imsm/blockstates/useradded250.json index 6eda1aac..5ead8249 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded250.json +++ b/src/main/resources/assets/imsm/blockstates/useradded250.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded250"}}} +{"variants": {"": {"model": "imsm:block/useradded250"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded251.json b/src/main/resources/assets/imsm/blockstates/useradded251.json index 17e7884c..cff03028 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded251.json +++ b/src/main/resources/assets/imsm/blockstates/useradded251.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded251"}}} +{"variants": {"": {"model": "imsm:block/useradded251"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded252.json b/src/main/resources/assets/imsm/blockstates/useradded252.json index 2bea6f09..e9abe97a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded252.json +++ b/src/main/resources/assets/imsm/blockstates/useradded252.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded252"}}} +{"variants": {"": {"model": "imsm:block/useradded252"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded253.json b/src/main/resources/assets/imsm/blockstates/useradded253.json index 3adab3ae..746d5440 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded253.json +++ b/src/main/resources/assets/imsm/blockstates/useradded253.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded253"}}} +{"variants": {"": {"model": "imsm:block/useradded253"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded254.json b/src/main/resources/assets/imsm/blockstates/useradded254.json index da4c8161..c2016fbb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded254.json +++ b/src/main/resources/assets/imsm/blockstates/useradded254.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded254"}}} +{"variants": {"": {"model": "imsm:block/useradded254"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded255.json b/src/main/resources/assets/imsm/blockstates/useradded255.json index 6302184a..04cf1b1e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded255.json +++ b/src/main/resources/assets/imsm/blockstates/useradded255.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded255"}}} +{"variants": {"": {"model": "imsm:block/useradded255"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded256.json b/src/main/resources/assets/imsm/blockstates/useradded256.json index c0193e32..7a303ac7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded256.json +++ b/src/main/resources/assets/imsm/blockstates/useradded256.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded256"}}} +{"variants": {"": {"model": "imsm:block/useradded256"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded257.json b/src/main/resources/assets/imsm/blockstates/useradded257.json index 984fbdd2..97395ec9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded257.json +++ b/src/main/resources/assets/imsm/blockstates/useradded257.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded257"}}} +{"variants": {"": {"model": "imsm:block/useradded257"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded258.json b/src/main/resources/assets/imsm/blockstates/useradded258.json index b99e68f0..807ba741 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded258.json +++ b/src/main/resources/assets/imsm/blockstates/useradded258.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded258"}}} +{"variants": {"": {"model": "imsm:block/useradded258"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded259.json b/src/main/resources/assets/imsm/blockstates/useradded259.json index b7549661..76bc47e2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded259.json +++ b/src/main/resources/assets/imsm/blockstates/useradded259.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded259"}}} +{"variants": {"": {"model": "imsm:block/useradded259"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded26.json b/src/main/resources/assets/imsm/blockstates/useradded26.json index e4b70ec8..f137d495 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded26.json +++ b/src/main/resources/assets/imsm/blockstates/useradded26.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded26"}}} +{"variants": {"": {"model": "imsm:block/useradded26"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded260.json b/src/main/resources/assets/imsm/blockstates/useradded260.json index 59147d00..97a0d201 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded260.json +++ b/src/main/resources/assets/imsm/blockstates/useradded260.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded260"}}} +{"variants": {"": {"model": "imsm:block/useradded260"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded261.json b/src/main/resources/assets/imsm/blockstates/useradded261.json index 16499ef6..d2b31415 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded261.json +++ b/src/main/resources/assets/imsm/blockstates/useradded261.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded261"}}} +{"variants": {"": {"model": "imsm:block/useradded261"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded262.json b/src/main/resources/assets/imsm/blockstates/useradded262.json index b881f320..ba7bd369 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded262.json +++ b/src/main/resources/assets/imsm/blockstates/useradded262.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded262"}}} +{"variants": {"": {"model": "imsm:block/useradded262"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded263.json b/src/main/resources/assets/imsm/blockstates/useradded263.json index 83e1889a..3d8c8bb2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded263.json +++ b/src/main/resources/assets/imsm/blockstates/useradded263.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded263"}}} +{"variants": {"": {"model": "imsm:block/useradded263"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded264.json b/src/main/resources/assets/imsm/blockstates/useradded264.json index 8def1368..43e2d413 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded264.json +++ b/src/main/resources/assets/imsm/blockstates/useradded264.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded264"}}} +{"variants": {"": {"model": "imsm:block/useradded264"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded265.json b/src/main/resources/assets/imsm/blockstates/useradded265.json index 9edfcedf..5e801b81 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded265.json +++ b/src/main/resources/assets/imsm/blockstates/useradded265.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded265"}}} +{"variants": {"": {"model": "imsm:block/useradded265"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded266.json b/src/main/resources/assets/imsm/blockstates/useradded266.json index 1f45a29f..17f80509 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded266.json +++ b/src/main/resources/assets/imsm/blockstates/useradded266.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded266"}}} +{"variants": {"": {"model": "imsm:block/useradded266"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded267.json b/src/main/resources/assets/imsm/blockstates/useradded267.json index 27385a31..84d2a79e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded267.json +++ b/src/main/resources/assets/imsm/blockstates/useradded267.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded267"}}} +{"variants": {"": {"model": "imsm:block/useradded267"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded268.json b/src/main/resources/assets/imsm/blockstates/useradded268.json index b506d445..c65a06ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded268.json +++ b/src/main/resources/assets/imsm/blockstates/useradded268.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded268"}}} +{"variants": {"": {"model": "imsm:block/useradded268"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded269.json b/src/main/resources/assets/imsm/blockstates/useradded269.json index 4c40d6e8..8c6e7fd2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded269.json +++ b/src/main/resources/assets/imsm/blockstates/useradded269.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded269"}}} +{"variants": {"": {"model": "imsm:block/useradded269"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded27.json b/src/main/resources/assets/imsm/blockstates/useradded27.json index 26d7a397..8ed1f3b9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded27.json +++ b/src/main/resources/assets/imsm/blockstates/useradded27.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded27"}}} +{"variants": {"": {"model": "imsm:block/useradded27"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded270.json b/src/main/resources/assets/imsm/blockstates/useradded270.json index 33ad07b1..c9c7ee0c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded270.json +++ b/src/main/resources/assets/imsm/blockstates/useradded270.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded270"}}} +{"variants": {"": {"model": "imsm:block/useradded270"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded271.json b/src/main/resources/assets/imsm/blockstates/useradded271.json index e70bc9c3..3b6da7c7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded271.json +++ b/src/main/resources/assets/imsm/blockstates/useradded271.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded271"}}} +{"variants": {"": {"model": "imsm:block/useradded271"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded272.json b/src/main/resources/assets/imsm/blockstates/useradded272.json index 4879bd63..a64c914d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded272.json +++ b/src/main/resources/assets/imsm/blockstates/useradded272.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded272"}}} +{"variants": {"": {"model": "imsm:block/useradded272"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded273.json b/src/main/resources/assets/imsm/blockstates/useradded273.json index 4cd2b51e..e7a15ff1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded273.json +++ b/src/main/resources/assets/imsm/blockstates/useradded273.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded273"}}} +{"variants": {"": {"model": "imsm:block/useradded273"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded274.json b/src/main/resources/assets/imsm/blockstates/useradded274.json index 3aa3b350..4dcdbcb3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded274.json +++ b/src/main/resources/assets/imsm/blockstates/useradded274.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded274"}}} +{"variants": {"": {"model": "imsm:block/useradded274"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded275.json b/src/main/resources/assets/imsm/blockstates/useradded275.json index 8fa18225..3cc55aba 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded275.json +++ b/src/main/resources/assets/imsm/blockstates/useradded275.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded275"}}} +{"variants": {"": {"model": "imsm:block/useradded275"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded276.json b/src/main/resources/assets/imsm/blockstates/useradded276.json index d9cf8fa4..9a446aee 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded276.json +++ b/src/main/resources/assets/imsm/blockstates/useradded276.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded276"}}} +{"variants": {"": {"model": "imsm:block/useradded276"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded277.json b/src/main/resources/assets/imsm/blockstates/useradded277.json index d87cfc68..4e8fc859 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded277.json +++ b/src/main/resources/assets/imsm/blockstates/useradded277.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded277"}}} +{"variants": {"": {"model": "imsm:block/useradded277"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded278.json b/src/main/resources/assets/imsm/blockstates/useradded278.json index 76589d8b..c77b8ba8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded278.json +++ b/src/main/resources/assets/imsm/blockstates/useradded278.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded278"}}} +{"variants": {"": {"model": "imsm:block/useradded278"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded279.json b/src/main/resources/assets/imsm/blockstates/useradded279.json index febec294..bced8829 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded279.json +++ b/src/main/resources/assets/imsm/blockstates/useradded279.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded279"}}} +{"variants": {"": {"model": "imsm:block/useradded279"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded28.json b/src/main/resources/assets/imsm/blockstates/useradded28.json index 170ed512..3c613def 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded28.json +++ b/src/main/resources/assets/imsm/blockstates/useradded28.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded28"}}} +{"variants": {"": {"model": "imsm:block/useradded28"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded280.json b/src/main/resources/assets/imsm/blockstates/useradded280.json index b06b218a..45e6bcce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded280.json +++ b/src/main/resources/assets/imsm/blockstates/useradded280.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded280"}}} +{"variants": {"": {"model": "imsm:block/useradded280"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded281.json b/src/main/resources/assets/imsm/blockstates/useradded281.json index d0f0edcd..2df8a8a2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded281.json +++ b/src/main/resources/assets/imsm/blockstates/useradded281.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded281"}}} +{"variants": {"": {"model": "imsm:block/useradded281"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded282.json b/src/main/resources/assets/imsm/blockstates/useradded282.json index 7e14ed8e..08c1b4ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded282.json +++ b/src/main/resources/assets/imsm/blockstates/useradded282.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded282"}}} +{"variants": {"": {"model": "imsm:block/useradded282"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded283.json b/src/main/resources/assets/imsm/blockstates/useradded283.json index 9df7308b..886bca75 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded283.json +++ b/src/main/resources/assets/imsm/blockstates/useradded283.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded283"}}} +{"variants": {"": {"model": "imsm:block/useradded283"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded284.json b/src/main/resources/assets/imsm/blockstates/useradded284.json index 373e8b38..08775163 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded284.json +++ b/src/main/resources/assets/imsm/blockstates/useradded284.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded284"}}} +{"variants": {"": {"model": "imsm:block/useradded284"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded285.json b/src/main/resources/assets/imsm/blockstates/useradded285.json index cd266d1f..fe10ca1e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded285.json +++ b/src/main/resources/assets/imsm/blockstates/useradded285.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded285"}}} +{"variants": {"": {"model": "imsm:block/useradded285"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded286.json b/src/main/resources/assets/imsm/blockstates/useradded286.json index 2342db08..8d109862 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded286.json +++ b/src/main/resources/assets/imsm/blockstates/useradded286.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded286"}}} +{"variants": {"": {"model": "imsm:block/useradded286"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded287.json b/src/main/resources/assets/imsm/blockstates/useradded287.json index 0a39a36a..5e77f5be 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded287.json +++ b/src/main/resources/assets/imsm/blockstates/useradded287.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded287"}}} +{"variants": {"": {"model": "imsm:block/useradded287"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded288.json b/src/main/resources/assets/imsm/blockstates/useradded288.json index 8eae965c..96ae8b64 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded288.json +++ b/src/main/resources/assets/imsm/blockstates/useradded288.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded288"}}} +{"variants": {"": {"model": "imsm:block/useradded288"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded289.json b/src/main/resources/assets/imsm/blockstates/useradded289.json index 6d6f5d38..94867b69 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded289.json +++ b/src/main/resources/assets/imsm/blockstates/useradded289.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded289"}}} +{"variants": {"": {"model": "imsm:block/useradded289"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded29.json b/src/main/resources/assets/imsm/blockstates/useradded29.json index 34fde8b5..3ca4d954 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded29.json +++ b/src/main/resources/assets/imsm/blockstates/useradded29.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded29"}}} +{"variants": {"": {"model": "imsm:block/useradded29"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded290.json b/src/main/resources/assets/imsm/blockstates/useradded290.json index e419757b..fa5849a2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded290.json +++ b/src/main/resources/assets/imsm/blockstates/useradded290.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded290"}}} +{"variants": {"": {"model": "imsm:block/useradded290"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded291.json b/src/main/resources/assets/imsm/blockstates/useradded291.json index 7492519d..d2ff06e0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded291.json +++ b/src/main/resources/assets/imsm/blockstates/useradded291.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded291"}}} +{"variants": {"": {"model": "imsm:block/useradded291"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded292.json b/src/main/resources/assets/imsm/blockstates/useradded292.json index 10d53c9f..751c7b66 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded292.json +++ b/src/main/resources/assets/imsm/blockstates/useradded292.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded292"}}} +{"variants": {"": {"model": "imsm:block/useradded292"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded293.json b/src/main/resources/assets/imsm/blockstates/useradded293.json index 546b0e5c..87d2f5e6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded293.json +++ b/src/main/resources/assets/imsm/blockstates/useradded293.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded293"}}} +{"variants": {"": {"model": "imsm:block/useradded293"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded294.json b/src/main/resources/assets/imsm/blockstates/useradded294.json index 502324e9..b2eeb8ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded294.json +++ b/src/main/resources/assets/imsm/blockstates/useradded294.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded294"}}} +{"variants": {"": {"model": "imsm:block/useradded294"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded295.json b/src/main/resources/assets/imsm/blockstates/useradded295.json index a62867ee..8000f27b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded295.json +++ b/src/main/resources/assets/imsm/blockstates/useradded295.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded295"}}} +{"variants": {"": {"model": "imsm:block/useradded295"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded296.json b/src/main/resources/assets/imsm/blockstates/useradded296.json index d69ce59f..a1b91b7c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded296.json +++ b/src/main/resources/assets/imsm/blockstates/useradded296.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded296"}}} +{"variants": {"": {"model": "imsm:block/useradded296"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded297.json b/src/main/resources/assets/imsm/blockstates/useradded297.json index 37bdd491..861bac41 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded297.json +++ b/src/main/resources/assets/imsm/blockstates/useradded297.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded297"}}} +{"variants": {"": {"model": "imsm:block/useradded297"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded298.json b/src/main/resources/assets/imsm/blockstates/useradded298.json index cd811215..836b44ae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded298.json +++ b/src/main/resources/assets/imsm/blockstates/useradded298.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded298"}}} +{"variants": {"": {"model": "imsm:block/useradded298"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded299.json b/src/main/resources/assets/imsm/blockstates/useradded299.json index cade1501..a3953fcf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded299.json +++ b/src/main/resources/assets/imsm/blockstates/useradded299.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded299"}}} +{"variants": {"": {"model": "imsm:block/useradded299"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded3.json b/src/main/resources/assets/imsm/blockstates/useradded3.json index 85b79bce..a0f0a8f8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded3.json +++ b/src/main/resources/assets/imsm/blockstates/useradded3.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded3"}}} +{"variants": {"": {"model": "imsm:block/useradded3"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded30.json b/src/main/resources/assets/imsm/blockstates/useradded30.json index a7fab6ae..ee682749 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded30.json +++ b/src/main/resources/assets/imsm/blockstates/useradded30.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded30"}}} +{"variants": {"": {"model": "imsm:block/useradded30"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded300.json b/src/main/resources/assets/imsm/blockstates/useradded300.json index 3e0d1b7d..e93007b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded300.json +++ b/src/main/resources/assets/imsm/blockstates/useradded300.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded300"}}} +{"variants": {"": {"model": "imsm:block/useradded300"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded301.json b/src/main/resources/assets/imsm/blockstates/useradded301.json index 272ede67..4b2456a8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded301.json +++ b/src/main/resources/assets/imsm/blockstates/useradded301.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded301"}}} +{"variants": {"": {"model": "imsm:block/useradded301"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded302.json b/src/main/resources/assets/imsm/blockstates/useradded302.json index b3951483..17b26739 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded302.json +++ b/src/main/resources/assets/imsm/blockstates/useradded302.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded302"}}} +{"variants": {"": {"model": "imsm:block/useradded302"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded303.json b/src/main/resources/assets/imsm/blockstates/useradded303.json index 5a43f144..52d93e6e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded303.json +++ b/src/main/resources/assets/imsm/blockstates/useradded303.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded303"}}} +{"variants": {"": {"model": "imsm:block/useradded303"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded304.json b/src/main/resources/assets/imsm/blockstates/useradded304.json index 25680444..2b2738d7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded304.json +++ b/src/main/resources/assets/imsm/blockstates/useradded304.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded304"}}} +{"variants": {"": {"model": "imsm:block/useradded304"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded305.json b/src/main/resources/assets/imsm/blockstates/useradded305.json index c9a2bd6c..7c2f65de 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded305.json +++ b/src/main/resources/assets/imsm/blockstates/useradded305.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded305"}}} +{"variants": {"": {"model": "imsm:block/useradded305"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded306.json b/src/main/resources/assets/imsm/blockstates/useradded306.json index e0f2c4b4..99364d51 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded306.json +++ b/src/main/resources/assets/imsm/blockstates/useradded306.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded306"}}} +{"variants": {"": {"model": "imsm:block/useradded306"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded307.json b/src/main/resources/assets/imsm/blockstates/useradded307.json index 1bd828b8..5be50133 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded307.json +++ b/src/main/resources/assets/imsm/blockstates/useradded307.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded307"}}} +{"variants": {"": {"model": "imsm:block/useradded307"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded308.json b/src/main/resources/assets/imsm/blockstates/useradded308.json index c6cab6c6..b8279008 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded308.json +++ b/src/main/resources/assets/imsm/blockstates/useradded308.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded308"}}} +{"variants": {"": {"model": "imsm:block/useradded308"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded309.json b/src/main/resources/assets/imsm/blockstates/useradded309.json index 014e7831..9f5a291f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded309.json +++ b/src/main/resources/assets/imsm/blockstates/useradded309.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded309"}}} +{"variants": {"": {"model": "imsm:block/useradded309"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded31.json b/src/main/resources/assets/imsm/blockstates/useradded31.json index 83cf791a..cda11663 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded31.json +++ b/src/main/resources/assets/imsm/blockstates/useradded31.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded31"}}} +{"variants": {"": {"model": "imsm:block/useradded31"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded310.json b/src/main/resources/assets/imsm/blockstates/useradded310.json index 8306167d..dff6a5a3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded310.json +++ b/src/main/resources/assets/imsm/blockstates/useradded310.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded310"}}} +{"variants": {"": {"model": "imsm:block/useradded310"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded311.json b/src/main/resources/assets/imsm/blockstates/useradded311.json index 95b7b95c..e232f7ac 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded311.json +++ b/src/main/resources/assets/imsm/blockstates/useradded311.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded311"}}} +{"variants": {"": {"model": "imsm:block/useradded311"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded312.json b/src/main/resources/assets/imsm/blockstates/useradded312.json index ce7a4021..d611252a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded312.json +++ b/src/main/resources/assets/imsm/blockstates/useradded312.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded312"}}} +{"variants": {"": {"model": "imsm:block/useradded312"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded313.json b/src/main/resources/assets/imsm/blockstates/useradded313.json index 2a0a7fa1..47eddfe4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded313.json +++ b/src/main/resources/assets/imsm/blockstates/useradded313.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded313"}}} +{"variants": {"": {"model": "imsm:block/useradded313"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded314.json b/src/main/resources/assets/imsm/blockstates/useradded314.json index 265bd0cd..3ecb58b1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded314.json +++ b/src/main/resources/assets/imsm/blockstates/useradded314.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded314"}}} +{"variants": {"": {"model": "imsm:block/useradded314"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded315.json b/src/main/resources/assets/imsm/blockstates/useradded315.json index a51dfd6d..eb3088f8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded315.json +++ b/src/main/resources/assets/imsm/blockstates/useradded315.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded315"}}} +{"variants": {"": {"model": "imsm:block/useradded315"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded316.json b/src/main/resources/assets/imsm/blockstates/useradded316.json index d3ff7fde..ec7c4cf4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded316.json +++ b/src/main/resources/assets/imsm/blockstates/useradded316.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded316"}}} +{"variants": {"": {"model": "imsm:block/useradded316"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded317.json b/src/main/resources/assets/imsm/blockstates/useradded317.json index 0831c12a..743775cf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded317.json +++ b/src/main/resources/assets/imsm/blockstates/useradded317.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded317"}}} +{"variants": {"": {"model": "imsm:block/useradded317"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded318.json b/src/main/resources/assets/imsm/blockstates/useradded318.json index 1b65dfea..4b495089 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded318.json +++ b/src/main/resources/assets/imsm/blockstates/useradded318.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded318"}}} +{"variants": {"": {"model": "imsm:block/useradded318"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded319.json b/src/main/resources/assets/imsm/blockstates/useradded319.json index ab225437..9e3d2982 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded319.json +++ b/src/main/resources/assets/imsm/blockstates/useradded319.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded319"}}} +{"variants": {"": {"model": "imsm:block/useradded319"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded32.json b/src/main/resources/assets/imsm/blockstates/useradded32.json index 428c2255..0479bbdf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded32.json +++ b/src/main/resources/assets/imsm/blockstates/useradded32.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded32"}}} +{"variants": {"": {"model": "imsm:block/useradded32"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded320.json b/src/main/resources/assets/imsm/blockstates/useradded320.json index 7ac8e062..47d333c2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded320.json +++ b/src/main/resources/assets/imsm/blockstates/useradded320.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded320"}}} +{"variants": {"": {"model": "imsm:block/useradded320"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded321.json b/src/main/resources/assets/imsm/blockstates/useradded321.json index 111d396f..511f3932 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded321.json +++ b/src/main/resources/assets/imsm/blockstates/useradded321.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded321"}}} +{"variants": {"": {"model": "imsm:block/useradded321"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded322.json b/src/main/resources/assets/imsm/blockstates/useradded322.json index e84d3974..2041c9c1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded322.json +++ b/src/main/resources/assets/imsm/blockstates/useradded322.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded322"}}} +{"variants": {"": {"model": "imsm:block/useradded322"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded323.json b/src/main/resources/assets/imsm/blockstates/useradded323.json index 7bfc2325..2c93a06e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded323.json +++ b/src/main/resources/assets/imsm/blockstates/useradded323.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded323"}}} +{"variants": {"": {"model": "imsm:block/useradded323"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded324.json b/src/main/resources/assets/imsm/blockstates/useradded324.json index a2a3754f..adbd9239 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded324.json +++ b/src/main/resources/assets/imsm/blockstates/useradded324.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded324"}}} +{"variants": {"": {"model": "imsm:block/useradded324"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded325.json b/src/main/resources/assets/imsm/blockstates/useradded325.json index f24188fb..34afd7e5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded325.json +++ b/src/main/resources/assets/imsm/blockstates/useradded325.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded325"}}} +{"variants": {"": {"model": "imsm:block/useradded325"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded326.json b/src/main/resources/assets/imsm/blockstates/useradded326.json index 7e6129da..641b1a5b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded326.json +++ b/src/main/resources/assets/imsm/blockstates/useradded326.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded326"}}} +{"variants": {"": {"model": "imsm:block/useradded326"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded327.json b/src/main/resources/assets/imsm/blockstates/useradded327.json index 56b6822a..606c3471 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded327.json +++ b/src/main/resources/assets/imsm/blockstates/useradded327.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded327"}}} +{"variants": {"": {"model": "imsm:block/useradded327"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded328.json b/src/main/resources/assets/imsm/blockstates/useradded328.json index 871336ae..2efb8a12 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded328.json +++ b/src/main/resources/assets/imsm/blockstates/useradded328.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded328"}}} +{"variants": {"": {"model": "imsm:block/useradded328"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded329.json b/src/main/resources/assets/imsm/blockstates/useradded329.json index 32c37bbb..a89a4a59 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded329.json +++ b/src/main/resources/assets/imsm/blockstates/useradded329.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded329"}}} +{"variants": {"": {"model": "imsm:block/useradded329"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded33.json b/src/main/resources/assets/imsm/blockstates/useradded33.json index effbb46e..8a8dc9a7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded33.json +++ b/src/main/resources/assets/imsm/blockstates/useradded33.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded33"}}} +{"variants": {"": {"model": "imsm:block/useradded33"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded330.json b/src/main/resources/assets/imsm/blockstates/useradded330.json index 120db536..769ce0aa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded330.json +++ b/src/main/resources/assets/imsm/blockstates/useradded330.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded330"}}} +{"variants": {"": {"model": "imsm:block/useradded330"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded331.json b/src/main/resources/assets/imsm/blockstates/useradded331.json index eedd2143..4f23e800 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded331.json +++ b/src/main/resources/assets/imsm/blockstates/useradded331.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded331"}}} +{"variants": {"": {"model": "imsm:block/useradded331"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded332.json b/src/main/resources/assets/imsm/blockstates/useradded332.json index 6ff7c77e..64330292 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded332.json +++ b/src/main/resources/assets/imsm/blockstates/useradded332.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded332"}}} +{"variants": {"": {"model": "imsm:block/useradded332"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded333.json b/src/main/resources/assets/imsm/blockstates/useradded333.json index b41fe374..8389cae6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded333.json +++ b/src/main/resources/assets/imsm/blockstates/useradded333.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded333"}}} +{"variants": {"": {"model": "imsm:block/useradded333"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded334.json b/src/main/resources/assets/imsm/blockstates/useradded334.json index a580fd57..6313838d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded334.json +++ b/src/main/resources/assets/imsm/blockstates/useradded334.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded334"}}} +{"variants": {"": {"model": "imsm:block/useradded334"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded335.json b/src/main/resources/assets/imsm/blockstates/useradded335.json index af52a39b..46f0e6cd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded335.json +++ b/src/main/resources/assets/imsm/blockstates/useradded335.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded335"}}} +{"variants": {"": {"model": "imsm:block/useradded335"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded336.json b/src/main/resources/assets/imsm/blockstates/useradded336.json index d676a5e2..b784105b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded336.json +++ b/src/main/resources/assets/imsm/blockstates/useradded336.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded336"}}} +{"variants": {"": {"model": "imsm:block/useradded336"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded337.json b/src/main/resources/assets/imsm/blockstates/useradded337.json index 90ad8a6d..7e5ca06f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded337.json +++ b/src/main/resources/assets/imsm/blockstates/useradded337.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded337"}}} +{"variants": {"": {"model": "imsm:block/useradded337"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded338.json b/src/main/resources/assets/imsm/blockstates/useradded338.json index 16798802..2c2984d4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded338.json +++ b/src/main/resources/assets/imsm/blockstates/useradded338.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded338"}}} +{"variants": {"": {"model": "imsm:block/useradded338"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded339.json b/src/main/resources/assets/imsm/blockstates/useradded339.json index bdacea5e..baf54bc7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded339.json +++ b/src/main/resources/assets/imsm/blockstates/useradded339.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded339"}}} +{"variants": {"": {"model": "imsm:block/useradded339"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded34.json b/src/main/resources/assets/imsm/blockstates/useradded34.json index aaf416a5..6da47e1b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded34.json +++ b/src/main/resources/assets/imsm/blockstates/useradded34.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded34"}}} +{"variants": {"": {"model": "imsm:block/useradded34"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded340.json b/src/main/resources/assets/imsm/blockstates/useradded340.json index c9da9169..fe740630 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded340.json +++ b/src/main/resources/assets/imsm/blockstates/useradded340.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded340"}}} +{"variants": {"": {"model": "imsm:block/useradded340"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded341.json b/src/main/resources/assets/imsm/blockstates/useradded341.json index 1cb1b1b5..8ac9b329 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded341.json +++ b/src/main/resources/assets/imsm/blockstates/useradded341.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded341"}}} +{"variants": {"": {"model": "imsm:block/useradded341"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded342.json b/src/main/resources/assets/imsm/blockstates/useradded342.json index 759738d5..1acdf8e9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded342.json +++ b/src/main/resources/assets/imsm/blockstates/useradded342.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded342"}}} +{"variants": {"": {"model": "imsm:block/useradded342"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded343.json b/src/main/resources/assets/imsm/blockstates/useradded343.json index 13e97dd9..6f0fc458 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded343.json +++ b/src/main/resources/assets/imsm/blockstates/useradded343.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded343"}}} +{"variants": {"": {"model": "imsm:block/useradded343"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded344.json b/src/main/resources/assets/imsm/blockstates/useradded344.json index 34e42104..f928033e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded344.json +++ b/src/main/resources/assets/imsm/blockstates/useradded344.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded344"}}} +{"variants": {"": {"model": "imsm:block/useradded344"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded345.json b/src/main/resources/assets/imsm/blockstates/useradded345.json index 02463931..4f400f19 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded345.json +++ b/src/main/resources/assets/imsm/blockstates/useradded345.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded345"}}} +{"variants": {"": {"model": "imsm:block/useradded345"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded346.json b/src/main/resources/assets/imsm/blockstates/useradded346.json index f3572c6b..acb283f1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded346.json +++ b/src/main/resources/assets/imsm/blockstates/useradded346.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded346"}}} +{"variants": {"": {"model": "imsm:block/useradded346"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded347.json b/src/main/resources/assets/imsm/blockstates/useradded347.json index 59864445..abfa5c1a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded347.json +++ b/src/main/resources/assets/imsm/blockstates/useradded347.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded347"}}} +{"variants": {"": {"model": "imsm:block/useradded347"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded348.json b/src/main/resources/assets/imsm/blockstates/useradded348.json index 284a2bd0..529ea901 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded348.json +++ b/src/main/resources/assets/imsm/blockstates/useradded348.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded348"}}} +{"variants": {"": {"model": "imsm:block/useradded348"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded349.json b/src/main/resources/assets/imsm/blockstates/useradded349.json index 4463a7e5..dc25afe3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded349.json +++ b/src/main/resources/assets/imsm/blockstates/useradded349.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded349"}}} +{"variants": {"": {"model": "imsm:block/useradded349"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded35.json b/src/main/resources/assets/imsm/blockstates/useradded35.json index 738e8ce3..5c476b4d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded35.json +++ b/src/main/resources/assets/imsm/blockstates/useradded35.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded35"}}} +{"variants": {"": {"model": "imsm:block/useradded35"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded350.json b/src/main/resources/assets/imsm/blockstates/useradded350.json index 7c1de102..4a1027f0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded350.json +++ b/src/main/resources/assets/imsm/blockstates/useradded350.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded350"}}} +{"variants": {"": {"model": "imsm:block/useradded350"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded351.json b/src/main/resources/assets/imsm/blockstates/useradded351.json index deb07019..4c325513 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded351.json +++ b/src/main/resources/assets/imsm/blockstates/useradded351.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded351"}}} +{"variants": {"": {"model": "imsm:block/useradded351"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded352.json b/src/main/resources/assets/imsm/blockstates/useradded352.json index f84e3c65..9b925bb0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded352.json +++ b/src/main/resources/assets/imsm/blockstates/useradded352.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded352"}}} +{"variants": {"": {"model": "imsm:block/useradded352"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded353.json b/src/main/resources/assets/imsm/blockstates/useradded353.json index 6583d707..cedcf168 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded353.json +++ b/src/main/resources/assets/imsm/blockstates/useradded353.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded353"}}} +{"variants": {"": {"model": "imsm:block/useradded353"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded354.json b/src/main/resources/assets/imsm/blockstates/useradded354.json index f19e34c0..0c8a91c3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded354.json +++ b/src/main/resources/assets/imsm/blockstates/useradded354.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded354"}}} +{"variants": {"": {"model": "imsm:block/useradded354"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded355.json b/src/main/resources/assets/imsm/blockstates/useradded355.json index f85b4d26..858c6b0d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded355.json +++ b/src/main/resources/assets/imsm/blockstates/useradded355.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded355"}}} +{"variants": {"": {"model": "imsm:block/useradded355"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded356.json b/src/main/resources/assets/imsm/blockstates/useradded356.json index 873d57b0..8c111235 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded356.json +++ b/src/main/resources/assets/imsm/blockstates/useradded356.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded356"}}} +{"variants": {"": {"model": "imsm:block/useradded356"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded357.json b/src/main/resources/assets/imsm/blockstates/useradded357.json index 334470ab..b4c6731f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded357.json +++ b/src/main/resources/assets/imsm/blockstates/useradded357.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded357"}}} +{"variants": {"": {"model": "imsm:block/useradded357"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded358.json b/src/main/resources/assets/imsm/blockstates/useradded358.json index 8744a4d8..d08e26f4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded358.json +++ b/src/main/resources/assets/imsm/blockstates/useradded358.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded358"}}} +{"variants": {"": {"model": "imsm:block/useradded358"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded359.json b/src/main/resources/assets/imsm/blockstates/useradded359.json index 72225c94..515a335f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded359.json +++ b/src/main/resources/assets/imsm/blockstates/useradded359.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded359"}}} +{"variants": {"": {"model": "imsm:block/useradded359"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded36.json b/src/main/resources/assets/imsm/blockstates/useradded36.json index 53887209..0c4b7eeb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded36.json +++ b/src/main/resources/assets/imsm/blockstates/useradded36.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded36"}}} +{"variants": {"": {"model": "imsm:block/useradded36"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded360.json b/src/main/resources/assets/imsm/blockstates/useradded360.json index 465945c2..64332f2e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded360.json +++ b/src/main/resources/assets/imsm/blockstates/useradded360.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded360"}}} +{"variants": {"": {"model": "imsm:block/useradded360"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded361.json b/src/main/resources/assets/imsm/blockstates/useradded361.json index e895278b..a1770ed7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded361.json +++ b/src/main/resources/assets/imsm/blockstates/useradded361.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded361"}}} +{"variants": {"": {"model": "imsm:block/useradded361"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded362.json b/src/main/resources/assets/imsm/blockstates/useradded362.json index ec1a6461..dc5d1209 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded362.json +++ b/src/main/resources/assets/imsm/blockstates/useradded362.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded362"}}} +{"variants": {"": {"model": "imsm:block/useradded362"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded363.json b/src/main/resources/assets/imsm/blockstates/useradded363.json index bd171ec9..a3e24dc5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded363.json +++ b/src/main/resources/assets/imsm/blockstates/useradded363.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded363"}}} +{"variants": {"": {"model": "imsm:block/useradded363"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded364.json b/src/main/resources/assets/imsm/blockstates/useradded364.json index 134b5794..149ec710 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded364.json +++ b/src/main/resources/assets/imsm/blockstates/useradded364.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded364"}}} +{"variants": {"": {"model": "imsm:block/useradded364"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded365.json b/src/main/resources/assets/imsm/blockstates/useradded365.json index 3a276c21..63b3a060 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded365.json +++ b/src/main/resources/assets/imsm/blockstates/useradded365.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded365"}}} +{"variants": {"": {"model": "imsm:block/useradded365"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded366.json b/src/main/resources/assets/imsm/blockstates/useradded366.json index 2ba500f6..4ae00b6c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded366.json +++ b/src/main/resources/assets/imsm/blockstates/useradded366.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded366"}}} +{"variants": {"": {"model": "imsm:block/useradded366"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded367.json b/src/main/resources/assets/imsm/blockstates/useradded367.json index 27266744..f4ed533e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded367.json +++ b/src/main/resources/assets/imsm/blockstates/useradded367.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded367"}}} +{"variants": {"": {"model": "imsm:block/useradded367"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded368.json b/src/main/resources/assets/imsm/blockstates/useradded368.json index 018e69c8..11ce6103 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded368.json +++ b/src/main/resources/assets/imsm/blockstates/useradded368.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded368"}}} +{"variants": {"": {"model": "imsm:block/useradded368"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded369.json b/src/main/resources/assets/imsm/blockstates/useradded369.json index 2f7692ea..aa24aed8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded369.json +++ b/src/main/resources/assets/imsm/blockstates/useradded369.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded369"}}} +{"variants": {"": {"model": "imsm:block/useradded369"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded37.json b/src/main/resources/assets/imsm/blockstates/useradded37.json index 4a5c5c99..7133fd73 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded37.json +++ b/src/main/resources/assets/imsm/blockstates/useradded37.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded37"}}} +{"variants": {"": {"model": "imsm:block/useradded37"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded370.json b/src/main/resources/assets/imsm/blockstates/useradded370.json index 3a075407..34d35dd2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded370.json +++ b/src/main/resources/assets/imsm/blockstates/useradded370.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded370"}}} +{"variants": {"": {"model": "imsm:block/useradded370"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded371.json b/src/main/resources/assets/imsm/blockstates/useradded371.json index 2e701adc..ce0623df 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded371.json +++ b/src/main/resources/assets/imsm/blockstates/useradded371.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded371"}}} +{"variants": {"": {"model": "imsm:block/useradded371"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded372.json b/src/main/resources/assets/imsm/blockstates/useradded372.json index d00a4f4a..96c11231 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded372.json +++ b/src/main/resources/assets/imsm/blockstates/useradded372.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded372"}}} +{"variants": {"": {"model": "imsm:block/useradded372"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded373.json b/src/main/resources/assets/imsm/blockstates/useradded373.json index e1ef1a8e..1c118a1c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded373.json +++ b/src/main/resources/assets/imsm/blockstates/useradded373.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded373"}}} +{"variants": {"": {"model": "imsm:block/useradded373"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded374.json b/src/main/resources/assets/imsm/blockstates/useradded374.json index a3dd9972..320b7ffc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded374.json +++ b/src/main/resources/assets/imsm/blockstates/useradded374.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded374"}}} +{"variants": {"": {"model": "imsm:block/useradded374"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded375.json b/src/main/resources/assets/imsm/blockstates/useradded375.json index e736d976..f92f0ce4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded375.json +++ b/src/main/resources/assets/imsm/blockstates/useradded375.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded375"}}} +{"variants": {"": {"model": "imsm:block/useradded375"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded376.json b/src/main/resources/assets/imsm/blockstates/useradded376.json index 10f9b770..b30e4ec9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded376.json +++ b/src/main/resources/assets/imsm/blockstates/useradded376.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded376"}}} +{"variants": {"": {"model": "imsm:block/useradded376"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded377.json b/src/main/resources/assets/imsm/blockstates/useradded377.json index 1c7030ed..151f164c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded377.json +++ b/src/main/resources/assets/imsm/blockstates/useradded377.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded377"}}} +{"variants": {"": {"model": "imsm:block/useradded377"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded378.json b/src/main/resources/assets/imsm/blockstates/useradded378.json index 4a6390c8..6fb84ca6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded378.json +++ b/src/main/resources/assets/imsm/blockstates/useradded378.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded378"}}} +{"variants": {"": {"model": "imsm:block/useradded378"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded379.json b/src/main/resources/assets/imsm/blockstates/useradded379.json index 413f0680..75135e78 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded379.json +++ b/src/main/resources/assets/imsm/blockstates/useradded379.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded379"}}} +{"variants": {"": {"model": "imsm:block/useradded379"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded38.json b/src/main/resources/assets/imsm/blockstates/useradded38.json index aec4614d..0d16ce23 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded38.json +++ b/src/main/resources/assets/imsm/blockstates/useradded38.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded38"}}} +{"variants": {"": {"model": "imsm:block/useradded38"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded380.json b/src/main/resources/assets/imsm/blockstates/useradded380.json index 0b19979e..6a2b9cdb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded380.json +++ b/src/main/resources/assets/imsm/blockstates/useradded380.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded380"}}} +{"variants": {"": {"model": "imsm:block/useradded380"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded381.json b/src/main/resources/assets/imsm/blockstates/useradded381.json index 602885e8..30e73cf6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded381.json +++ b/src/main/resources/assets/imsm/blockstates/useradded381.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded381"}}} +{"variants": {"": {"model": "imsm:block/useradded381"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded382.json b/src/main/resources/assets/imsm/blockstates/useradded382.json index 5dd82779..3d810de0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded382.json +++ b/src/main/resources/assets/imsm/blockstates/useradded382.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded382"}}} +{"variants": {"": {"model": "imsm:block/useradded382"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded383.json b/src/main/resources/assets/imsm/blockstates/useradded383.json index 22952d88..0ddd85b3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded383.json +++ b/src/main/resources/assets/imsm/blockstates/useradded383.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded383"}}} +{"variants": {"": {"model": "imsm:block/useradded383"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded384.json b/src/main/resources/assets/imsm/blockstates/useradded384.json index c1e0f329..85aad9ea 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded384.json +++ b/src/main/resources/assets/imsm/blockstates/useradded384.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded384"}}} +{"variants": {"": {"model": "imsm:block/useradded384"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded385.json b/src/main/resources/assets/imsm/blockstates/useradded385.json index d148830f..572f1223 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded385.json +++ b/src/main/resources/assets/imsm/blockstates/useradded385.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded385"}}} +{"variants": {"": {"model": "imsm:block/useradded385"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded386.json b/src/main/resources/assets/imsm/blockstates/useradded386.json index 5b8e6f53..3a9db37a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded386.json +++ b/src/main/resources/assets/imsm/blockstates/useradded386.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded386"}}} +{"variants": {"": {"model": "imsm:block/useradded386"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded387.json b/src/main/resources/assets/imsm/blockstates/useradded387.json index d5e7f746..130ca376 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded387.json +++ b/src/main/resources/assets/imsm/blockstates/useradded387.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded387"}}} +{"variants": {"": {"model": "imsm:block/useradded387"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded388.json b/src/main/resources/assets/imsm/blockstates/useradded388.json index 2d9a6ef9..b6a7c65e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded388.json +++ b/src/main/resources/assets/imsm/blockstates/useradded388.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded388"}}} +{"variants": {"": {"model": "imsm:block/useradded388"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded389.json b/src/main/resources/assets/imsm/blockstates/useradded389.json index 450b92c6..2f12cffb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded389.json +++ b/src/main/resources/assets/imsm/blockstates/useradded389.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded389"}}} +{"variants": {"": {"model": "imsm:block/useradded389"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded39.json b/src/main/resources/assets/imsm/blockstates/useradded39.json index c9e6c7f7..9134aead 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded39.json +++ b/src/main/resources/assets/imsm/blockstates/useradded39.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded39"}}} +{"variants": {"": {"model": "imsm:block/useradded39"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded390.json b/src/main/resources/assets/imsm/blockstates/useradded390.json index 7bef1edd..180963a4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded390.json +++ b/src/main/resources/assets/imsm/blockstates/useradded390.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded390"}}} +{"variants": {"": {"model": "imsm:block/useradded390"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded391.json b/src/main/resources/assets/imsm/blockstates/useradded391.json index 2ae8c90e..43354112 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded391.json +++ b/src/main/resources/assets/imsm/blockstates/useradded391.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded391"}}} +{"variants": {"": {"model": "imsm:block/useradded391"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded392.json b/src/main/resources/assets/imsm/blockstates/useradded392.json index 72dc2dd9..7ed1edf0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded392.json +++ b/src/main/resources/assets/imsm/blockstates/useradded392.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded392"}}} +{"variants": {"": {"model": "imsm:block/useradded392"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded393.json b/src/main/resources/assets/imsm/blockstates/useradded393.json index 9b86977a..267bad2c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded393.json +++ b/src/main/resources/assets/imsm/blockstates/useradded393.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded393"}}} +{"variants": {"": {"model": "imsm:block/useradded393"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded394.json b/src/main/resources/assets/imsm/blockstates/useradded394.json index 4c2090d8..fc204392 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded394.json +++ b/src/main/resources/assets/imsm/blockstates/useradded394.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded394"}}} +{"variants": {"": {"model": "imsm:block/useradded394"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded395.json b/src/main/resources/assets/imsm/blockstates/useradded395.json index 83604a24..dd53c467 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded395.json +++ b/src/main/resources/assets/imsm/blockstates/useradded395.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded395"}}} +{"variants": {"": {"model": "imsm:block/useradded395"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded396.json b/src/main/resources/assets/imsm/blockstates/useradded396.json index 258d8058..80beb782 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded396.json +++ b/src/main/resources/assets/imsm/blockstates/useradded396.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded396"}}} +{"variants": {"": {"model": "imsm:block/useradded396"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded397.json b/src/main/resources/assets/imsm/blockstates/useradded397.json index 7f3c3619..3d07a6e0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded397.json +++ b/src/main/resources/assets/imsm/blockstates/useradded397.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded397"}}} +{"variants": {"": {"model": "imsm:block/useradded397"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded398.json b/src/main/resources/assets/imsm/blockstates/useradded398.json index b7e64c3e..126315bc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded398.json +++ b/src/main/resources/assets/imsm/blockstates/useradded398.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded398"}}} +{"variants": {"": {"model": "imsm:block/useradded398"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded399.json b/src/main/resources/assets/imsm/blockstates/useradded399.json index 01ac835c..e37ca4bc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded399.json +++ b/src/main/resources/assets/imsm/blockstates/useradded399.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded399"}}} +{"variants": {"": {"model": "imsm:block/useradded399"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded4.json b/src/main/resources/assets/imsm/blockstates/useradded4.json index 9d5ff9f7..558f0437 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded4.json +++ b/src/main/resources/assets/imsm/blockstates/useradded4.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded4"}}} +{"variants": {"": {"model": "imsm:block/useradded4"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded40.json b/src/main/resources/assets/imsm/blockstates/useradded40.json index 987ff2c3..f4f34a49 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded40.json +++ b/src/main/resources/assets/imsm/blockstates/useradded40.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded40"}}} +{"variants": {"": {"model": "imsm:block/useradded40"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded400.json b/src/main/resources/assets/imsm/blockstates/useradded400.json index f0784003..df21ca5c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded400.json +++ b/src/main/resources/assets/imsm/blockstates/useradded400.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded400"}}} +{"variants": {"": {"model": "imsm:block/useradded400"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded401.json b/src/main/resources/assets/imsm/blockstates/useradded401.json index 2f94df58..fd279262 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded401.json +++ b/src/main/resources/assets/imsm/blockstates/useradded401.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded401"}}} +{"variants": {"": {"model": "imsm:block/useradded401"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded402.json b/src/main/resources/assets/imsm/blockstates/useradded402.json index c5144d89..6273a517 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded402.json +++ b/src/main/resources/assets/imsm/blockstates/useradded402.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded402"}}} +{"variants": {"": {"model": "imsm:block/useradded402"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded403.json b/src/main/resources/assets/imsm/blockstates/useradded403.json index 8d6d31b9..746b6175 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded403.json +++ b/src/main/resources/assets/imsm/blockstates/useradded403.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded403"}}} +{"variants": {"": {"model": "imsm:block/useradded403"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded404.json b/src/main/resources/assets/imsm/blockstates/useradded404.json index 7e853dc3..1134e47c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded404.json +++ b/src/main/resources/assets/imsm/blockstates/useradded404.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded404"}}} +{"variants": {"": {"model": "imsm:block/useradded404"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded405.json b/src/main/resources/assets/imsm/blockstates/useradded405.json index ac7525f6..74f9e091 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded405.json +++ b/src/main/resources/assets/imsm/blockstates/useradded405.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded405"}}} +{"variants": {"": {"model": "imsm:block/useradded405"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded406.json b/src/main/resources/assets/imsm/blockstates/useradded406.json index 7b9c82c3..0ae9a9dc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded406.json +++ b/src/main/resources/assets/imsm/blockstates/useradded406.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded406"}}} +{"variants": {"": {"model": "imsm:block/useradded406"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded407.json b/src/main/resources/assets/imsm/blockstates/useradded407.json index 8db2e690..47fa59c8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded407.json +++ b/src/main/resources/assets/imsm/blockstates/useradded407.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded407"}}} +{"variants": {"": {"model": "imsm:block/useradded407"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded408.json b/src/main/resources/assets/imsm/blockstates/useradded408.json index a9f99044..a9d564ea 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded408.json +++ b/src/main/resources/assets/imsm/blockstates/useradded408.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded408"}}} +{"variants": {"": {"model": "imsm:block/useradded408"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded409.json b/src/main/resources/assets/imsm/blockstates/useradded409.json index 73d2a2d1..b9149d0e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded409.json +++ b/src/main/resources/assets/imsm/blockstates/useradded409.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded409"}}} +{"variants": {"": {"model": "imsm:block/useradded409"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded41.json b/src/main/resources/assets/imsm/blockstates/useradded41.json index 5fab0355..22936546 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded41.json +++ b/src/main/resources/assets/imsm/blockstates/useradded41.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded41"}}} +{"variants": {"": {"model": "imsm:block/useradded41"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded410.json b/src/main/resources/assets/imsm/blockstates/useradded410.json index 75686764..1014390a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded410.json +++ b/src/main/resources/assets/imsm/blockstates/useradded410.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded410"}}} +{"variants": {"": {"model": "imsm:block/useradded410"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded411.json b/src/main/resources/assets/imsm/blockstates/useradded411.json index 332a9b13..52c7bca4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded411.json +++ b/src/main/resources/assets/imsm/blockstates/useradded411.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded411"}}} +{"variants": {"": {"model": "imsm:block/useradded411"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded412.json b/src/main/resources/assets/imsm/blockstates/useradded412.json index f8971f54..b5d94f0a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded412.json +++ b/src/main/resources/assets/imsm/blockstates/useradded412.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded412"}}} +{"variants": {"": {"model": "imsm:block/useradded412"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded413.json b/src/main/resources/assets/imsm/blockstates/useradded413.json index e17e56a6..e7f9ab5d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded413.json +++ b/src/main/resources/assets/imsm/blockstates/useradded413.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded413"}}} +{"variants": {"": {"model": "imsm:block/useradded413"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded414.json b/src/main/resources/assets/imsm/blockstates/useradded414.json index 00e53b25..db80c37f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded414.json +++ b/src/main/resources/assets/imsm/blockstates/useradded414.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded414"}}} +{"variants": {"": {"model": "imsm:block/useradded414"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded415.json b/src/main/resources/assets/imsm/blockstates/useradded415.json index 4680dc3d..24fff0ff 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded415.json +++ b/src/main/resources/assets/imsm/blockstates/useradded415.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded415"}}} +{"variants": {"": {"model": "imsm:block/useradded415"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded416.json b/src/main/resources/assets/imsm/blockstates/useradded416.json index 33195656..63c8e62a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded416.json +++ b/src/main/resources/assets/imsm/blockstates/useradded416.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded416"}}} +{"variants": {"": {"model": "imsm:block/useradded416"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded417.json b/src/main/resources/assets/imsm/blockstates/useradded417.json index b30f2dd1..db69a542 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded417.json +++ b/src/main/resources/assets/imsm/blockstates/useradded417.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded417"}}} +{"variants": {"": {"model": "imsm:block/useradded417"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded418.json b/src/main/resources/assets/imsm/blockstates/useradded418.json index b19ed699..3fbab18d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded418.json +++ b/src/main/resources/assets/imsm/blockstates/useradded418.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded418"}}} +{"variants": {"": {"model": "imsm:block/useradded418"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded419.json b/src/main/resources/assets/imsm/blockstates/useradded419.json index e23bf99d..35439f17 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded419.json +++ b/src/main/resources/assets/imsm/blockstates/useradded419.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded419"}}} +{"variants": {"": {"model": "imsm:block/useradded419"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded42.json b/src/main/resources/assets/imsm/blockstates/useradded42.json index 446c0b3a..3c49a6ef 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded42.json +++ b/src/main/resources/assets/imsm/blockstates/useradded42.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded42"}}} +{"variants": {"": {"model": "imsm:block/useradded42"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded420.json b/src/main/resources/assets/imsm/blockstates/useradded420.json index e35b6f7c..4861305d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded420.json +++ b/src/main/resources/assets/imsm/blockstates/useradded420.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded420"}}} +{"variants": {"": {"model": "imsm:block/useradded420"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded421.json b/src/main/resources/assets/imsm/blockstates/useradded421.json index 05935516..a5e5d843 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded421.json +++ b/src/main/resources/assets/imsm/blockstates/useradded421.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded421"}}} +{"variants": {"": {"model": "imsm:block/useradded421"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded422.json b/src/main/resources/assets/imsm/blockstates/useradded422.json index 657413ff..52222cdf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded422.json +++ b/src/main/resources/assets/imsm/blockstates/useradded422.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded422"}}} +{"variants": {"": {"model": "imsm:block/useradded422"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded423.json b/src/main/resources/assets/imsm/blockstates/useradded423.json index 39c5af54..0744e76f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded423.json +++ b/src/main/resources/assets/imsm/blockstates/useradded423.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded423"}}} +{"variants": {"": {"model": "imsm:block/useradded423"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded424.json b/src/main/resources/assets/imsm/blockstates/useradded424.json index 7f7f9a72..67c782d5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded424.json +++ b/src/main/resources/assets/imsm/blockstates/useradded424.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded424"}}} +{"variants": {"": {"model": "imsm:block/useradded424"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded425.json b/src/main/resources/assets/imsm/blockstates/useradded425.json index 2c69d499..e98b76f5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded425.json +++ b/src/main/resources/assets/imsm/blockstates/useradded425.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded425"}}} +{"variants": {"": {"model": "imsm:block/useradded425"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded426.json b/src/main/resources/assets/imsm/blockstates/useradded426.json index 702d4ba5..0dca13b5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded426.json +++ b/src/main/resources/assets/imsm/blockstates/useradded426.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded426"}}} +{"variants": {"": {"model": "imsm:block/useradded426"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded427.json b/src/main/resources/assets/imsm/blockstates/useradded427.json index 26efbdd1..26c697f2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded427.json +++ b/src/main/resources/assets/imsm/blockstates/useradded427.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded427"}}} +{"variants": {"": {"model": "imsm:block/useradded427"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded428.json b/src/main/resources/assets/imsm/blockstates/useradded428.json index ed973057..b66c1854 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded428.json +++ b/src/main/resources/assets/imsm/blockstates/useradded428.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded428"}}} +{"variants": {"": {"model": "imsm:block/useradded428"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded429.json b/src/main/resources/assets/imsm/blockstates/useradded429.json index 0b3258ff..279f0b91 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded429.json +++ b/src/main/resources/assets/imsm/blockstates/useradded429.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded429"}}} +{"variants": {"": {"model": "imsm:block/useradded429"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded43.json b/src/main/resources/assets/imsm/blockstates/useradded43.json index 953636d6..b439524e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded43.json +++ b/src/main/resources/assets/imsm/blockstates/useradded43.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded43"}}} +{"variants": {"": {"model": "imsm:block/useradded43"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded430.json b/src/main/resources/assets/imsm/blockstates/useradded430.json index 1602345e..9744bdf8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded430.json +++ b/src/main/resources/assets/imsm/blockstates/useradded430.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded430"}}} +{"variants": {"": {"model": "imsm:block/useradded430"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded431.json b/src/main/resources/assets/imsm/blockstates/useradded431.json index 333cef92..8d9c52d0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded431.json +++ b/src/main/resources/assets/imsm/blockstates/useradded431.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded431"}}} +{"variants": {"": {"model": "imsm:block/useradded431"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded432.json b/src/main/resources/assets/imsm/blockstates/useradded432.json index 51e23b73..79f9b77f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded432.json +++ b/src/main/resources/assets/imsm/blockstates/useradded432.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded432"}}} +{"variants": {"": {"model": "imsm:block/useradded432"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded433.json b/src/main/resources/assets/imsm/blockstates/useradded433.json index ac9ae6b8..ae303c1c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded433.json +++ b/src/main/resources/assets/imsm/blockstates/useradded433.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded433"}}} +{"variants": {"": {"model": "imsm:block/useradded433"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded434.json b/src/main/resources/assets/imsm/blockstates/useradded434.json index b53bb0f1..0b73c338 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded434.json +++ b/src/main/resources/assets/imsm/blockstates/useradded434.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded434"}}} +{"variants": {"": {"model": "imsm:block/useradded434"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded435.json b/src/main/resources/assets/imsm/blockstates/useradded435.json index 4f0494a6..16960ed1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded435.json +++ b/src/main/resources/assets/imsm/blockstates/useradded435.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded435"}}} +{"variants": {"": {"model": "imsm:block/useradded435"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded436.json b/src/main/resources/assets/imsm/blockstates/useradded436.json index 2902c073..e22f434b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded436.json +++ b/src/main/resources/assets/imsm/blockstates/useradded436.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded436"}}} +{"variants": {"": {"model": "imsm:block/useradded436"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded437.json b/src/main/resources/assets/imsm/blockstates/useradded437.json index 810215a7..00f83996 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded437.json +++ b/src/main/resources/assets/imsm/blockstates/useradded437.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded437"}}} +{"variants": {"": {"model": "imsm:block/useradded437"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded438.json b/src/main/resources/assets/imsm/blockstates/useradded438.json index 1718a252..ab4a0268 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded438.json +++ b/src/main/resources/assets/imsm/blockstates/useradded438.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded438"}}} +{"variants": {"": {"model": "imsm:block/useradded438"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded439.json b/src/main/resources/assets/imsm/blockstates/useradded439.json index fac6cca2..39bf87f2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded439.json +++ b/src/main/resources/assets/imsm/blockstates/useradded439.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded439"}}} +{"variants": {"": {"model": "imsm:block/useradded439"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded44.json b/src/main/resources/assets/imsm/blockstates/useradded44.json index 98b4ce9e..526f98f9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded44.json +++ b/src/main/resources/assets/imsm/blockstates/useradded44.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded44"}}} +{"variants": {"": {"model": "imsm:block/useradded44"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded440.json b/src/main/resources/assets/imsm/blockstates/useradded440.json index 05979fc3..1c140cc5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded440.json +++ b/src/main/resources/assets/imsm/blockstates/useradded440.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded440"}}} +{"variants": {"": {"model": "imsm:block/useradded440"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded441.json b/src/main/resources/assets/imsm/blockstates/useradded441.json index 579e241f..72771b06 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded441.json +++ b/src/main/resources/assets/imsm/blockstates/useradded441.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded441"}}} +{"variants": {"": {"model": "imsm:block/useradded441"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded442.json b/src/main/resources/assets/imsm/blockstates/useradded442.json index ff7a17e4..7af41f91 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded442.json +++ b/src/main/resources/assets/imsm/blockstates/useradded442.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded442"}}} +{"variants": {"": {"model": "imsm:block/useradded442"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded443.json b/src/main/resources/assets/imsm/blockstates/useradded443.json index 83ba4597..bfa4802d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded443.json +++ b/src/main/resources/assets/imsm/blockstates/useradded443.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded443"}}} +{"variants": {"": {"model": "imsm:block/useradded443"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded444.json b/src/main/resources/assets/imsm/blockstates/useradded444.json index 92b90862..39174560 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded444.json +++ b/src/main/resources/assets/imsm/blockstates/useradded444.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded444"}}} +{"variants": {"": {"model": "imsm:block/useradded444"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded445.json b/src/main/resources/assets/imsm/blockstates/useradded445.json index d1b5366a..230d1f61 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded445.json +++ b/src/main/resources/assets/imsm/blockstates/useradded445.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded445"}}} +{"variants": {"": {"model": "imsm:block/useradded445"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded446.json b/src/main/resources/assets/imsm/blockstates/useradded446.json index 1460c85d..3041ff3b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded446.json +++ b/src/main/resources/assets/imsm/blockstates/useradded446.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded446"}}} +{"variants": {"": {"model": "imsm:block/useradded446"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded447.json b/src/main/resources/assets/imsm/blockstates/useradded447.json index 49c833d0..fcd020f0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded447.json +++ b/src/main/resources/assets/imsm/blockstates/useradded447.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded447"}}} +{"variants": {"": {"model": "imsm:block/useradded447"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded448.json b/src/main/resources/assets/imsm/blockstates/useradded448.json index 213bd0c2..9ebf46aa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded448.json +++ b/src/main/resources/assets/imsm/blockstates/useradded448.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded448"}}} +{"variants": {"": {"model": "imsm:block/useradded448"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded449.json b/src/main/resources/assets/imsm/blockstates/useradded449.json index db643dfc..a925bf27 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded449.json +++ b/src/main/resources/assets/imsm/blockstates/useradded449.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded449"}}} +{"variants": {"": {"model": "imsm:block/useradded449"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded45.json b/src/main/resources/assets/imsm/blockstates/useradded45.json index eb0547c0..6221011e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded45.json +++ b/src/main/resources/assets/imsm/blockstates/useradded45.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded45"}}} +{"variants": {"": {"model": "imsm:block/useradded45"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded450.json b/src/main/resources/assets/imsm/blockstates/useradded450.json index c9c4ebc0..ce980f30 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded450.json +++ b/src/main/resources/assets/imsm/blockstates/useradded450.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded450"}}} +{"variants": {"": {"model": "imsm:block/useradded450"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded451.json b/src/main/resources/assets/imsm/blockstates/useradded451.json index 9ad6885f..2fbeb702 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded451.json +++ b/src/main/resources/assets/imsm/blockstates/useradded451.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded451"}}} +{"variants": {"": {"model": "imsm:block/useradded451"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded452.json b/src/main/resources/assets/imsm/blockstates/useradded452.json index 91950bba..b7c3b6c1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded452.json +++ b/src/main/resources/assets/imsm/blockstates/useradded452.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded452"}}} +{"variants": {"": {"model": "imsm:block/useradded452"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded453.json b/src/main/resources/assets/imsm/blockstates/useradded453.json index 9f0c32c3..f762b5c9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded453.json +++ b/src/main/resources/assets/imsm/blockstates/useradded453.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded453"}}} +{"variants": {"": {"model": "imsm:block/useradded453"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded454.json b/src/main/resources/assets/imsm/blockstates/useradded454.json index f7cd96e1..88cae07c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded454.json +++ b/src/main/resources/assets/imsm/blockstates/useradded454.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded454"}}} +{"variants": {"": {"model": "imsm:block/useradded454"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded455.json b/src/main/resources/assets/imsm/blockstates/useradded455.json index 7d618038..54462c05 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded455.json +++ b/src/main/resources/assets/imsm/blockstates/useradded455.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded455"}}} +{"variants": {"": {"model": "imsm:block/useradded455"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded456.json b/src/main/resources/assets/imsm/blockstates/useradded456.json index 1055ce44..aa2832d8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded456.json +++ b/src/main/resources/assets/imsm/blockstates/useradded456.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded456"}}} +{"variants": {"": {"model": "imsm:block/useradded456"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded457.json b/src/main/resources/assets/imsm/blockstates/useradded457.json index b3466c65..a4f3ff6e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded457.json +++ b/src/main/resources/assets/imsm/blockstates/useradded457.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded457"}}} +{"variants": {"": {"model": "imsm:block/useradded457"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded458.json b/src/main/resources/assets/imsm/blockstates/useradded458.json index 29221068..e97c194e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded458.json +++ b/src/main/resources/assets/imsm/blockstates/useradded458.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded458"}}} +{"variants": {"": {"model": "imsm:block/useradded458"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded459.json b/src/main/resources/assets/imsm/blockstates/useradded459.json index 0de8acac..9d9071dd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded459.json +++ b/src/main/resources/assets/imsm/blockstates/useradded459.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded459"}}} +{"variants": {"": {"model": "imsm:block/useradded459"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded46.json b/src/main/resources/assets/imsm/blockstates/useradded46.json index ca1c71b5..a5027460 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded46.json +++ b/src/main/resources/assets/imsm/blockstates/useradded46.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded46"}}} +{"variants": {"": {"model": "imsm:block/useradded46"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded460.json b/src/main/resources/assets/imsm/blockstates/useradded460.json index fd491d2e..e5a5e9cf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded460.json +++ b/src/main/resources/assets/imsm/blockstates/useradded460.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded460"}}} +{"variants": {"": {"model": "imsm:block/useradded460"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded461.json b/src/main/resources/assets/imsm/blockstates/useradded461.json index 836cc76e..99ef3101 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded461.json +++ b/src/main/resources/assets/imsm/blockstates/useradded461.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded461"}}} +{"variants": {"": {"model": "imsm:block/useradded461"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded462.json b/src/main/resources/assets/imsm/blockstates/useradded462.json index 1a1c86a2..989d3b1d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded462.json +++ b/src/main/resources/assets/imsm/blockstates/useradded462.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded462"}}} +{"variants": {"": {"model": "imsm:block/useradded462"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded463.json b/src/main/resources/assets/imsm/blockstates/useradded463.json index e6ce80a8..28d0e763 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded463.json +++ b/src/main/resources/assets/imsm/blockstates/useradded463.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded463"}}} +{"variants": {"": {"model": "imsm:block/useradded463"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded464.json b/src/main/resources/assets/imsm/blockstates/useradded464.json index 8296dc5e..94a9ef42 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded464.json +++ b/src/main/resources/assets/imsm/blockstates/useradded464.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded464"}}} +{"variants": {"": {"model": "imsm:block/useradded464"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded465.json b/src/main/resources/assets/imsm/blockstates/useradded465.json index a582bc51..40e33685 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded465.json +++ b/src/main/resources/assets/imsm/blockstates/useradded465.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded465"}}} +{"variants": {"": {"model": "imsm:block/useradded465"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded466.json b/src/main/resources/assets/imsm/blockstates/useradded466.json index 6320d6b7..0febaa63 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded466.json +++ b/src/main/resources/assets/imsm/blockstates/useradded466.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded466"}}} +{"variants": {"": {"model": "imsm:block/useradded466"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded467.json b/src/main/resources/assets/imsm/blockstates/useradded467.json index f239dfbd..265764b5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded467.json +++ b/src/main/resources/assets/imsm/blockstates/useradded467.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded467"}}} +{"variants": {"": {"model": "imsm:block/useradded467"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded468.json b/src/main/resources/assets/imsm/blockstates/useradded468.json index bc118db3..d5c9ea58 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded468.json +++ b/src/main/resources/assets/imsm/blockstates/useradded468.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded468"}}} +{"variants": {"": {"model": "imsm:block/useradded468"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded469.json b/src/main/resources/assets/imsm/blockstates/useradded469.json index 85476d02..c7a7ff3f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded469.json +++ b/src/main/resources/assets/imsm/blockstates/useradded469.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded469"}}} +{"variants": {"": {"model": "imsm:block/useradded469"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded47.json b/src/main/resources/assets/imsm/blockstates/useradded47.json index dba28379..a334e416 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded47.json +++ b/src/main/resources/assets/imsm/blockstates/useradded47.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded47"}}} +{"variants": {"": {"model": "imsm:block/useradded47"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded470.json b/src/main/resources/assets/imsm/blockstates/useradded470.json index dd3344f1..de110dff 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded470.json +++ b/src/main/resources/assets/imsm/blockstates/useradded470.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded470"}}} +{"variants": {"": {"model": "imsm:block/useradded470"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded471.json b/src/main/resources/assets/imsm/blockstates/useradded471.json index f3c83a34..01fdc0e9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded471.json +++ b/src/main/resources/assets/imsm/blockstates/useradded471.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded471"}}} +{"variants": {"": {"model": "imsm:block/useradded471"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded472.json b/src/main/resources/assets/imsm/blockstates/useradded472.json index 2ec86ab9..a5a7ea9f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded472.json +++ b/src/main/resources/assets/imsm/blockstates/useradded472.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded472"}}} +{"variants": {"": {"model": "imsm:block/useradded472"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded473.json b/src/main/resources/assets/imsm/blockstates/useradded473.json index a43fafc5..68a1ab26 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded473.json +++ b/src/main/resources/assets/imsm/blockstates/useradded473.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded473"}}} +{"variants": {"": {"model": "imsm:block/useradded473"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded474.json b/src/main/resources/assets/imsm/blockstates/useradded474.json index 0bd67a16..b5cc2e8d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded474.json +++ b/src/main/resources/assets/imsm/blockstates/useradded474.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded474"}}} +{"variants": {"": {"model": "imsm:block/useradded474"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded475.json b/src/main/resources/assets/imsm/blockstates/useradded475.json index 93bf9ffa..f584e5db 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded475.json +++ b/src/main/resources/assets/imsm/blockstates/useradded475.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded475"}}} +{"variants": {"": {"model": "imsm:block/useradded475"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded476.json b/src/main/resources/assets/imsm/blockstates/useradded476.json index e75cca23..6bf8d123 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded476.json +++ b/src/main/resources/assets/imsm/blockstates/useradded476.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded476"}}} +{"variants": {"": {"model": "imsm:block/useradded476"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded477.json b/src/main/resources/assets/imsm/blockstates/useradded477.json index 1b5a3f37..0d4d8efc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded477.json +++ b/src/main/resources/assets/imsm/blockstates/useradded477.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded477"}}} +{"variants": {"": {"model": "imsm:block/useradded477"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded478.json b/src/main/resources/assets/imsm/blockstates/useradded478.json index de24f5e0..4fe25740 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded478.json +++ b/src/main/resources/assets/imsm/blockstates/useradded478.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded478"}}} +{"variants": {"": {"model": "imsm:block/useradded478"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded479.json b/src/main/resources/assets/imsm/blockstates/useradded479.json index 26947957..c0890f07 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded479.json +++ b/src/main/resources/assets/imsm/blockstates/useradded479.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded479"}}} +{"variants": {"": {"model": "imsm:block/useradded479"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded48.json b/src/main/resources/assets/imsm/blockstates/useradded48.json index f2af03a6..27d31503 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded48.json +++ b/src/main/resources/assets/imsm/blockstates/useradded48.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded48"}}} +{"variants": {"": {"model": "imsm:block/useradded48"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded480.json b/src/main/resources/assets/imsm/blockstates/useradded480.json index 702020ba..df62a1fc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded480.json +++ b/src/main/resources/assets/imsm/blockstates/useradded480.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded480"}}} +{"variants": {"": {"model": "imsm:block/useradded480"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded481.json b/src/main/resources/assets/imsm/blockstates/useradded481.json index 351d198b..14b8eb78 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded481.json +++ b/src/main/resources/assets/imsm/blockstates/useradded481.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded481"}}} +{"variants": {"": {"model": "imsm:block/useradded481"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded482.json b/src/main/resources/assets/imsm/blockstates/useradded482.json index b1a98b61..768db11d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded482.json +++ b/src/main/resources/assets/imsm/blockstates/useradded482.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded482"}}} +{"variants": {"": {"model": "imsm:block/useradded482"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded483.json b/src/main/resources/assets/imsm/blockstates/useradded483.json index e0b850e9..6b9a57b3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded483.json +++ b/src/main/resources/assets/imsm/blockstates/useradded483.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded483"}}} +{"variants": {"": {"model": "imsm:block/useradded483"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded484.json b/src/main/resources/assets/imsm/blockstates/useradded484.json index 5a0a5abe..836fcfa0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded484.json +++ b/src/main/resources/assets/imsm/blockstates/useradded484.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded484"}}} +{"variants": {"": {"model": "imsm:block/useradded484"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded485.json b/src/main/resources/assets/imsm/blockstates/useradded485.json index 4f3f31bc..501bea64 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded485.json +++ b/src/main/resources/assets/imsm/blockstates/useradded485.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded485"}}} +{"variants": {"": {"model": "imsm:block/useradded485"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded486.json b/src/main/resources/assets/imsm/blockstates/useradded486.json index d8a8a9d3..b71e7c0f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded486.json +++ b/src/main/resources/assets/imsm/blockstates/useradded486.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded486"}}} +{"variants": {"": {"model": "imsm:block/useradded486"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded487.json b/src/main/resources/assets/imsm/blockstates/useradded487.json index 15a9209b..2cd8113d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded487.json +++ b/src/main/resources/assets/imsm/blockstates/useradded487.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded487"}}} +{"variants": {"": {"model": "imsm:block/useradded487"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded488.json b/src/main/resources/assets/imsm/blockstates/useradded488.json index 9041fe2e..a31775ae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded488.json +++ b/src/main/resources/assets/imsm/blockstates/useradded488.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded488"}}} +{"variants": {"": {"model": "imsm:block/useradded488"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded489.json b/src/main/resources/assets/imsm/blockstates/useradded489.json index 653f3bbf..87f0b5e9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded489.json +++ b/src/main/resources/assets/imsm/blockstates/useradded489.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded489"}}} +{"variants": {"": {"model": "imsm:block/useradded489"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded49.json b/src/main/resources/assets/imsm/blockstates/useradded49.json index 6096761c..7981e53e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded49.json +++ b/src/main/resources/assets/imsm/blockstates/useradded49.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded49"}}} +{"variants": {"": {"model": "imsm:block/useradded49"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded490.json b/src/main/resources/assets/imsm/blockstates/useradded490.json index 63f5e10e..86dea657 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded490.json +++ b/src/main/resources/assets/imsm/blockstates/useradded490.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded490"}}} +{"variants": {"": {"model": "imsm:block/useradded490"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded491.json b/src/main/resources/assets/imsm/blockstates/useradded491.json index 78eb28e3..8aca20f7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded491.json +++ b/src/main/resources/assets/imsm/blockstates/useradded491.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded491"}}} +{"variants": {"": {"model": "imsm:block/useradded491"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded492.json b/src/main/resources/assets/imsm/blockstates/useradded492.json index ccaa9d75..ab8b9b26 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded492.json +++ b/src/main/resources/assets/imsm/blockstates/useradded492.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded492"}}} +{"variants": {"": {"model": "imsm:block/useradded492"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded493.json b/src/main/resources/assets/imsm/blockstates/useradded493.json index 2c5f5f86..506ebe59 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded493.json +++ b/src/main/resources/assets/imsm/blockstates/useradded493.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded493"}}} +{"variants": {"": {"model": "imsm:block/useradded493"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded494.json b/src/main/resources/assets/imsm/blockstates/useradded494.json index 47d24c87..ef3f1c3d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded494.json +++ b/src/main/resources/assets/imsm/blockstates/useradded494.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded494"}}} +{"variants": {"": {"model": "imsm:block/useradded494"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded495.json b/src/main/resources/assets/imsm/blockstates/useradded495.json index 774b23f0..2c7218df 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded495.json +++ b/src/main/resources/assets/imsm/blockstates/useradded495.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded495"}}} +{"variants": {"": {"model": "imsm:block/useradded495"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded496.json b/src/main/resources/assets/imsm/blockstates/useradded496.json index 371ed9e5..a89290bb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded496.json +++ b/src/main/resources/assets/imsm/blockstates/useradded496.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded496"}}} +{"variants": {"": {"model": "imsm:block/useradded496"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded497.json b/src/main/resources/assets/imsm/blockstates/useradded497.json index 86f45f58..ce068aaa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded497.json +++ b/src/main/resources/assets/imsm/blockstates/useradded497.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded497"}}} +{"variants": {"": {"model": "imsm:block/useradded497"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded498.json b/src/main/resources/assets/imsm/blockstates/useradded498.json index a9d15f7c..4b7e1287 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded498.json +++ b/src/main/resources/assets/imsm/blockstates/useradded498.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded498"}}} +{"variants": {"": {"model": "imsm:block/useradded498"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded499.json b/src/main/resources/assets/imsm/blockstates/useradded499.json index d735c9cc..19ae17eb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded499.json +++ b/src/main/resources/assets/imsm/blockstates/useradded499.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded499"}}} +{"variants": {"": {"model": "imsm:block/useradded499"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded5.json b/src/main/resources/assets/imsm/blockstates/useradded5.json index c5c2a8a8..b1d9841b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded5.json +++ b/src/main/resources/assets/imsm/blockstates/useradded5.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded5"}}} +{"variants": {"": {"model": "imsm:block/useradded5"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded50.json b/src/main/resources/assets/imsm/blockstates/useradded50.json index 0ddeeefc..e6394e93 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded50.json +++ b/src/main/resources/assets/imsm/blockstates/useradded50.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded50"}}} +{"variants": {"": {"model": "imsm:block/useradded50"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded500.json b/src/main/resources/assets/imsm/blockstates/useradded500.json index 0ac4942a..7e451bc7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded500.json +++ b/src/main/resources/assets/imsm/blockstates/useradded500.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded500"}}} +{"variants": {"": {"model": "imsm:block/useradded500"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded501.json b/src/main/resources/assets/imsm/blockstates/useradded501.json index 728cbf68..bbe7676e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded501.json +++ b/src/main/resources/assets/imsm/blockstates/useradded501.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded501"}}} +{"variants": {"": {"model": "imsm:block/useradded501"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded502.json b/src/main/resources/assets/imsm/blockstates/useradded502.json index a497963e..82901100 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded502.json +++ b/src/main/resources/assets/imsm/blockstates/useradded502.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded502"}}} +{"variants": {"": {"model": "imsm:block/useradded502"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded503.json b/src/main/resources/assets/imsm/blockstates/useradded503.json index 1b7f5dae..3b8368d6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded503.json +++ b/src/main/resources/assets/imsm/blockstates/useradded503.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded503"}}} +{"variants": {"": {"model": "imsm:block/useradded503"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded504.json b/src/main/resources/assets/imsm/blockstates/useradded504.json index e70d8dc4..da942c93 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded504.json +++ b/src/main/resources/assets/imsm/blockstates/useradded504.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded504"}}} +{"variants": {"": {"model": "imsm:block/useradded504"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded505.json b/src/main/resources/assets/imsm/blockstates/useradded505.json index 0b1e4c91..f45f13c0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded505.json +++ b/src/main/resources/assets/imsm/blockstates/useradded505.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded505"}}} +{"variants": {"": {"model": "imsm:block/useradded505"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded506.json b/src/main/resources/assets/imsm/blockstates/useradded506.json index 91af2db1..5065a73b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded506.json +++ b/src/main/resources/assets/imsm/blockstates/useradded506.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded506"}}} +{"variants": {"": {"model": "imsm:block/useradded506"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded507.json b/src/main/resources/assets/imsm/blockstates/useradded507.json index 6011e342..e4de993d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded507.json +++ b/src/main/resources/assets/imsm/blockstates/useradded507.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded507"}}} +{"variants": {"": {"model": "imsm:block/useradded507"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded508.json b/src/main/resources/assets/imsm/blockstates/useradded508.json index 36b5867c..c0f07bb7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded508.json +++ b/src/main/resources/assets/imsm/blockstates/useradded508.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded508"}}} +{"variants": {"": {"model": "imsm:block/useradded508"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded509.json b/src/main/resources/assets/imsm/blockstates/useradded509.json index be0c058f..e31296ab 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded509.json +++ b/src/main/resources/assets/imsm/blockstates/useradded509.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded509"}}} +{"variants": {"": {"model": "imsm:block/useradded509"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded51.json b/src/main/resources/assets/imsm/blockstates/useradded51.json index 62305aa6..6e42d40d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded51.json +++ b/src/main/resources/assets/imsm/blockstates/useradded51.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded51"}}} +{"variants": {"": {"model": "imsm:block/useradded51"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded510.json b/src/main/resources/assets/imsm/blockstates/useradded510.json index 81446fa2..89d27487 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded510.json +++ b/src/main/resources/assets/imsm/blockstates/useradded510.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded510"}}} +{"variants": {"": {"model": "imsm:block/useradded510"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded511.json b/src/main/resources/assets/imsm/blockstates/useradded511.json index 6d2d2946..45c3c774 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded511.json +++ b/src/main/resources/assets/imsm/blockstates/useradded511.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded511"}}} +{"variants": {"": {"model": "imsm:block/useradded511"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded512.json b/src/main/resources/assets/imsm/blockstates/useradded512.json index 087824a4..0e9afd63 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded512.json +++ b/src/main/resources/assets/imsm/blockstates/useradded512.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded512"}}} +{"variants": {"": {"model": "imsm:block/useradded512"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded513.json b/src/main/resources/assets/imsm/blockstates/useradded513.json index 7594c806..8c276005 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded513.json +++ b/src/main/resources/assets/imsm/blockstates/useradded513.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded513"}}} +{"variants": {"": {"model": "imsm:block/useradded513"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded514.json b/src/main/resources/assets/imsm/blockstates/useradded514.json index 51da854b..cc1cce0d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded514.json +++ b/src/main/resources/assets/imsm/blockstates/useradded514.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded514"}}} +{"variants": {"": {"model": "imsm:block/useradded514"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded515.json b/src/main/resources/assets/imsm/blockstates/useradded515.json index 9a2f864c..53e29244 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded515.json +++ b/src/main/resources/assets/imsm/blockstates/useradded515.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded515"}}} +{"variants": {"": {"model": "imsm:block/useradded515"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded516.json b/src/main/resources/assets/imsm/blockstates/useradded516.json index 4247994b..81bbb507 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded516.json +++ b/src/main/resources/assets/imsm/blockstates/useradded516.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded516"}}} +{"variants": {"": {"model": "imsm:block/useradded516"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded517.json b/src/main/resources/assets/imsm/blockstates/useradded517.json index e65dee5d..e70457b4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded517.json +++ b/src/main/resources/assets/imsm/blockstates/useradded517.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded517"}}} +{"variants": {"": {"model": "imsm:block/useradded517"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded518.json b/src/main/resources/assets/imsm/blockstates/useradded518.json index 2bb75a51..11143f47 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded518.json +++ b/src/main/resources/assets/imsm/blockstates/useradded518.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded518"}}} +{"variants": {"": {"model": "imsm:block/useradded518"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded519.json b/src/main/resources/assets/imsm/blockstates/useradded519.json index 46f0746e..5ac06cb4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded519.json +++ b/src/main/resources/assets/imsm/blockstates/useradded519.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded519"}}} +{"variants": {"": {"model": "imsm:block/useradded519"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded52.json b/src/main/resources/assets/imsm/blockstates/useradded52.json index ad82c3b8..e5fa65c7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded52.json +++ b/src/main/resources/assets/imsm/blockstates/useradded52.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded52"}}} +{"variants": {"": {"model": "imsm:block/useradded52"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded520.json b/src/main/resources/assets/imsm/blockstates/useradded520.json index 06566a40..336035c1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded520.json +++ b/src/main/resources/assets/imsm/blockstates/useradded520.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded520"}}} +{"variants": {"": {"model": "imsm:block/useradded520"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded521.json b/src/main/resources/assets/imsm/blockstates/useradded521.json index 7ef80d92..bc622e78 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded521.json +++ b/src/main/resources/assets/imsm/blockstates/useradded521.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded521"}}} +{"variants": {"": {"model": "imsm:block/useradded521"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded522.json b/src/main/resources/assets/imsm/blockstates/useradded522.json index 5200d29c..67a9a76d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded522.json +++ b/src/main/resources/assets/imsm/blockstates/useradded522.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded522"}}} +{"variants": {"": {"model": "imsm:block/useradded522"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded523.json b/src/main/resources/assets/imsm/blockstates/useradded523.json index cfc08842..ebec12a3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded523.json +++ b/src/main/resources/assets/imsm/blockstates/useradded523.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded523"}}} +{"variants": {"": {"model": "imsm:block/useradded523"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded524.json b/src/main/resources/assets/imsm/blockstates/useradded524.json index e74be196..af9f017b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded524.json +++ b/src/main/resources/assets/imsm/blockstates/useradded524.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded524"}}} +{"variants": {"": {"model": "imsm:block/useradded524"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded525.json b/src/main/resources/assets/imsm/blockstates/useradded525.json index d43d333d..b1fdd5cb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded525.json +++ b/src/main/resources/assets/imsm/blockstates/useradded525.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded525"}}} +{"variants": {"": {"model": "imsm:block/useradded525"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded526.json b/src/main/resources/assets/imsm/blockstates/useradded526.json index 1f5c9aee..706abcdf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded526.json +++ b/src/main/resources/assets/imsm/blockstates/useradded526.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded526"}}} +{"variants": {"": {"model": "imsm:block/useradded526"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded527.json b/src/main/resources/assets/imsm/blockstates/useradded527.json index fa355e88..95e76888 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded527.json +++ b/src/main/resources/assets/imsm/blockstates/useradded527.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded527"}}} +{"variants": {"": {"model": "imsm:block/useradded527"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded528.json b/src/main/resources/assets/imsm/blockstates/useradded528.json index 968882d4..eaf54a69 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded528.json +++ b/src/main/resources/assets/imsm/blockstates/useradded528.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded528"}}} +{"variants": {"": {"model": "imsm:block/useradded528"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded529.json b/src/main/resources/assets/imsm/blockstates/useradded529.json index 5d1de9d0..8ba61069 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded529.json +++ b/src/main/resources/assets/imsm/blockstates/useradded529.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded529"}}} +{"variants": {"": {"model": "imsm:block/useradded529"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded53.json b/src/main/resources/assets/imsm/blockstates/useradded53.json index a17c4e20..e672f692 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded53.json +++ b/src/main/resources/assets/imsm/blockstates/useradded53.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded53"}}} +{"variants": {"": {"model": "imsm:block/useradded53"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded530.json b/src/main/resources/assets/imsm/blockstates/useradded530.json index 86b91f40..3002776b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded530.json +++ b/src/main/resources/assets/imsm/blockstates/useradded530.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded530"}}} +{"variants": {"": {"model": "imsm:block/useradded530"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded531.json b/src/main/resources/assets/imsm/blockstates/useradded531.json index d3594ea1..e7207a75 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded531.json +++ b/src/main/resources/assets/imsm/blockstates/useradded531.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded531"}}} +{"variants": {"": {"model": "imsm:block/useradded531"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded532.json b/src/main/resources/assets/imsm/blockstates/useradded532.json index a952adf0..9a2adff2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded532.json +++ b/src/main/resources/assets/imsm/blockstates/useradded532.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded532"}}} +{"variants": {"": {"model": "imsm:block/useradded532"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded533.json b/src/main/resources/assets/imsm/blockstates/useradded533.json index f8c1eb20..b733f662 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded533.json +++ b/src/main/resources/assets/imsm/blockstates/useradded533.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded533"}}} +{"variants": {"": {"model": "imsm:block/useradded533"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded534.json b/src/main/resources/assets/imsm/blockstates/useradded534.json index f32fa264..c3309034 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded534.json +++ b/src/main/resources/assets/imsm/blockstates/useradded534.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded534"}}} +{"variants": {"": {"model": "imsm:block/useradded534"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded535.json b/src/main/resources/assets/imsm/blockstates/useradded535.json index cacf013d..c38c0935 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded535.json +++ b/src/main/resources/assets/imsm/blockstates/useradded535.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded535"}}} +{"variants": {"": {"model": "imsm:block/useradded535"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded536.json b/src/main/resources/assets/imsm/blockstates/useradded536.json index 8a0399ca..594da3ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded536.json +++ b/src/main/resources/assets/imsm/blockstates/useradded536.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded536"}}} +{"variants": {"": {"model": "imsm:block/useradded536"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded537.json b/src/main/resources/assets/imsm/blockstates/useradded537.json index 9a6cde9f..c93b581e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded537.json +++ b/src/main/resources/assets/imsm/blockstates/useradded537.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded537"}}} +{"variants": {"": {"model": "imsm:block/useradded537"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded538.json b/src/main/resources/assets/imsm/blockstates/useradded538.json index 1cfa4b03..47a72303 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded538.json +++ b/src/main/resources/assets/imsm/blockstates/useradded538.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded538"}}} +{"variants": {"": {"model": "imsm:block/useradded538"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded539.json b/src/main/resources/assets/imsm/blockstates/useradded539.json index 1ee2117b..1aed2b61 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded539.json +++ b/src/main/resources/assets/imsm/blockstates/useradded539.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded539"}}} +{"variants": {"": {"model": "imsm:block/useradded539"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded54.json b/src/main/resources/assets/imsm/blockstates/useradded54.json index ff4fc7cd..2baf1fdc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded54.json +++ b/src/main/resources/assets/imsm/blockstates/useradded54.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded54"}}} +{"variants": {"": {"model": "imsm:block/useradded54"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded540.json b/src/main/resources/assets/imsm/blockstates/useradded540.json index 8dc1562d..fdd7d578 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded540.json +++ b/src/main/resources/assets/imsm/blockstates/useradded540.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded540"}}} +{"variants": {"": {"model": "imsm:block/useradded540"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded541.json b/src/main/resources/assets/imsm/blockstates/useradded541.json index a1cc8058..86b3f8cd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded541.json +++ b/src/main/resources/assets/imsm/blockstates/useradded541.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded541"}}} +{"variants": {"": {"model": "imsm:block/useradded541"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded542.json b/src/main/resources/assets/imsm/blockstates/useradded542.json index 1a89ec6a..e83a394b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded542.json +++ b/src/main/resources/assets/imsm/blockstates/useradded542.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded542"}}} +{"variants": {"": {"model": "imsm:block/useradded542"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded543.json b/src/main/resources/assets/imsm/blockstates/useradded543.json index 11f62c7c..168329b6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded543.json +++ b/src/main/resources/assets/imsm/blockstates/useradded543.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded543"}}} +{"variants": {"": {"model": "imsm:block/useradded543"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded544.json b/src/main/resources/assets/imsm/blockstates/useradded544.json index 7f5d196e..1bfd594e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded544.json +++ b/src/main/resources/assets/imsm/blockstates/useradded544.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded544"}}} +{"variants": {"": {"model": "imsm:block/useradded544"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded545.json b/src/main/resources/assets/imsm/blockstates/useradded545.json index 5bd44828..df41c655 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded545.json +++ b/src/main/resources/assets/imsm/blockstates/useradded545.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded545"}}} +{"variants": {"": {"model": "imsm:block/useradded545"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded546.json b/src/main/resources/assets/imsm/blockstates/useradded546.json index 1872ceeb..8fbbab81 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded546.json +++ b/src/main/resources/assets/imsm/blockstates/useradded546.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded546"}}} +{"variants": {"": {"model": "imsm:block/useradded546"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded547.json b/src/main/resources/assets/imsm/blockstates/useradded547.json index c28b3b30..13dfda80 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded547.json +++ b/src/main/resources/assets/imsm/blockstates/useradded547.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded547"}}} +{"variants": {"": {"model": "imsm:block/useradded547"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded548.json b/src/main/resources/assets/imsm/blockstates/useradded548.json index 13dc3bbe..71bfd95d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded548.json +++ b/src/main/resources/assets/imsm/blockstates/useradded548.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded548"}}} +{"variants": {"": {"model": "imsm:block/useradded548"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded549.json b/src/main/resources/assets/imsm/blockstates/useradded549.json index bb8de3dc..09065c6f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded549.json +++ b/src/main/resources/assets/imsm/blockstates/useradded549.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded549"}}} +{"variants": {"": {"model": "imsm:block/useradded549"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded55.json b/src/main/resources/assets/imsm/blockstates/useradded55.json index 56073f31..6b2999f5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded55.json +++ b/src/main/resources/assets/imsm/blockstates/useradded55.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded55"}}} +{"variants": {"": {"model": "imsm:block/useradded55"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded550.json b/src/main/resources/assets/imsm/blockstates/useradded550.json index cb45b4c6..9dcad1be 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded550.json +++ b/src/main/resources/assets/imsm/blockstates/useradded550.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded550"}}} +{"variants": {"": {"model": "imsm:block/useradded550"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded551.json b/src/main/resources/assets/imsm/blockstates/useradded551.json index 6257ac01..444c1a0c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded551.json +++ b/src/main/resources/assets/imsm/blockstates/useradded551.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded551"}}} +{"variants": {"": {"model": "imsm:block/useradded551"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded552.json b/src/main/resources/assets/imsm/blockstates/useradded552.json index 0f47b3ae..450e5182 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded552.json +++ b/src/main/resources/assets/imsm/blockstates/useradded552.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded552"}}} +{"variants": {"": {"model": "imsm:block/useradded552"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded553.json b/src/main/resources/assets/imsm/blockstates/useradded553.json index e264448e..2d0c9152 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded553.json +++ b/src/main/resources/assets/imsm/blockstates/useradded553.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded553"}}} +{"variants": {"": {"model": "imsm:block/useradded553"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded554.json b/src/main/resources/assets/imsm/blockstates/useradded554.json index dd818644..0425fd87 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded554.json +++ b/src/main/resources/assets/imsm/blockstates/useradded554.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded554"}}} +{"variants": {"": {"model": "imsm:block/useradded554"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded555.json b/src/main/resources/assets/imsm/blockstates/useradded555.json index 68dcf4be..6f860ff2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded555.json +++ b/src/main/resources/assets/imsm/blockstates/useradded555.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded555"}}} +{"variants": {"": {"model": "imsm:block/useradded555"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded556.json b/src/main/resources/assets/imsm/blockstates/useradded556.json index 14ad9b9e..acca7210 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded556.json +++ b/src/main/resources/assets/imsm/blockstates/useradded556.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded556"}}} +{"variants": {"": {"model": "imsm:block/useradded556"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded557.json b/src/main/resources/assets/imsm/blockstates/useradded557.json index a5b31547..0628bd0c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded557.json +++ b/src/main/resources/assets/imsm/blockstates/useradded557.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded557"}}} +{"variants": {"": {"model": "imsm:block/useradded557"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded558.json b/src/main/resources/assets/imsm/blockstates/useradded558.json index 042f5cb9..28cc135b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded558.json +++ b/src/main/resources/assets/imsm/blockstates/useradded558.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded558"}}} +{"variants": {"": {"model": "imsm:block/useradded558"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded559.json b/src/main/resources/assets/imsm/blockstates/useradded559.json index e78c963b..16917956 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded559.json +++ b/src/main/resources/assets/imsm/blockstates/useradded559.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded559"}}} +{"variants": {"": {"model": "imsm:block/useradded559"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded56.json b/src/main/resources/assets/imsm/blockstates/useradded56.json index ba822629..bb6fabb5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded56.json +++ b/src/main/resources/assets/imsm/blockstates/useradded56.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded56"}}} +{"variants": {"": {"model": "imsm:block/useradded56"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded560.json b/src/main/resources/assets/imsm/blockstates/useradded560.json index f43e5ff3..45bf6be2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded560.json +++ b/src/main/resources/assets/imsm/blockstates/useradded560.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded560"}}} +{"variants": {"": {"model": "imsm:block/useradded560"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded561.json b/src/main/resources/assets/imsm/blockstates/useradded561.json index 5c216383..870a35b2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded561.json +++ b/src/main/resources/assets/imsm/blockstates/useradded561.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded561"}}} +{"variants": {"": {"model": "imsm:block/useradded561"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded562.json b/src/main/resources/assets/imsm/blockstates/useradded562.json index 2174c958..2394a1d8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded562.json +++ b/src/main/resources/assets/imsm/blockstates/useradded562.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded562"}}} +{"variants": {"": {"model": "imsm:block/useradded562"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded563.json b/src/main/resources/assets/imsm/blockstates/useradded563.json index 3689f0f1..7cda47a0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded563.json +++ b/src/main/resources/assets/imsm/blockstates/useradded563.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded563"}}} +{"variants": {"": {"model": "imsm:block/useradded563"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded564.json b/src/main/resources/assets/imsm/blockstates/useradded564.json index 533799e5..efba487f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded564.json +++ b/src/main/resources/assets/imsm/blockstates/useradded564.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded564"}}} +{"variants": {"": {"model": "imsm:block/useradded564"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded565.json b/src/main/resources/assets/imsm/blockstates/useradded565.json index 0633ca9f..cf5cbdd0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded565.json +++ b/src/main/resources/assets/imsm/blockstates/useradded565.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded565"}}} +{"variants": {"": {"model": "imsm:block/useradded565"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded566.json b/src/main/resources/assets/imsm/blockstates/useradded566.json index cf54ad5d..938d97d2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded566.json +++ b/src/main/resources/assets/imsm/blockstates/useradded566.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded566"}}} +{"variants": {"": {"model": "imsm:block/useradded566"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded567.json b/src/main/resources/assets/imsm/blockstates/useradded567.json index 4d51b213..f6e21a95 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded567.json +++ b/src/main/resources/assets/imsm/blockstates/useradded567.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded567"}}} +{"variants": {"": {"model": "imsm:block/useradded567"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded568.json b/src/main/resources/assets/imsm/blockstates/useradded568.json index d0fbcdf2..7ef87317 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded568.json +++ b/src/main/resources/assets/imsm/blockstates/useradded568.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded568"}}} +{"variants": {"": {"model": "imsm:block/useradded568"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded569.json b/src/main/resources/assets/imsm/blockstates/useradded569.json index 0c5c37eb..d1edb006 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded569.json +++ b/src/main/resources/assets/imsm/blockstates/useradded569.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded569"}}} +{"variants": {"": {"model": "imsm:block/useradded569"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded57.json b/src/main/resources/assets/imsm/blockstates/useradded57.json index adaeb506..e06879f1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded57.json +++ b/src/main/resources/assets/imsm/blockstates/useradded57.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded57"}}} +{"variants": {"": {"model": "imsm:block/useradded57"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded570.json b/src/main/resources/assets/imsm/blockstates/useradded570.json index aada7b1b..1e0ada86 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded570.json +++ b/src/main/resources/assets/imsm/blockstates/useradded570.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded570"}}} +{"variants": {"": {"model": "imsm:block/useradded570"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded571.json b/src/main/resources/assets/imsm/blockstates/useradded571.json index 37776a77..b0861164 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded571.json +++ b/src/main/resources/assets/imsm/blockstates/useradded571.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded571"}}} +{"variants": {"": {"model": "imsm:block/useradded571"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded572.json b/src/main/resources/assets/imsm/blockstates/useradded572.json index bc7d3307..47b50cd9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded572.json +++ b/src/main/resources/assets/imsm/blockstates/useradded572.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded572"}}} +{"variants": {"": {"model": "imsm:block/useradded572"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded573.json b/src/main/resources/assets/imsm/blockstates/useradded573.json index b67731c3..5e3fbdbd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded573.json +++ b/src/main/resources/assets/imsm/blockstates/useradded573.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded573"}}} +{"variants": {"": {"model": "imsm:block/useradded573"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded574.json b/src/main/resources/assets/imsm/blockstates/useradded574.json index 222fb866..0ed545d4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded574.json +++ b/src/main/resources/assets/imsm/blockstates/useradded574.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded574"}}} +{"variants": {"": {"model": "imsm:block/useradded574"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded575.json b/src/main/resources/assets/imsm/blockstates/useradded575.json index 3bc67712..26d7f72d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded575.json +++ b/src/main/resources/assets/imsm/blockstates/useradded575.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded575"}}} +{"variants": {"": {"model": "imsm:block/useradded575"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded576.json b/src/main/resources/assets/imsm/blockstates/useradded576.json index 001b6ffc..4a63a154 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded576.json +++ b/src/main/resources/assets/imsm/blockstates/useradded576.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded576"}}} +{"variants": {"": {"model": "imsm:block/useradded576"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded577.json b/src/main/resources/assets/imsm/blockstates/useradded577.json index 27dc0292..8d4e8c0f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded577.json +++ b/src/main/resources/assets/imsm/blockstates/useradded577.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded577"}}} +{"variants": {"": {"model": "imsm:block/useradded577"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded578.json b/src/main/resources/assets/imsm/blockstates/useradded578.json index 797cd96c..ad6c3570 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded578.json +++ b/src/main/resources/assets/imsm/blockstates/useradded578.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded578"}}} +{"variants": {"": {"model": "imsm:block/useradded578"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded579.json b/src/main/resources/assets/imsm/blockstates/useradded579.json index dbcad0e5..20d59809 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded579.json +++ b/src/main/resources/assets/imsm/blockstates/useradded579.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded579"}}} +{"variants": {"": {"model": "imsm:block/useradded579"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded58.json b/src/main/resources/assets/imsm/blockstates/useradded58.json index 9e086dd8..10c0c5eb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded58.json +++ b/src/main/resources/assets/imsm/blockstates/useradded58.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded58"}}} +{"variants": {"": {"model": "imsm:block/useradded58"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded580.json b/src/main/resources/assets/imsm/blockstates/useradded580.json index fa7224a8..fc5b1d1d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded580.json +++ b/src/main/resources/assets/imsm/blockstates/useradded580.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded580"}}} +{"variants": {"": {"model": "imsm:block/useradded580"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded581.json b/src/main/resources/assets/imsm/blockstates/useradded581.json index d7dfe115..219176b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded581.json +++ b/src/main/resources/assets/imsm/blockstates/useradded581.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded581"}}} +{"variants": {"": {"model": "imsm:block/useradded581"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded582.json b/src/main/resources/assets/imsm/blockstates/useradded582.json index fb5e890c..9cd5b20b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded582.json +++ b/src/main/resources/assets/imsm/blockstates/useradded582.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded582"}}} +{"variants": {"": {"model": "imsm:block/useradded582"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded583.json b/src/main/resources/assets/imsm/blockstates/useradded583.json index 9f3da302..c1fca54a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded583.json +++ b/src/main/resources/assets/imsm/blockstates/useradded583.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded583"}}} +{"variants": {"": {"model": "imsm:block/useradded583"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded584.json b/src/main/resources/assets/imsm/blockstates/useradded584.json index 481cf418..048783c0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded584.json +++ b/src/main/resources/assets/imsm/blockstates/useradded584.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded584"}}} +{"variants": {"": {"model": "imsm:block/useradded584"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded585.json b/src/main/resources/assets/imsm/blockstates/useradded585.json index 83bdb567..90ac2ebe 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded585.json +++ b/src/main/resources/assets/imsm/blockstates/useradded585.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded585"}}} +{"variants": {"": {"model": "imsm:block/useradded585"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded586.json b/src/main/resources/assets/imsm/blockstates/useradded586.json index 85006aa4..7460f992 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded586.json +++ b/src/main/resources/assets/imsm/blockstates/useradded586.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded586"}}} +{"variants": {"": {"model": "imsm:block/useradded586"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded587.json b/src/main/resources/assets/imsm/blockstates/useradded587.json index af8a032f..35074a14 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded587.json +++ b/src/main/resources/assets/imsm/blockstates/useradded587.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded587"}}} +{"variants": {"": {"model": "imsm:block/useradded587"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded588.json b/src/main/resources/assets/imsm/blockstates/useradded588.json index af3bad6b..013aee07 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded588.json +++ b/src/main/resources/assets/imsm/blockstates/useradded588.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded588"}}} +{"variants": {"": {"model": "imsm:block/useradded588"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded589.json b/src/main/resources/assets/imsm/blockstates/useradded589.json index 81617a28..22a4d037 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded589.json +++ b/src/main/resources/assets/imsm/blockstates/useradded589.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded589"}}} +{"variants": {"": {"model": "imsm:block/useradded589"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded59.json b/src/main/resources/assets/imsm/blockstates/useradded59.json index 87e3e2f8..d3accfbe 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded59.json +++ b/src/main/resources/assets/imsm/blockstates/useradded59.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded59"}}} +{"variants": {"": {"model": "imsm:block/useradded59"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded590.json b/src/main/resources/assets/imsm/blockstates/useradded590.json index 363fabe4..5e795a39 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded590.json +++ b/src/main/resources/assets/imsm/blockstates/useradded590.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded590"}}} +{"variants": {"": {"model": "imsm:block/useradded590"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded591.json b/src/main/resources/assets/imsm/blockstates/useradded591.json index 55d1968a..4056e46a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded591.json +++ b/src/main/resources/assets/imsm/blockstates/useradded591.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded591"}}} +{"variants": {"": {"model": "imsm:block/useradded591"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded592.json b/src/main/resources/assets/imsm/blockstates/useradded592.json index cf310c1b..c9a6ec0f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded592.json +++ b/src/main/resources/assets/imsm/blockstates/useradded592.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded592"}}} +{"variants": {"": {"model": "imsm:block/useradded592"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded593.json b/src/main/resources/assets/imsm/blockstates/useradded593.json index d07132c4..b9a30c20 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded593.json +++ b/src/main/resources/assets/imsm/blockstates/useradded593.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded593"}}} +{"variants": {"": {"model": "imsm:block/useradded593"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded594.json b/src/main/resources/assets/imsm/blockstates/useradded594.json index a72c4b3c..67a94ebe 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded594.json +++ b/src/main/resources/assets/imsm/blockstates/useradded594.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded594"}}} +{"variants": {"": {"model": "imsm:block/useradded594"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded595.json b/src/main/resources/assets/imsm/blockstates/useradded595.json index 2df82648..d28496e8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded595.json +++ b/src/main/resources/assets/imsm/blockstates/useradded595.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded595"}}} +{"variants": {"": {"model": "imsm:block/useradded595"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded596.json b/src/main/resources/assets/imsm/blockstates/useradded596.json index 5a393c58..b7ff5cbd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded596.json +++ b/src/main/resources/assets/imsm/blockstates/useradded596.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded596"}}} +{"variants": {"": {"model": "imsm:block/useradded596"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded597.json b/src/main/resources/assets/imsm/blockstates/useradded597.json index 4613496c..2962d6c6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded597.json +++ b/src/main/resources/assets/imsm/blockstates/useradded597.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded597"}}} +{"variants": {"": {"model": "imsm:block/useradded597"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded598.json b/src/main/resources/assets/imsm/blockstates/useradded598.json index b1a79b8c..b252ffcc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded598.json +++ b/src/main/resources/assets/imsm/blockstates/useradded598.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded598"}}} +{"variants": {"": {"model": "imsm:block/useradded598"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded599.json b/src/main/resources/assets/imsm/blockstates/useradded599.json index bac67af9..b41929e0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded599.json +++ b/src/main/resources/assets/imsm/blockstates/useradded599.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded599"}}} +{"variants": {"": {"model": "imsm:block/useradded599"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded6.json b/src/main/resources/assets/imsm/blockstates/useradded6.json index 365ea1c9..d84f0c65 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded6.json +++ b/src/main/resources/assets/imsm/blockstates/useradded6.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded6"}}} +{"variants": {"": {"model": "imsm:block/useradded6"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded60.json b/src/main/resources/assets/imsm/blockstates/useradded60.json index b6158611..9a962be5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded60.json +++ b/src/main/resources/assets/imsm/blockstates/useradded60.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded60"}}} +{"variants": {"": {"model": "imsm:block/useradded60"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded600.json b/src/main/resources/assets/imsm/blockstates/useradded600.json index b30d1015..e0bde5db 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded600.json +++ b/src/main/resources/assets/imsm/blockstates/useradded600.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded600"}}} +{"variants": {"": {"model": "imsm:block/useradded600"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded601.json b/src/main/resources/assets/imsm/blockstates/useradded601.json index 7e3c8845..3c62bdcf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded601.json +++ b/src/main/resources/assets/imsm/blockstates/useradded601.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded601"}}} +{"variants": {"": {"model": "imsm:block/useradded601"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded602.json b/src/main/resources/assets/imsm/blockstates/useradded602.json index 69e69197..0867b817 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded602.json +++ b/src/main/resources/assets/imsm/blockstates/useradded602.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded602"}}} +{"variants": {"": {"model": "imsm:block/useradded602"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded603.json b/src/main/resources/assets/imsm/blockstates/useradded603.json index c66b1f15..23b57032 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded603.json +++ b/src/main/resources/assets/imsm/blockstates/useradded603.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded603"}}} +{"variants": {"": {"model": "imsm:block/useradded603"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded604.json b/src/main/resources/assets/imsm/blockstates/useradded604.json index de6a6e57..887e1f3e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded604.json +++ b/src/main/resources/assets/imsm/blockstates/useradded604.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded604"}}} +{"variants": {"": {"model": "imsm:block/useradded604"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded605.json b/src/main/resources/assets/imsm/blockstates/useradded605.json index 9243a668..3cd9affc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded605.json +++ b/src/main/resources/assets/imsm/blockstates/useradded605.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded605"}}} +{"variants": {"": {"model": "imsm:block/useradded605"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded606.json b/src/main/resources/assets/imsm/blockstates/useradded606.json index 9df88383..024bad11 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded606.json +++ b/src/main/resources/assets/imsm/blockstates/useradded606.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded606"}}} +{"variants": {"": {"model": "imsm:block/useradded606"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded607.json b/src/main/resources/assets/imsm/blockstates/useradded607.json index 0d50edd7..25369ed0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded607.json +++ b/src/main/resources/assets/imsm/blockstates/useradded607.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded607"}}} +{"variants": {"": {"model": "imsm:block/useradded607"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded608.json b/src/main/resources/assets/imsm/blockstates/useradded608.json index e7034f8b..d5b4454f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded608.json +++ b/src/main/resources/assets/imsm/blockstates/useradded608.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded608"}}} +{"variants": {"": {"model": "imsm:block/useradded608"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded609.json b/src/main/resources/assets/imsm/blockstates/useradded609.json index e3865c43..c4baeddf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded609.json +++ b/src/main/resources/assets/imsm/blockstates/useradded609.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded609"}}} +{"variants": {"": {"model": "imsm:block/useradded609"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded61.json b/src/main/resources/assets/imsm/blockstates/useradded61.json index 186155c2..77d9ec6d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded61.json +++ b/src/main/resources/assets/imsm/blockstates/useradded61.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded61"}}} +{"variants": {"": {"model": "imsm:block/useradded61"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded610.json b/src/main/resources/assets/imsm/blockstates/useradded610.json index 7e7991da..17c48cbc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded610.json +++ b/src/main/resources/assets/imsm/blockstates/useradded610.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded610"}}} +{"variants": {"": {"model": "imsm:block/useradded610"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded611.json b/src/main/resources/assets/imsm/blockstates/useradded611.json index 9a8982d1..bce08c38 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded611.json +++ b/src/main/resources/assets/imsm/blockstates/useradded611.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded611"}}} +{"variants": {"": {"model": "imsm:block/useradded611"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded612.json b/src/main/resources/assets/imsm/blockstates/useradded612.json index 083929fa..706db4f1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded612.json +++ b/src/main/resources/assets/imsm/blockstates/useradded612.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded612"}}} +{"variants": {"": {"model": "imsm:block/useradded612"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded613.json b/src/main/resources/assets/imsm/blockstates/useradded613.json index 5b8ee9e0..431b51a3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded613.json +++ b/src/main/resources/assets/imsm/blockstates/useradded613.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded613"}}} +{"variants": {"": {"model": "imsm:block/useradded613"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded614.json b/src/main/resources/assets/imsm/blockstates/useradded614.json index 24aa2d7e..071772e6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded614.json +++ b/src/main/resources/assets/imsm/blockstates/useradded614.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded614"}}} +{"variants": {"": {"model": "imsm:block/useradded614"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded615.json b/src/main/resources/assets/imsm/blockstates/useradded615.json index a10197e7..fe6eeb70 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded615.json +++ b/src/main/resources/assets/imsm/blockstates/useradded615.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded615"}}} +{"variants": {"": {"model": "imsm:block/useradded615"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded616.json b/src/main/resources/assets/imsm/blockstates/useradded616.json index e35bacd9..e9f35b95 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded616.json +++ b/src/main/resources/assets/imsm/blockstates/useradded616.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded616"}}} +{"variants": {"": {"model": "imsm:block/useradded616"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded617.json b/src/main/resources/assets/imsm/blockstates/useradded617.json index 0647d695..b868ae9d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded617.json +++ b/src/main/resources/assets/imsm/blockstates/useradded617.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded617"}}} +{"variants": {"": {"model": "imsm:block/useradded617"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded618.json b/src/main/resources/assets/imsm/blockstates/useradded618.json index 33539681..416fdde1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded618.json +++ b/src/main/resources/assets/imsm/blockstates/useradded618.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded618"}}} +{"variants": {"": {"model": "imsm:block/useradded618"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded619.json b/src/main/resources/assets/imsm/blockstates/useradded619.json index 37784024..9e8aeb78 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded619.json +++ b/src/main/resources/assets/imsm/blockstates/useradded619.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded619"}}} +{"variants": {"": {"model": "imsm:block/useradded619"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded62.json b/src/main/resources/assets/imsm/blockstates/useradded62.json index 51e41565..fb79e657 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded62.json +++ b/src/main/resources/assets/imsm/blockstates/useradded62.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded62"}}} +{"variants": {"": {"model": "imsm:block/useradded62"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded620.json b/src/main/resources/assets/imsm/blockstates/useradded620.json index 9302a550..22ba8beb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded620.json +++ b/src/main/resources/assets/imsm/blockstates/useradded620.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded620"}}} +{"variants": {"": {"model": "imsm:block/useradded620"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded621.json b/src/main/resources/assets/imsm/blockstates/useradded621.json index fb167020..f3cba4ae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded621.json +++ b/src/main/resources/assets/imsm/blockstates/useradded621.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded621"}}} +{"variants": {"": {"model": "imsm:block/useradded621"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded622.json b/src/main/resources/assets/imsm/blockstates/useradded622.json index ae63ccd8..72dfdfff 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded622.json +++ b/src/main/resources/assets/imsm/blockstates/useradded622.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded622"}}} +{"variants": {"": {"model": "imsm:block/useradded622"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded623.json b/src/main/resources/assets/imsm/blockstates/useradded623.json index 2688e8af..0350bb3e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded623.json +++ b/src/main/resources/assets/imsm/blockstates/useradded623.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded623"}}} +{"variants": {"": {"model": "imsm:block/useradded623"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded624.json b/src/main/resources/assets/imsm/blockstates/useradded624.json index 4c269d16..f75e8a8b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded624.json +++ b/src/main/resources/assets/imsm/blockstates/useradded624.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded624"}}} +{"variants": {"": {"model": "imsm:block/useradded624"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded625.json b/src/main/resources/assets/imsm/blockstates/useradded625.json index e0c3ddaf..3e8180a5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded625.json +++ b/src/main/resources/assets/imsm/blockstates/useradded625.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded625"}}} +{"variants": {"": {"model": "imsm:block/useradded625"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded626.json b/src/main/resources/assets/imsm/blockstates/useradded626.json index 889bd772..61343296 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded626.json +++ b/src/main/resources/assets/imsm/blockstates/useradded626.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded626"}}} +{"variants": {"": {"model": "imsm:block/useradded626"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded627.json b/src/main/resources/assets/imsm/blockstates/useradded627.json index 8946ddfa..20830c2b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded627.json +++ b/src/main/resources/assets/imsm/blockstates/useradded627.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded627"}}} +{"variants": {"": {"model": "imsm:block/useradded627"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded628.json b/src/main/resources/assets/imsm/blockstates/useradded628.json index bf83364a..aa4be262 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded628.json +++ b/src/main/resources/assets/imsm/blockstates/useradded628.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded628"}}} +{"variants": {"": {"model": "imsm:block/useradded628"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded629.json b/src/main/resources/assets/imsm/blockstates/useradded629.json index 0e32a449..26c78c21 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded629.json +++ b/src/main/resources/assets/imsm/blockstates/useradded629.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded629"}}} +{"variants": {"": {"model": "imsm:block/useradded629"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded63.json b/src/main/resources/assets/imsm/blockstates/useradded63.json index c4d89382..dfb736ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded63.json +++ b/src/main/resources/assets/imsm/blockstates/useradded63.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded63"}}} +{"variants": {"": {"model": "imsm:block/useradded63"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded630.json b/src/main/resources/assets/imsm/blockstates/useradded630.json index 73cf4b1e..953cb258 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded630.json +++ b/src/main/resources/assets/imsm/blockstates/useradded630.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded630"}}} +{"variants": {"": {"model": "imsm:block/useradded630"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded631.json b/src/main/resources/assets/imsm/blockstates/useradded631.json index 18ea10ac..d1ccb0f2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded631.json +++ b/src/main/resources/assets/imsm/blockstates/useradded631.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded631"}}} +{"variants": {"": {"model": "imsm:block/useradded631"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded632.json b/src/main/resources/assets/imsm/blockstates/useradded632.json index 2e2c80e0..4ec5b1d4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded632.json +++ b/src/main/resources/assets/imsm/blockstates/useradded632.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded632"}}} +{"variants": {"": {"model": "imsm:block/useradded632"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded633.json b/src/main/resources/assets/imsm/blockstates/useradded633.json index f9025934..26240fe0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded633.json +++ b/src/main/resources/assets/imsm/blockstates/useradded633.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded633"}}} +{"variants": {"": {"model": "imsm:block/useradded633"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded634.json b/src/main/resources/assets/imsm/blockstates/useradded634.json index b9f72248..8a99f9ad 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded634.json +++ b/src/main/resources/assets/imsm/blockstates/useradded634.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded634"}}} +{"variants": {"": {"model": "imsm:block/useradded634"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded635.json b/src/main/resources/assets/imsm/blockstates/useradded635.json index 861ca04c..bed19bd3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded635.json +++ b/src/main/resources/assets/imsm/blockstates/useradded635.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded635"}}} +{"variants": {"": {"model": "imsm:block/useradded635"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded636.json b/src/main/resources/assets/imsm/blockstates/useradded636.json index 84b57d66..aca2e5d4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded636.json +++ b/src/main/resources/assets/imsm/blockstates/useradded636.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded636"}}} +{"variants": {"": {"model": "imsm:block/useradded636"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded637.json b/src/main/resources/assets/imsm/blockstates/useradded637.json index ddcb8e9c..4d1238bf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded637.json +++ b/src/main/resources/assets/imsm/blockstates/useradded637.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded637"}}} +{"variants": {"": {"model": "imsm:block/useradded637"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded638.json b/src/main/resources/assets/imsm/blockstates/useradded638.json index d3fd18d9..9fb4d569 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded638.json +++ b/src/main/resources/assets/imsm/blockstates/useradded638.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded638"}}} +{"variants": {"": {"model": "imsm:block/useradded638"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded639.json b/src/main/resources/assets/imsm/blockstates/useradded639.json index f9f223da..9715ff97 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded639.json +++ b/src/main/resources/assets/imsm/blockstates/useradded639.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded639"}}} +{"variants": {"": {"model": "imsm:block/useradded639"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded64.json b/src/main/resources/assets/imsm/blockstates/useradded64.json index 6dcb7439..f1c7359f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded64.json +++ b/src/main/resources/assets/imsm/blockstates/useradded64.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded64"}}} +{"variants": {"": {"model": "imsm:block/useradded64"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded640.json b/src/main/resources/assets/imsm/blockstates/useradded640.json index 3bd66a8a..803c27fa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded640.json +++ b/src/main/resources/assets/imsm/blockstates/useradded640.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded640"}}} +{"variants": {"": {"model": "imsm:block/useradded640"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded641.json b/src/main/resources/assets/imsm/blockstates/useradded641.json index 56addc65..db139e25 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded641.json +++ b/src/main/resources/assets/imsm/blockstates/useradded641.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded641"}}} +{"variants": {"": {"model": "imsm:block/useradded641"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded642.json b/src/main/resources/assets/imsm/blockstates/useradded642.json index 7fa6119f..5b485fd8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded642.json +++ b/src/main/resources/assets/imsm/blockstates/useradded642.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded642"}}} +{"variants": {"": {"model": "imsm:block/useradded642"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded643.json b/src/main/resources/assets/imsm/blockstates/useradded643.json index d4749d87..2caa4845 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded643.json +++ b/src/main/resources/assets/imsm/blockstates/useradded643.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded643"}}} +{"variants": {"": {"model": "imsm:block/useradded643"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded644.json b/src/main/resources/assets/imsm/blockstates/useradded644.json index de021c7a..096517a2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded644.json +++ b/src/main/resources/assets/imsm/blockstates/useradded644.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded644"}}} +{"variants": {"": {"model": "imsm:block/useradded644"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded645.json b/src/main/resources/assets/imsm/blockstates/useradded645.json index c0ed36b1..fcc56cfa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded645.json +++ b/src/main/resources/assets/imsm/blockstates/useradded645.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded645"}}} +{"variants": {"": {"model": "imsm:block/useradded645"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded646.json b/src/main/resources/assets/imsm/blockstates/useradded646.json index df10e7b0..1501b641 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded646.json +++ b/src/main/resources/assets/imsm/blockstates/useradded646.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded646"}}} +{"variants": {"": {"model": "imsm:block/useradded646"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded647.json b/src/main/resources/assets/imsm/blockstates/useradded647.json index 49b0de01..85de8e02 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded647.json +++ b/src/main/resources/assets/imsm/blockstates/useradded647.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded647"}}} +{"variants": {"": {"model": "imsm:block/useradded647"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded648.json b/src/main/resources/assets/imsm/blockstates/useradded648.json index e192cb0a..230b7da1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded648.json +++ b/src/main/resources/assets/imsm/blockstates/useradded648.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded648"}}} +{"variants": {"": {"model": "imsm:block/useradded648"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded649.json b/src/main/resources/assets/imsm/blockstates/useradded649.json index 57893b26..88a4d259 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded649.json +++ b/src/main/resources/assets/imsm/blockstates/useradded649.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded649"}}} +{"variants": {"": {"model": "imsm:block/useradded649"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded65.json b/src/main/resources/assets/imsm/blockstates/useradded65.json index c224dec5..5e105ecf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded65.json +++ b/src/main/resources/assets/imsm/blockstates/useradded65.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded65"}}} +{"variants": {"": {"model": "imsm:block/useradded65"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded650.json b/src/main/resources/assets/imsm/blockstates/useradded650.json index d2cf07d0..4fbfac62 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded650.json +++ b/src/main/resources/assets/imsm/blockstates/useradded650.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded650"}}} +{"variants": {"": {"model": "imsm:block/useradded650"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded651.json b/src/main/resources/assets/imsm/blockstates/useradded651.json index 4e5503c7..08f4ff28 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded651.json +++ b/src/main/resources/assets/imsm/blockstates/useradded651.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded651"}}} +{"variants": {"": {"model": "imsm:block/useradded651"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded652.json b/src/main/resources/assets/imsm/blockstates/useradded652.json index fec86210..a7ce1a84 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded652.json +++ b/src/main/resources/assets/imsm/blockstates/useradded652.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded652"}}} +{"variants": {"": {"model": "imsm:block/useradded652"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded653.json b/src/main/resources/assets/imsm/blockstates/useradded653.json index f5b795e4..7b34be9c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded653.json +++ b/src/main/resources/assets/imsm/blockstates/useradded653.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded653"}}} +{"variants": {"": {"model": "imsm:block/useradded653"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded654.json b/src/main/resources/assets/imsm/blockstates/useradded654.json index 6e6e2dac..94110774 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded654.json +++ b/src/main/resources/assets/imsm/blockstates/useradded654.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded654"}}} +{"variants": {"": {"model": "imsm:block/useradded654"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded655.json b/src/main/resources/assets/imsm/blockstates/useradded655.json index 936602ed..6c0629cd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded655.json +++ b/src/main/resources/assets/imsm/blockstates/useradded655.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded655"}}} +{"variants": {"": {"model": "imsm:block/useradded655"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded656.json b/src/main/resources/assets/imsm/blockstates/useradded656.json index a526bef9..0755a73a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded656.json +++ b/src/main/resources/assets/imsm/blockstates/useradded656.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded656"}}} +{"variants": {"": {"model": "imsm:block/useradded656"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded657.json b/src/main/resources/assets/imsm/blockstates/useradded657.json index 9043d52f..e47fc070 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded657.json +++ b/src/main/resources/assets/imsm/blockstates/useradded657.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded657"}}} +{"variants": {"": {"model": "imsm:block/useradded657"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded658.json b/src/main/resources/assets/imsm/blockstates/useradded658.json index c85e770a..21b2b2fb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded658.json +++ b/src/main/resources/assets/imsm/blockstates/useradded658.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded658"}}} +{"variants": {"": {"model": "imsm:block/useradded658"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded659.json b/src/main/resources/assets/imsm/blockstates/useradded659.json index 785dc404..8ccb1bb6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded659.json +++ b/src/main/resources/assets/imsm/blockstates/useradded659.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded659"}}} +{"variants": {"": {"model": "imsm:block/useradded659"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded66.json b/src/main/resources/assets/imsm/blockstates/useradded66.json index 91b533a5..8c173aca 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded66.json +++ b/src/main/resources/assets/imsm/blockstates/useradded66.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded66"}}} +{"variants": {"": {"model": "imsm:block/useradded66"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded660.json b/src/main/resources/assets/imsm/blockstates/useradded660.json index 99ba3da4..197edb2c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded660.json +++ b/src/main/resources/assets/imsm/blockstates/useradded660.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded660"}}} +{"variants": {"": {"model": "imsm:block/useradded660"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded661.json b/src/main/resources/assets/imsm/blockstates/useradded661.json index 31ebbcba..fdb09576 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded661.json +++ b/src/main/resources/assets/imsm/blockstates/useradded661.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded661"}}} +{"variants": {"": {"model": "imsm:block/useradded661"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded662.json b/src/main/resources/assets/imsm/blockstates/useradded662.json index 1c95bc59..aad45405 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded662.json +++ b/src/main/resources/assets/imsm/blockstates/useradded662.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded662"}}} +{"variants": {"": {"model": "imsm:block/useradded662"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded663.json b/src/main/resources/assets/imsm/blockstates/useradded663.json index 23c74aa2..7a450acf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded663.json +++ b/src/main/resources/assets/imsm/blockstates/useradded663.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded663"}}} +{"variants": {"": {"model": "imsm:block/useradded663"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded664.json b/src/main/resources/assets/imsm/blockstates/useradded664.json index ed818592..ee8760a9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded664.json +++ b/src/main/resources/assets/imsm/blockstates/useradded664.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded664"}}} +{"variants": {"": {"model": "imsm:block/useradded664"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded665.json b/src/main/resources/assets/imsm/blockstates/useradded665.json index 36e3ad6a..ffabc2ea 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded665.json +++ b/src/main/resources/assets/imsm/blockstates/useradded665.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded665"}}} +{"variants": {"": {"model": "imsm:block/useradded665"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded666.json b/src/main/resources/assets/imsm/blockstates/useradded666.json index 006adbb4..fb31b5cd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded666.json +++ b/src/main/resources/assets/imsm/blockstates/useradded666.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded666"}}} +{"variants": {"": {"model": "imsm:block/useradded666"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded667.json b/src/main/resources/assets/imsm/blockstates/useradded667.json index 965f03d1..7707c3ec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded667.json +++ b/src/main/resources/assets/imsm/blockstates/useradded667.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded667"}}} +{"variants": {"": {"model": "imsm:block/useradded667"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded668.json b/src/main/resources/assets/imsm/blockstates/useradded668.json index a3a51e04..900a63d6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded668.json +++ b/src/main/resources/assets/imsm/blockstates/useradded668.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded668"}}} +{"variants": {"": {"model": "imsm:block/useradded668"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded669.json b/src/main/resources/assets/imsm/blockstates/useradded669.json index d7e8e502..f48768cc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded669.json +++ b/src/main/resources/assets/imsm/blockstates/useradded669.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded669"}}} +{"variants": {"": {"model": "imsm:block/useradded669"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded67.json b/src/main/resources/assets/imsm/blockstates/useradded67.json index cdd13e49..3bd9969d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded67.json +++ b/src/main/resources/assets/imsm/blockstates/useradded67.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded67"}}} +{"variants": {"": {"model": "imsm:block/useradded67"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded670.json b/src/main/resources/assets/imsm/blockstates/useradded670.json index bba260b2..c6f6a994 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded670.json +++ b/src/main/resources/assets/imsm/blockstates/useradded670.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded670"}}} +{"variants": {"": {"model": "imsm:block/useradded670"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded671.json b/src/main/resources/assets/imsm/blockstates/useradded671.json index 2ccb63b2..a1e1f6b5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded671.json +++ b/src/main/resources/assets/imsm/blockstates/useradded671.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded671"}}} +{"variants": {"": {"model": "imsm:block/useradded671"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded672.json b/src/main/resources/assets/imsm/blockstates/useradded672.json index 90a5bbf9..4c011b1f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded672.json +++ b/src/main/resources/assets/imsm/blockstates/useradded672.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded672"}}} +{"variants": {"": {"model": "imsm:block/useradded672"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded673.json b/src/main/resources/assets/imsm/blockstates/useradded673.json index 5dd2b329..f6faf5e2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded673.json +++ b/src/main/resources/assets/imsm/blockstates/useradded673.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded673"}}} +{"variants": {"": {"model": "imsm:block/useradded673"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded674.json b/src/main/resources/assets/imsm/blockstates/useradded674.json index 7ad6e0d5..7bd14fc6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded674.json +++ b/src/main/resources/assets/imsm/blockstates/useradded674.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded674"}}} +{"variants": {"": {"model": "imsm:block/useradded674"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded675.json b/src/main/resources/assets/imsm/blockstates/useradded675.json index a4e8a319..3f5d7a0a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded675.json +++ b/src/main/resources/assets/imsm/blockstates/useradded675.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded675"}}} +{"variants": {"": {"model": "imsm:block/useradded675"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded676.json b/src/main/resources/assets/imsm/blockstates/useradded676.json index 14ae5287..f57586a5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded676.json +++ b/src/main/resources/assets/imsm/blockstates/useradded676.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded676"}}} +{"variants": {"": {"model": "imsm:block/useradded676"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded677.json b/src/main/resources/assets/imsm/blockstates/useradded677.json index c87f21cc..827c6cc8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded677.json +++ b/src/main/resources/assets/imsm/blockstates/useradded677.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded677"}}} +{"variants": {"": {"model": "imsm:block/useradded677"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded678.json b/src/main/resources/assets/imsm/blockstates/useradded678.json index 487024fd..b57b316e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded678.json +++ b/src/main/resources/assets/imsm/blockstates/useradded678.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded678"}}} +{"variants": {"": {"model": "imsm:block/useradded678"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded679.json b/src/main/resources/assets/imsm/blockstates/useradded679.json index 856cf946..15b3b373 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded679.json +++ b/src/main/resources/assets/imsm/blockstates/useradded679.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded679"}}} +{"variants": {"": {"model": "imsm:block/useradded679"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded68.json b/src/main/resources/assets/imsm/blockstates/useradded68.json index 7480d39d..cc471a16 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded68.json +++ b/src/main/resources/assets/imsm/blockstates/useradded68.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded68"}}} +{"variants": {"": {"model": "imsm:block/useradded68"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded680.json b/src/main/resources/assets/imsm/blockstates/useradded680.json index c802b094..5854c965 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded680.json +++ b/src/main/resources/assets/imsm/blockstates/useradded680.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded680"}}} +{"variants": {"": {"model": "imsm:block/useradded680"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded681.json b/src/main/resources/assets/imsm/blockstates/useradded681.json index bc22c0ab..c22e2084 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded681.json +++ b/src/main/resources/assets/imsm/blockstates/useradded681.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded681"}}} +{"variants": {"": {"model": "imsm:block/useradded681"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded682.json b/src/main/resources/assets/imsm/blockstates/useradded682.json index 3a17f20c..f977528e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded682.json +++ b/src/main/resources/assets/imsm/blockstates/useradded682.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded682"}}} +{"variants": {"": {"model": "imsm:block/useradded682"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded683.json b/src/main/resources/assets/imsm/blockstates/useradded683.json index 6557f3f6..37479fbf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded683.json +++ b/src/main/resources/assets/imsm/blockstates/useradded683.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded683"}}} +{"variants": {"": {"model": "imsm:block/useradded683"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded684.json b/src/main/resources/assets/imsm/blockstates/useradded684.json index 5af02357..91ec0233 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded684.json +++ b/src/main/resources/assets/imsm/blockstates/useradded684.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded684"}}} +{"variants": {"": {"model": "imsm:block/useradded684"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded685.json b/src/main/resources/assets/imsm/blockstates/useradded685.json index f6a521c1..c05eed60 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded685.json +++ b/src/main/resources/assets/imsm/blockstates/useradded685.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded685"}}} +{"variants": {"": {"model": "imsm:block/useradded685"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded686.json b/src/main/resources/assets/imsm/blockstates/useradded686.json index edd5010e..902f7eff 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded686.json +++ b/src/main/resources/assets/imsm/blockstates/useradded686.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded686"}}} +{"variants": {"": {"model": "imsm:block/useradded686"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded687.json b/src/main/resources/assets/imsm/blockstates/useradded687.json index 21a10225..23c911e5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded687.json +++ b/src/main/resources/assets/imsm/blockstates/useradded687.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded687"}}} +{"variants": {"": {"model": "imsm:block/useradded687"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded688.json b/src/main/resources/assets/imsm/blockstates/useradded688.json index ca4740b2..eab9fc41 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded688.json +++ b/src/main/resources/assets/imsm/blockstates/useradded688.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded688"}}} +{"variants": {"": {"model": "imsm:block/useradded688"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded689.json b/src/main/resources/assets/imsm/blockstates/useradded689.json index 943f3bd0..adec9f6f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded689.json +++ b/src/main/resources/assets/imsm/blockstates/useradded689.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded689"}}} +{"variants": {"": {"model": "imsm:block/useradded689"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded69.json b/src/main/resources/assets/imsm/blockstates/useradded69.json index 8992682c..16a4f16e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded69.json +++ b/src/main/resources/assets/imsm/blockstates/useradded69.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded69"}}} +{"variants": {"": {"model": "imsm:block/useradded69"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded690.json b/src/main/resources/assets/imsm/blockstates/useradded690.json index 09276a73..864771de 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded690.json +++ b/src/main/resources/assets/imsm/blockstates/useradded690.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded690"}}} +{"variants": {"": {"model": "imsm:block/useradded690"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded691.json b/src/main/resources/assets/imsm/blockstates/useradded691.json index 87d13f10..3fb31d6e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded691.json +++ b/src/main/resources/assets/imsm/blockstates/useradded691.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded691"}}} +{"variants": {"": {"model": "imsm:block/useradded691"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded692.json b/src/main/resources/assets/imsm/blockstates/useradded692.json index 16b51638..c7913f37 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded692.json +++ b/src/main/resources/assets/imsm/blockstates/useradded692.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded692"}}} +{"variants": {"": {"model": "imsm:block/useradded692"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded693.json b/src/main/resources/assets/imsm/blockstates/useradded693.json index 0ed9deb5..e3e56b4d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded693.json +++ b/src/main/resources/assets/imsm/blockstates/useradded693.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded693"}}} +{"variants": {"": {"model": "imsm:block/useradded693"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded694.json b/src/main/resources/assets/imsm/blockstates/useradded694.json index 4278088b..c7ef41b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded694.json +++ b/src/main/resources/assets/imsm/blockstates/useradded694.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded694"}}} +{"variants": {"": {"model": "imsm:block/useradded694"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded695.json b/src/main/resources/assets/imsm/blockstates/useradded695.json index 94d2d768..7263c1bf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded695.json +++ b/src/main/resources/assets/imsm/blockstates/useradded695.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded695"}}} +{"variants": {"": {"model": "imsm:block/useradded695"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded696.json b/src/main/resources/assets/imsm/blockstates/useradded696.json index 9d4de5bd..d191f5d3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded696.json +++ b/src/main/resources/assets/imsm/blockstates/useradded696.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded696"}}} +{"variants": {"": {"model": "imsm:block/useradded696"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded697.json b/src/main/resources/assets/imsm/blockstates/useradded697.json index bf94c8f1..cca7f521 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded697.json +++ b/src/main/resources/assets/imsm/blockstates/useradded697.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded697"}}} +{"variants": {"": {"model": "imsm:block/useradded697"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded698.json b/src/main/resources/assets/imsm/blockstates/useradded698.json index 85cc29e4..4ee79ecf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded698.json +++ b/src/main/resources/assets/imsm/blockstates/useradded698.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded698"}}} +{"variants": {"": {"model": "imsm:block/useradded698"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded699.json b/src/main/resources/assets/imsm/blockstates/useradded699.json index 91e196fc..46a86d2c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded699.json +++ b/src/main/resources/assets/imsm/blockstates/useradded699.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded699"}}} +{"variants": {"": {"model": "imsm:block/useradded699"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded7.json b/src/main/resources/assets/imsm/blockstates/useradded7.json index 060d3ab9..3adef28f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded7.json +++ b/src/main/resources/assets/imsm/blockstates/useradded7.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded7"}}} +{"variants": {"": {"model": "imsm:block/useradded7"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded70.json b/src/main/resources/assets/imsm/blockstates/useradded70.json index 83fd6f9f..1e669ead 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded70.json +++ b/src/main/resources/assets/imsm/blockstates/useradded70.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded70"}}} +{"variants": {"": {"model": "imsm:block/useradded70"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded700.json b/src/main/resources/assets/imsm/blockstates/useradded700.json index a2c1d740..6a70201d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded700.json +++ b/src/main/resources/assets/imsm/blockstates/useradded700.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded700"}}} +{"variants": {"": {"model": "imsm:block/useradded700"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded701.json b/src/main/resources/assets/imsm/blockstates/useradded701.json index 96bc183d..ccf0164e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded701.json +++ b/src/main/resources/assets/imsm/blockstates/useradded701.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded701"}}} +{"variants": {"": {"model": "imsm:block/useradded701"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded702.json b/src/main/resources/assets/imsm/blockstates/useradded702.json index 3e3965d1..afc2d617 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded702.json +++ b/src/main/resources/assets/imsm/blockstates/useradded702.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded702"}}} +{"variants": {"": {"model": "imsm:block/useradded702"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded703.json b/src/main/resources/assets/imsm/blockstates/useradded703.json index 7dedcbd9..404d675f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded703.json +++ b/src/main/resources/assets/imsm/blockstates/useradded703.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded703"}}} +{"variants": {"": {"model": "imsm:block/useradded703"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded704.json b/src/main/resources/assets/imsm/blockstates/useradded704.json index 03db7c81..eeb461d0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded704.json +++ b/src/main/resources/assets/imsm/blockstates/useradded704.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded704"}}} +{"variants": {"": {"model": "imsm:block/useradded704"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded705.json b/src/main/resources/assets/imsm/blockstates/useradded705.json index 72024543..46b52a68 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded705.json +++ b/src/main/resources/assets/imsm/blockstates/useradded705.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded705"}}} +{"variants": {"": {"model": "imsm:block/useradded705"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded706.json b/src/main/resources/assets/imsm/blockstates/useradded706.json index 9a9c703c..2d56e11a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded706.json +++ b/src/main/resources/assets/imsm/blockstates/useradded706.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded706"}}} +{"variants": {"": {"model": "imsm:block/useradded706"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded707.json b/src/main/resources/assets/imsm/blockstates/useradded707.json index 380fadf7..cbb14390 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded707.json +++ b/src/main/resources/assets/imsm/blockstates/useradded707.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded707"}}} +{"variants": {"": {"model": "imsm:block/useradded707"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded708.json b/src/main/resources/assets/imsm/blockstates/useradded708.json index 6eb83855..32358962 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded708.json +++ b/src/main/resources/assets/imsm/blockstates/useradded708.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded708"}}} +{"variants": {"": {"model": "imsm:block/useradded708"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded709.json b/src/main/resources/assets/imsm/blockstates/useradded709.json index ad798f51..abb324f9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded709.json +++ b/src/main/resources/assets/imsm/blockstates/useradded709.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded709"}}} +{"variants": {"": {"model": "imsm:block/useradded709"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded71.json b/src/main/resources/assets/imsm/blockstates/useradded71.json index 25672c2f..4eaf35f5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded71.json +++ b/src/main/resources/assets/imsm/blockstates/useradded71.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded71"}}} +{"variants": {"": {"model": "imsm:block/useradded71"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded710.json b/src/main/resources/assets/imsm/blockstates/useradded710.json index 58a23e37..19aaf4d1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded710.json +++ b/src/main/resources/assets/imsm/blockstates/useradded710.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded710"}}} +{"variants": {"": {"model": "imsm:block/useradded710"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded711.json b/src/main/resources/assets/imsm/blockstates/useradded711.json index 6bf6b2a6..4e1df796 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded711.json +++ b/src/main/resources/assets/imsm/blockstates/useradded711.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded711"}}} +{"variants": {"": {"model": "imsm:block/useradded711"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded712.json b/src/main/resources/assets/imsm/blockstates/useradded712.json index 97b4e787..0cf263dc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded712.json +++ b/src/main/resources/assets/imsm/blockstates/useradded712.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded712"}}} +{"variants": {"": {"model": "imsm:block/useradded712"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded713.json b/src/main/resources/assets/imsm/blockstates/useradded713.json index 67635f7b..25828bdc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded713.json +++ b/src/main/resources/assets/imsm/blockstates/useradded713.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded713"}}} +{"variants": {"": {"model": "imsm:block/useradded713"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded714.json b/src/main/resources/assets/imsm/blockstates/useradded714.json index 0f00c13c..c2d928fb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded714.json +++ b/src/main/resources/assets/imsm/blockstates/useradded714.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded714"}}} +{"variants": {"": {"model": "imsm:block/useradded714"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded715.json b/src/main/resources/assets/imsm/blockstates/useradded715.json index 23430ad4..4a11fe36 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded715.json +++ b/src/main/resources/assets/imsm/blockstates/useradded715.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded715"}}} +{"variants": {"": {"model": "imsm:block/useradded715"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded716.json b/src/main/resources/assets/imsm/blockstates/useradded716.json index d885eb1c..58f55266 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded716.json +++ b/src/main/resources/assets/imsm/blockstates/useradded716.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded716"}}} +{"variants": {"": {"model": "imsm:block/useradded716"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded717.json b/src/main/resources/assets/imsm/blockstates/useradded717.json index 282298ab..f807f2cd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded717.json +++ b/src/main/resources/assets/imsm/blockstates/useradded717.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded717"}}} +{"variants": {"": {"model": "imsm:block/useradded717"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded718.json b/src/main/resources/assets/imsm/blockstates/useradded718.json index a8dc00f7..a0db8eae 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded718.json +++ b/src/main/resources/assets/imsm/blockstates/useradded718.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded718"}}} +{"variants": {"": {"model": "imsm:block/useradded718"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded719.json b/src/main/resources/assets/imsm/blockstates/useradded719.json index 6dc52636..f5ce3f41 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded719.json +++ b/src/main/resources/assets/imsm/blockstates/useradded719.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded719"}}} +{"variants": {"": {"model": "imsm:block/useradded719"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded72.json b/src/main/resources/assets/imsm/blockstates/useradded72.json index 7116fd4c..8c1c308c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded72.json +++ b/src/main/resources/assets/imsm/blockstates/useradded72.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded72"}}} +{"variants": {"": {"model": "imsm:block/useradded72"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded720.json b/src/main/resources/assets/imsm/blockstates/useradded720.json index 0374bbee..86c40d12 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded720.json +++ b/src/main/resources/assets/imsm/blockstates/useradded720.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded720"}}} +{"variants": {"": {"model": "imsm:block/useradded720"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded721.json b/src/main/resources/assets/imsm/blockstates/useradded721.json index 40d7aadf..2942852e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded721.json +++ b/src/main/resources/assets/imsm/blockstates/useradded721.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded721"}}} +{"variants": {"": {"model": "imsm:block/useradded721"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded722.json b/src/main/resources/assets/imsm/blockstates/useradded722.json index 267f29c7..b2938195 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded722.json +++ b/src/main/resources/assets/imsm/blockstates/useradded722.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded722"}}} +{"variants": {"": {"model": "imsm:block/useradded722"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded723.json b/src/main/resources/assets/imsm/blockstates/useradded723.json index 816b819f..85f86fb3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded723.json +++ b/src/main/resources/assets/imsm/blockstates/useradded723.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded723"}}} +{"variants": {"": {"model": "imsm:block/useradded723"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded724.json b/src/main/resources/assets/imsm/blockstates/useradded724.json index f4e292aa..a83c5280 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded724.json +++ b/src/main/resources/assets/imsm/blockstates/useradded724.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded724"}}} +{"variants": {"": {"model": "imsm:block/useradded724"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded725.json b/src/main/resources/assets/imsm/blockstates/useradded725.json index a7825a3e..9b4b338b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded725.json +++ b/src/main/resources/assets/imsm/blockstates/useradded725.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded725"}}} +{"variants": {"": {"model": "imsm:block/useradded725"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded726.json b/src/main/resources/assets/imsm/blockstates/useradded726.json index 050c29a0..6116dc28 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded726.json +++ b/src/main/resources/assets/imsm/blockstates/useradded726.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded726"}}} +{"variants": {"": {"model": "imsm:block/useradded726"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded727.json b/src/main/resources/assets/imsm/blockstates/useradded727.json index 43b36a6e..1584e2ec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded727.json +++ b/src/main/resources/assets/imsm/blockstates/useradded727.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded727"}}} +{"variants": {"": {"model": "imsm:block/useradded727"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded728.json b/src/main/resources/assets/imsm/blockstates/useradded728.json index 4845219a..9384b039 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded728.json +++ b/src/main/resources/assets/imsm/blockstates/useradded728.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded728"}}} +{"variants": {"": {"model": "imsm:block/useradded728"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded729.json b/src/main/resources/assets/imsm/blockstates/useradded729.json index 905fb2b1..2dcc33d2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded729.json +++ b/src/main/resources/assets/imsm/blockstates/useradded729.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded729"}}} +{"variants": {"": {"model": "imsm:block/useradded729"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded73.json b/src/main/resources/assets/imsm/blockstates/useradded73.json index f9d1f711..95ec7367 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded73.json +++ b/src/main/resources/assets/imsm/blockstates/useradded73.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded73"}}} +{"variants": {"": {"model": "imsm:block/useradded73"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded730.json b/src/main/resources/assets/imsm/blockstates/useradded730.json index ca423fb7..a3a343f5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded730.json +++ b/src/main/resources/assets/imsm/blockstates/useradded730.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded730"}}} +{"variants": {"": {"model": "imsm:block/useradded730"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded731.json b/src/main/resources/assets/imsm/blockstates/useradded731.json index 3bc3b819..301839b4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded731.json +++ b/src/main/resources/assets/imsm/blockstates/useradded731.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded731"}}} +{"variants": {"": {"model": "imsm:block/useradded731"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded732.json b/src/main/resources/assets/imsm/blockstates/useradded732.json index f07c9a7a..d868abec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded732.json +++ b/src/main/resources/assets/imsm/blockstates/useradded732.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded732"}}} +{"variants": {"": {"model": "imsm:block/useradded732"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded733.json b/src/main/resources/assets/imsm/blockstates/useradded733.json index c648e75a..d6b4041e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded733.json +++ b/src/main/resources/assets/imsm/blockstates/useradded733.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded733"}}} +{"variants": {"": {"model": "imsm:block/useradded733"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded734.json b/src/main/resources/assets/imsm/blockstates/useradded734.json index 3825bf1b..436ef8b3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded734.json +++ b/src/main/resources/assets/imsm/blockstates/useradded734.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded734"}}} +{"variants": {"": {"model": "imsm:block/useradded734"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded735.json b/src/main/resources/assets/imsm/blockstates/useradded735.json index f276086d..77851750 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded735.json +++ b/src/main/resources/assets/imsm/blockstates/useradded735.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded735"}}} +{"variants": {"": {"model": "imsm:block/useradded735"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded736.json b/src/main/resources/assets/imsm/blockstates/useradded736.json index c56ca621..84ad9202 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded736.json +++ b/src/main/resources/assets/imsm/blockstates/useradded736.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded736"}}} +{"variants": {"": {"model": "imsm:block/useradded736"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded737.json b/src/main/resources/assets/imsm/blockstates/useradded737.json index c9b62fd7..cc806d2b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded737.json +++ b/src/main/resources/assets/imsm/blockstates/useradded737.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded737"}}} +{"variants": {"": {"model": "imsm:block/useradded737"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded738.json b/src/main/resources/assets/imsm/blockstates/useradded738.json index 23e334ea..baf3477b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded738.json +++ b/src/main/resources/assets/imsm/blockstates/useradded738.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded738"}}} +{"variants": {"": {"model": "imsm:block/useradded738"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded739.json b/src/main/resources/assets/imsm/blockstates/useradded739.json index 39e2d580..45e7dd9f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded739.json +++ b/src/main/resources/assets/imsm/blockstates/useradded739.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded739"}}} +{"variants": {"": {"model": "imsm:block/useradded739"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded74.json b/src/main/resources/assets/imsm/blockstates/useradded74.json index 3d9a62e4..7e02dbc7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded74.json +++ b/src/main/resources/assets/imsm/blockstates/useradded74.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded74"}}} +{"variants": {"": {"model": "imsm:block/useradded74"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded740.json b/src/main/resources/assets/imsm/blockstates/useradded740.json index e6e5588f..8b2f747a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded740.json +++ b/src/main/resources/assets/imsm/blockstates/useradded740.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded740"}}} +{"variants": {"": {"model": "imsm:block/useradded740"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded741.json b/src/main/resources/assets/imsm/blockstates/useradded741.json index f156fb56..47785aa8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded741.json +++ b/src/main/resources/assets/imsm/blockstates/useradded741.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded741"}}} +{"variants": {"": {"model": "imsm:block/useradded741"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded742.json b/src/main/resources/assets/imsm/blockstates/useradded742.json index 1b572949..0c4ed6ab 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded742.json +++ b/src/main/resources/assets/imsm/blockstates/useradded742.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded742"}}} +{"variants": {"": {"model": "imsm:block/useradded742"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded743.json b/src/main/resources/assets/imsm/blockstates/useradded743.json index e2545ed0..ce0d6ba3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded743.json +++ b/src/main/resources/assets/imsm/blockstates/useradded743.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded743"}}} +{"variants": {"": {"model": "imsm:block/useradded743"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded744.json b/src/main/resources/assets/imsm/blockstates/useradded744.json index be5df031..8abf3ebd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded744.json +++ b/src/main/resources/assets/imsm/blockstates/useradded744.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded744"}}} +{"variants": {"": {"model": "imsm:block/useradded744"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded745.json b/src/main/resources/assets/imsm/blockstates/useradded745.json index 1bae0790..9213cf65 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded745.json +++ b/src/main/resources/assets/imsm/blockstates/useradded745.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded745"}}} +{"variants": {"": {"model": "imsm:block/useradded745"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded746.json b/src/main/resources/assets/imsm/blockstates/useradded746.json index 73166512..2848c3b0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded746.json +++ b/src/main/resources/assets/imsm/blockstates/useradded746.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded746"}}} +{"variants": {"": {"model": "imsm:block/useradded746"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded747.json b/src/main/resources/assets/imsm/blockstates/useradded747.json index e8bc746d..282d7a07 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded747.json +++ b/src/main/resources/assets/imsm/blockstates/useradded747.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded747"}}} +{"variants": {"": {"model": "imsm:block/useradded747"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded748.json b/src/main/resources/assets/imsm/blockstates/useradded748.json index cb7aa977..f459eb04 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded748.json +++ b/src/main/resources/assets/imsm/blockstates/useradded748.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded748"}}} +{"variants": {"": {"model": "imsm:block/useradded748"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded749.json b/src/main/resources/assets/imsm/blockstates/useradded749.json index 4e1015a8..211bdaa5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded749.json +++ b/src/main/resources/assets/imsm/blockstates/useradded749.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded749"}}} +{"variants": {"": {"model": "imsm:block/useradded749"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded75.json b/src/main/resources/assets/imsm/blockstates/useradded75.json index d0d6e544..da724f7f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded75.json +++ b/src/main/resources/assets/imsm/blockstates/useradded75.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded75"}}} +{"variants": {"": {"model": "imsm:block/useradded75"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded750.json b/src/main/resources/assets/imsm/blockstates/useradded750.json index 7fb640f9..a2e4be70 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded750.json +++ b/src/main/resources/assets/imsm/blockstates/useradded750.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded750"}}} +{"variants": {"": {"model": "imsm:block/useradded750"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded751.json b/src/main/resources/assets/imsm/blockstates/useradded751.json index 542136ba..4b3d57e8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded751.json +++ b/src/main/resources/assets/imsm/blockstates/useradded751.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded751"}}} +{"variants": {"": {"model": "imsm:block/useradded751"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded752.json b/src/main/resources/assets/imsm/blockstates/useradded752.json index dbd43185..514fd6d9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded752.json +++ b/src/main/resources/assets/imsm/blockstates/useradded752.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded752"}}} +{"variants": {"": {"model": "imsm:block/useradded752"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded753.json b/src/main/resources/assets/imsm/blockstates/useradded753.json index 18c15d2f..e213708e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded753.json +++ b/src/main/resources/assets/imsm/blockstates/useradded753.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded753"}}} +{"variants": {"": {"model": "imsm:block/useradded753"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded754.json b/src/main/resources/assets/imsm/blockstates/useradded754.json index b4810e99..7d144d2a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded754.json +++ b/src/main/resources/assets/imsm/blockstates/useradded754.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded754"}}} +{"variants": {"": {"model": "imsm:block/useradded754"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded755.json b/src/main/resources/assets/imsm/blockstates/useradded755.json index f3d8d3bc..c761cd52 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded755.json +++ b/src/main/resources/assets/imsm/blockstates/useradded755.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded755"}}} +{"variants": {"": {"model": "imsm:block/useradded755"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded756.json b/src/main/resources/assets/imsm/blockstates/useradded756.json index c0e10643..65e9e72d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded756.json +++ b/src/main/resources/assets/imsm/blockstates/useradded756.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded756"}}} +{"variants": {"": {"model": "imsm:block/useradded756"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded757.json b/src/main/resources/assets/imsm/blockstates/useradded757.json index 311da711..1e33e8b7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded757.json +++ b/src/main/resources/assets/imsm/blockstates/useradded757.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded757"}}} +{"variants": {"": {"model": "imsm:block/useradded757"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded758.json b/src/main/resources/assets/imsm/blockstates/useradded758.json index a31c0775..9679c637 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded758.json +++ b/src/main/resources/assets/imsm/blockstates/useradded758.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded758"}}} +{"variants": {"": {"model": "imsm:block/useradded758"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded759.json b/src/main/resources/assets/imsm/blockstates/useradded759.json index 3ab743eb..10c4ec6e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded759.json +++ b/src/main/resources/assets/imsm/blockstates/useradded759.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded759"}}} +{"variants": {"": {"model": "imsm:block/useradded759"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded76.json b/src/main/resources/assets/imsm/blockstates/useradded76.json index d19545a2..0147ed2b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded76.json +++ b/src/main/resources/assets/imsm/blockstates/useradded76.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded76"}}} +{"variants": {"": {"model": "imsm:block/useradded76"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded760.json b/src/main/resources/assets/imsm/blockstates/useradded760.json index e6b04d7e..8a2df9f4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded760.json +++ b/src/main/resources/assets/imsm/blockstates/useradded760.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded760"}}} +{"variants": {"": {"model": "imsm:block/useradded760"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded761.json b/src/main/resources/assets/imsm/blockstates/useradded761.json index a68fed19..f7b108c4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded761.json +++ b/src/main/resources/assets/imsm/blockstates/useradded761.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded761"}}} +{"variants": {"": {"model": "imsm:block/useradded761"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded762.json b/src/main/resources/assets/imsm/blockstates/useradded762.json index 919f09f8..85dc12ec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded762.json +++ b/src/main/resources/assets/imsm/blockstates/useradded762.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded762"}}} +{"variants": {"": {"model": "imsm:block/useradded762"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded763.json b/src/main/resources/assets/imsm/blockstates/useradded763.json index d33b4d53..c1567592 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded763.json +++ b/src/main/resources/assets/imsm/blockstates/useradded763.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded763"}}} +{"variants": {"": {"model": "imsm:block/useradded763"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded764.json b/src/main/resources/assets/imsm/blockstates/useradded764.json index 3b88272f..72b5d5dd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded764.json +++ b/src/main/resources/assets/imsm/blockstates/useradded764.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded764"}}} +{"variants": {"": {"model": "imsm:block/useradded764"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded765.json b/src/main/resources/assets/imsm/blockstates/useradded765.json index 38b1f3ac..d1d52faf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded765.json +++ b/src/main/resources/assets/imsm/blockstates/useradded765.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded765"}}} +{"variants": {"": {"model": "imsm:block/useradded765"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded766.json b/src/main/resources/assets/imsm/blockstates/useradded766.json index e3942495..b8eeb842 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded766.json +++ b/src/main/resources/assets/imsm/blockstates/useradded766.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded766"}}} +{"variants": {"": {"model": "imsm:block/useradded766"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded767.json b/src/main/resources/assets/imsm/blockstates/useradded767.json index 6d6e268b..f4e3805a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded767.json +++ b/src/main/resources/assets/imsm/blockstates/useradded767.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded767"}}} +{"variants": {"": {"model": "imsm:block/useradded767"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded768.json b/src/main/resources/assets/imsm/blockstates/useradded768.json index 1ad5dd46..220ad433 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded768.json +++ b/src/main/resources/assets/imsm/blockstates/useradded768.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded768"}}} +{"variants": {"": {"model": "imsm:block/useradded768"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded769.json b/src/main/resources/assets/imsm/blockstates/useradded769.json index fbd8f162..fa6eb7af 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded769.json +++ b/src/main/resources/assets/imsm/blockstates/useradded769.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded769"}}} +{"variants": {"": {"model": "imsm:block/useradded769"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded77.json b/src/main/resources/assets/imsm/blockstates/useradded77.json index 44d7ade7..994c79e8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded77.json +++ b/src/main/resources/assets/imsm/blockstates/useradded77.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded77"}}} +{"variants": {"": {"model": "imsm:block/useradded77"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded770.json b/src/main/resources/assets/imsm/blockstates/useradded770.json index 445694f8..6eb85a9a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded770.json +++ b/src/main/resources/assets/imsm/blockstates/useradded770.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded770"}}} +{"variants": {"": {"model": "imsm:block/useradded770"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded771.json b/src/main/resources/assets/imsm/blockstates/useradded771.json index d77f2079..8d589427 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded771.json +++ b/src/main/resources/assets/imsm/blockstates/useradded771.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded771"}}} +{"variants": {"": {"model": "imsm:block/useradded771"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded772.json b/src/main/resources/assets/imsm/blockstates/useradded772.json index 5f3f5150..769ca141 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded772.json +++ b/src/main/resources/assets/imsm/blockstates/useradded772.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded772"}}} +{"variants": {"": {"model": "imsm:block/useradded772"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded773.json b/src/main/resources/assets/imsm/blockstates/useradded773.json index 2633da00..0cf6c8b0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded773.json +++ b/src/main/resources/assets/imsm/blockstates/useradded773.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded773"}}} +{"variants": {"": {"model": "imsm:block/useradded773"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded774.json b/src/main/resources/assets/imsm/blockstates/useradded774.json index 2f0da3e1..e3702814 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded774.json +++ b/src/main/resources/assets/imsm/blockstates/useradded774.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded774"}}} +{"variants": {"": {"model": "imsm:block/useradded774"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded775.json b/src/main/resources/assets/imsm/blockstates/useradded775.json index 91611d04..35074d86 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded775.json +++ b/src/main/resources/assets/imsm/blockstates/useradded775.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded775"}}} +{"variants": {"": {"model": "imsm:block/useradded775"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded776.json b/src/main/resources/assets/imsm/blockstates/useradded776.json index 8dd3f8ec..32926470 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded776.json +++ b/src/main/resources/assets/imsm/blockstates/useradded776.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded776"}}} +{"variants": {"": {"model": "imsm:block/useradded776"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded777.json b/src/main/resources/assets/imsm/blockstates/useradded777.json index 0ca0752f..0245b675 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded777.json +++ b/src/main/resources/assets/imsm/blockstates/useradded777.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded777"}}} +{"variants": {"": {"model": "imsm:block/useradded777"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded778.json b/src/main/resources/assets/imsm/blockstates/useradded778.json index ebfd0a91..127a4fd3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded778.json +++ b/src/main/resources/assets/imsm/blockstates/useradded778.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded778"}}} +{"variants": {"": {"model": "imsm:block/useradded778"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded779.json b/src/main/resources/assets/imsm/blockstates/useradded779.json index 53cc5622..2598a98d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded779.json +++ b/src/main/resources/assets/imsm/blockstates/useradded779.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded779"}}} +{"variants": {"": {"model": "imsm:block/useradded779"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded78.json b/src/main/resources/assets/imsm/blockstates/useradded78.json index 79153c58..2872bda7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded78.json +++ b/src/main/resources/assets/imsm/blockstates/useradded78.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded78"}}} +{"variants": {"": {"model": "imsm:block/useradded78"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded780.json b/src/main/resources/assets/imsm/blockstates/useradded780.json index 5d920099..777103ed 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded780.json +++ b/src/main/resources/assets/imsm/blockstates/useradded780.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded780"}}} +{"variants": {"": {"model": "imsm:block/useradded780"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded781.json b/src/main/resources/assets/imsm/blockstates/useradded781.json index 1e3b5751..aafe146e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded781.json +++ b/src/main/resources/assets/imsm/blockstates/useradded781.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded781"}}} +{"variants": {"": {"model": "imsm:block/useradded781"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded782.json b/src/main/resources/assets/imsm/blockstates/useradded782.json index 34afbb1e..6d57c05c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded782.json +++ b/src/main/resources/assets/imsm/blockstates/useradded782.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded782"}}} +{"variants": {"": {"model": "imsm:block/useradded782"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded783.json b/src/main/resources/assets/imsm/blockstates/useradded783.json index 6e314258..5e8a8a4a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded783.json +++ b/src/main/resources/assets/imsm/blockstates/useradded783.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded783"}}} +{"variants": {"": {"model": "imsm:block/useradded783"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded784.json b/src/main/resources/assets/imsm/blockstates/useradded784.json index 9b90b070..81870bca 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded784.json +++ b/src/main/resources/assets/imsm/blockstates/useradded784.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded784"}}} +{"variants": {"": {"model": "imsm:block/useradded784"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded785.json b/src/main/resources/assets/imsm/blockstates/useradded785.json index c8ce4563..02ac3f53 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded785.json +++ b/src/main/resources/assets/imsm/blockstates/useradded785.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded785"}}} +{"variants": {"": {"model": "imsm:block/useradded785"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded786.json b/src/main/resources/assets/imsm/blockstates/useradded786.json index 4f0bbaf6..daece644 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded786.json +++ b/src/main/resources/assets/imsm/blockstates/useradded786.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded786"}}} +{"variants": {"": {"model": "imsm:block/useradded786"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded787.json b/src/main/resources/assets/imsm/blockstates/useradded787.json index 8ebcbbbd..d8449d8c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded787.json +++ b/src/main/resources/assets/imsm/blockstates/useradded787.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded787"}}} +{"variants": {"": {"model": "imsm:block/useradded787"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded788.json b/src/main/resources/assets/imsm/blockstates/useradded788.json index e7ad8e28..e414a65e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded788.json +++ b/src/main/resources/assets/imsm/blockstates/useradded788.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded788"}}} +{"variants": {"": {"model": "imsm:block/useradded788"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded789.json b/src/main/resources/assets/imsm/blockstates/useradded789.json index 59862495..c81c15a4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded789.json +++ b/src/main/resources/assets/imsm/blockstates/useradded789.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded789"}}} +{"variants": {"": {"model": "imsm:block/useradded789"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded79.json b/src/main/resources/assets/imsm/blockstates/useradded79.json index dd25d81e..c08943ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded79.json +++ b/src/main/resources/assets/imsm/blockstates/useradded79.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded79"}}} +{"variants": {"": {"model": "imsm:block/useradded79"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded790.json b/src/main/resources/assets/imsm/blockstates/useradded790.json index b9cbf378..1371941a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded790.json +++ b/src/main/resources/assets/imsm/blockstates/useradded790.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded790"}}} +{"variants": {"": {"model": "imsm:block/useradded790"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded791.json b/src/main/resources/assets/imsm/blockstates/useradded791.json index 1e25a58b..1c719e29 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded791.json +++ b/src/main/resources/assets/imsm/blockstates/useradded791.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded791"}}} +{"variants": {"": {"model": "imsm:block/useradded791"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded792.json b/src/main/resources/assets/imsm/blockstates/useradded792.json index 0a8b919d..6a791090 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded792.json +++ b/src/main/resources/assets/imsm/blockstates/useradded792.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded792"}}} +{"variants": {"": {"model": "imsm:block/useradded792"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded793.json b/src/main/resources/assets/imsm/blockstates/useradded793.json index b880d513..7c5e0e8f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded793.json +++ b/src/main/resources/assets/imsm/blockstates/useradded793.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded793"}}} +{"variants": {"": {"model": "imsm:block/useradded793"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded794.json b/src/main/resources/assets/imsm/blockstates/useradded794.json index c5a656fe..31f57ab3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded794.json +++ b/src/main/resources/assets/imsm/blockstates/useradded794.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded794"}}} +{"variants": {"": {"model": "imsm:block/useradded794"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded795.json b/src/main/resources/assets/imsm/blockstates/useradded795.json index 607e8536..04383b0a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded795.json +++ b/src/main/resources/assets/imsm/blockstates/useradded795.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded795"}}} +{"variants": {"": {"model": "imsm:block/useradded795"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded796.json b/src/main/resources/assets/imsm/blockstates/useradded796.json index 63a7d4ef..b4d7fc4d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded796.json +++ b/src/main/resources/assets/imsm/blockstates/useradded796.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded796"}}} +{"variants": {"": {"model": "imsm:block/useradded796"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded797.json b/src/main/resources/assets/imsm/blockstates/useradded797.json index 3ca72d5e..4cb5ce98 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded797.json +++ b/src/main/resources/assets/imsm/blockstates/useradded797.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded797"}}} +{"variants": {"": {"model": "imsm:block/useradded797"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded798.json b/src/main/resources/assets/imsm/blockstates/useradded798.json index a6c5e407..9fde1a6e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded798.json +++ b/src/main/resources/assets/imsm/blockstates/useradded798.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded798"}}} +{"variants": {"": {"model": "imsm:block/useradded798"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded799.json b/src/main/resources/assets/imsm/blockstates/useradded799.json index e76135e5..6c40c7c3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded799.json +++ b/src/main/resources/assets/imsm/blockstates/useradded799.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded799"}}} +{"variants": {"": {"model": "imsm:block/useradded799"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded8.json b/src/main/resources/assets/imsm/blockstates/useradded8.json index 80139771..e1e0a2b3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded8.json +++ b/src/main/resources/assets/imsm/blockstates/useradded8.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded8"}}} +{"variants": {"": {"model": "imsm:block/useradded8"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded80.json b/src/main/resources/assets/imsm/blockstates/useradded80.json index a25743a8..37a4389f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded80.json +++ b/src/main/resources/assets/imsm/blockstates/useradded80.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded80"}}} +{"variants": {"": {"model": "imsm:block/useradded80"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded800.json b/src/main/resources/assets/imsm/blockstates/useradded800.json index 20ec262a..a4dbb73d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded800.json +++ b/src/main/resources/assets/imsm/blockstates/useradded800.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded800"}}} +{"variants": {"": {"model": "imsm:block/useradded800"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded801.json b/src/main/resources/assets/imsm/blockstates/useradded801.json index 3a6c8379..0dd4e6df 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded801.json +++ b/src/main/resources/assets/imsm/blockstates/useradded801.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded801"}}} +{"variants": {"": {"model": "imsm:block/useradded801"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded802.json b/src/main/resources/assets/imsm/blockstates/useradded802.json index 6c744741..b5067754 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded802.json +++ b/src/main/resources/assets/imsm/blockstates/useradded802.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded802"}}} +{"variants": {"": {"model": "imsm:block/useradded802"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded803.json b/src/main/resources/assets/imsm/blockstates/useradded803.json index c6a97e00..0d70670f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded803.json +++ b/src/main/resources/assets/imsm/blockstates/useradded803.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded803"}}} +{"variants": {"": {"model": "imsm:block/useradded803"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded804.json b/src/main/resources/assets/imsm/blockstates/useradded804.json index e1a5fa1b..4d8116cb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded804.json +++ b/src/main/resources/assets/imsm/blockstates/useradded804.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded804"}}} +{"variants": {"": {"model": "imsm:block/useradded804"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded805.json b/src/main/resources/assets/imsm/blockstates/useradded805.json index ab6167a7..990f4397 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded805.json +++ b/src/main/resources/assets/imsm/blockstates/useradded805.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded805"}}} +{"variants": {"": {"model": "imsm:block/useradded805"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded806.json b/src/main/resources/assets/imsm/blockstates/useradded806.json index f832b5c1..43d7c6e5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded806.json +++ b/src/main/resources/assets/imsm/blockstates/useradded806.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded806"}}} +{"variants": {"": {"model": "imsm:block/useradded806"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded807.json b/src/main/resources/assets/imsm/blockstates/useradded807.json index d0ec4d88..0d7a7ff1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded807.json +++ b/src/main/resources/assets/imsm/blockstates/useradded807.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded807"}}} +{"variants": {"": {"model": "imsm:block/useradded807"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded808.json b/src/main/resources/assets/imsm/blockstates/useradded808.json index 3eafc1dc..038f72ea 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded808.json +++ b/src/main/resources/assets/imsm/blockstates/useradded808.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded808"}}} +{"variants": {"": {"model": "imsm:block/useradded808"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded809.json b/src/main/resources/assets/imsm/blockstates/useradded809.json index 0df98ecf..6aa4ce34 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded809.json +++ b/src/main/resources/assets/imsm/blockstates/useradded809.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded809"}}} +{"variants": {"": {"model": "imsm:block/useradded809"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded81.json b/src/main/resources/assets/imsm/blockstates/useradded81.json index afacdd11..504c5d8f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded81.json +++ b/src/main/resources/assets/imsm/blockstates/useradded81.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded81"}}} +{"variants": {"": {"model": "imsm:block/useradded81"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded810.json b/src/main/resources/assets/imsm/blockstates/useradded810.json index 832b1d5b..5ade038c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded810.json +++ b/src/main/resources/assets/imsm/blockstates/useradded810.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded810"}}} +{"variants": {"": {"model": "imsm:block/useradded810"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded811.json b/src/main/resources/assets/imsm/blockstates/useradded811.json index b6f0bf95..787870d9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded811.json +++ b/src/main/resources/assets/imsm/blockstates/useradded811.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded811"}}} +{"variants": {"": {"model": "imsm:block/useradded811"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded812.json b/src/main/resources/assets/imsm/blockstates/useradded812.json index 89953f34..28a9a696 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded812.json +++ b/src/main/resources/assets/imsm/blockstates/useradded812.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded812"}}} +{"variants": {"": {"model": "imsm:block/useradded812"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded813.json b/src/main/resources/assets/imsm/blockstates/useradded813.json index 0229d45b..ff49e8a0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded813.json +++ b/src/main/resources/assets/imsm/blockstates/useradded813.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded813"}}} +{"variants": {"": {"model": "imsm:block/useradded813"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded814.json b/src/main/resources/assets/imsm/blockstates/useradded814.json index 9bcce85d..7396b099 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded814.json +++ b/src/main/resources/assets/imsm/blockstates/useradded814.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded814"}}} +{"variants": {"": {"model": "imsm:block/useradded814"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded815.json b/src/main/resources/assets/imsm/blockstates/useradded815.json index fbb3693f..3ead98ba 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded815.json +++ b/src/main/resources/assets/imsm/blockstates/useradded815.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded815"}}} +{"variants": {"": {"model": "imsm:block/useradded815"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded816.json b/src/main/resources/assets/imsm/blockstates/useradded816.json index e8df93cf..b6de660a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded816.json +++ b/src/main/resources/assets/imsm/blockstates/useradded816.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded816"}}} +{"variants": {"": {"model": "imsm:block/useradded816"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded817.json b/src/main/resources/assets/imsm/blockstates/useradded817.json index 7c2d9b96..d74594fa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded817.json +++ b/src/main/resources/assets/imsm/blockstates/useradded817.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded817"}}} +{"variants": {"": {"model": "imsm:block/useradded817"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded818.json b/src/main/resources/assets/imsm/blockstates/useradded818.json index 58cef640..169b5c19 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded818.json +++ b/src/main/resources/assets/imsm/blockstates/useradded818.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded818"}}} +{"variants": {"": {"model": "imsm:block/useradded818"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded819.json b/src/main/resources/assets/imsm/blockstates/useradded819.json index 032e6f54..99ac49e5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded819.json +++ b/src/main/resources/assets/imsm/blockstates/useradded819.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded819"}}} +{"variants": {"": {"model": "imsm:block/useradded819"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded82.json b/src/main/resources/assets/imsm/blockstates/useradded82.json index 026c1147..9fdc811e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded82.json +++ b/src/main/resources/assets/imsm/blockstates/useradded82.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded82"}}} +{"variants": {"": {"model": "imsm:block/useradded82"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded820.json b/src/main/resources/assets/imsm/blockstates/useradded820.json index d3a724ed..99ae9ec9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded820.json +++ b/src/main/resources/assets/imsm/blockstates/useradded820.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded820"}}} +{"variants": {"": {"model": "imsm:block/useradded820"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded821.json b/src/main/resources/assets/imsm/blockstates/useradded821.json index c5a89930..2b011711 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded821.json +++ b/src/main/resources/assets/imsm/blockstates/useradded821.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded821"}}} +{"variants": {"": {"model": "imsm:block/useradded821"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded822.json b/src/main/resources/assets/imsm/blockstates/useradded822.json index dbf0b2b8..e420f0f1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded822.json +++ b/src/main/resources/assets/imsm/blockstates/useradded822.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded822"}}} +{"variants": {"": {"model": "imsm:block/useradded822"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded823.json b/src/main/resources/assets/imsm/blockstates/useradded823.json index 6e27d9bf..368071cc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded823.json +++ b/src/main/resources/assets/imsm/blockstates/useradded823.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded823"}}} +{"variants": {"": {"model": "imsm:block/useradded823"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded824.json b/src/main/resources/assets/imsm/blockstates/useradded824.json index 0bc8971f..8ec59a48 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded824.json +++ b/src/main/resources/assets/imsm/blockstates/useradded824.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded824"}}} +{"variants": {"": {"model": "imsm:block/useradded824"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded825.json b/src/main/resources/assets/imsm/blockstates/useradded825.json index 5b941e50..6829bde0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded825.json +++ b/src/main/resources/assets/imsm/blockstates/useradded825.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded825"}}} +{"variants": {"": {"model": "imsm:block/useradded825"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded826.json b/src/main/resources/assets/imsm/blockstates/useradded826.json index 4e6bf298..1d45ba54 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded826.json +++ b/src/main/resources/assets/imsm/blockstates/useradded826.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded826"}}} +{"variants": {"": {"model": "imsm:block/useradded826"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded827.json b/src/main/resources/assets/imsm/blockstates/useradded827.json index 0b1b0aa5..ef7de72d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded827.json +++ b/src/main/resources/assets/imsm/blockstates/useradded827.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded827"}}} +{"variants": {"": {"model": "imsm:block/useradded827"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded828.json b/src/main/resources/assets/imsm/blockstates/useradded828.json index c3b1f2b7..175896bb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded828.json +++ b/src/main/resources/assets/imsm/blockstates/useradded828.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded828"}}} +{"variants": {"": {"model": "imsm:block/useradded828"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded829.json b/src/main/resources/assets/imsm/blockstates/useradded829.json index 548a50a9..f3df457d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded829.json +++ b/src/main/resources/assets/imsm/blockstates/useradded829.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded829"}}} +{"variants": {"": {"model": "imsm:block/useradded829"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded83.json b/src/main/resources/assets/imsm/blockstates/useradded83.json index 88f86c11..05f5a6fc 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded83.json +++ b/src/main/resources/assets/imsm/blockstates/useradded83.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded83"}}} +{"variants": {"": {"model": "imsm:block/useradded83"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded830.json b/src/main/resources/assets/imsm/blockstates/useradded830.json index 31b05aba..eb2f3fdb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded830.json +++ b/src/main/resources/assets/imsm/blockstates/useradded830.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded830"}}} +{"variants": {"": {"model": "imsm:block/useradded830"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded831.json b/src/main/resources/assets/imsm/blockstates/useradded831.json index 888fbe16..92b5213f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded831.json +++ b/src/main/resources/assets/imsm/blockstates/useradded831.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded831"}}} +{"variants": {"": {"model": "imsm:block/useradded831"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded832.json b/src/main/resources/assets/imsm/blockstates/useradded832.json index 11025d3c..2d5a4a37 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded832.json +++ b/src/main/resources/assets/imsm/blockstates/useradded832.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded832"}}} +{"variants": {"": {"model": "imsm:block/useradded832"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded833.json b/src/main/resources/assets/imsm/blockstates/useradded833.json index 361b637b..5813386c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded833.json +++ b/src/main/resources/assets/imsm/blockstates/useradded833.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded833"}}} +{"variants": {"": {"model": "imsm:block/useradded833"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded834.json b/src/main/resources/assets/imsm/blockstates/useradded834.json index 4fae8e35..94db0fea 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded834.json +++ b/src/main/resources/assets/imsm/blockstates/useradded834.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded834"}}} +{"variants": {"": {"model": "imsm:block/useradded834"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded835.json b/src/main/resources/assets/imsm/blockstates/useradded835.json index fe0a1a1b..6d3c1170 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded835.json +++ b/src/main/resources/assets/imsm/blockstates/useradded835.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded835"}}} +{"variants": {"": {"model": "imsm:block/useradded835"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded836.json b/src/main/resources/assets/imsm/blockstates/useradded836.json index a67f34bd..aca9a92c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded836.json +++ b/src/main/resources/assets/imsm/blockstates/useradded836.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded836"}}} +{"variants": {"": {"model": "imsm:block/useradded836"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded837.json b/src/main/resources/assets/imsm/blockstates/useradded837.json index cff2c331..c9f55367 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded837.json +++ b/src/main/resources/assets/imsm/blockstates/useradded837.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded837"}}} +{"variants": {"": {"model": "imsm:block/useradded837"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded838.json b/src/main/resources/assets/imsm/blockstates/useradded838.json index c6cfa70d..27119d6f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded838.json +++ b/src/main/resources/assets/imsm/blockstates/useradded838.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded838"}}} +{"variants": {"": {"model": "imsm:block/useradded838"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded839.json b/src/main/resources/assets/imsm/blockstates/useradded839.json index 8a71aae0..b4865c20 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded839.json +++ b/src/main/resources/assets/imsm/blockstates/useradded839.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded839"}}} +{"variants": {"": {"model": "imsm:block/useradded839"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded84.json b/src/main/resources/assets/imsm/blockstates/useradded84.json index 326ba039..d1a7f4eb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded84.json +++ b/src/main/resources/assets/imsm/blockstates/useradded84.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded84"}}} +{"variants": {"": {"model": "imsm:block/useradded84"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded840.json b/src/main/resources/assets/imsm/blockstates/useradded840.json index c02db7dd..106e1985 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded840.json +++ b/src/main/resources/assets/imsm/blockstates/useradded840.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded840"}}} +{"variants": {"": {"model": "imsm:block/useradded840"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded841.json b/src/main/resources/assets/imsm/blockstates/useradded841.json index 66380c9a..47bd4545 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded841.json +++ b/src/main/resources/assets/imsm/blockstates/useradded841.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded841"}}} +{"variants": {"": {"model": "imsm:block/useradded841"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded842.json b/src/main/resources/assets/imsm/blockstates/useradded842.json index 95dc1376..d0e3e32d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded842.json +++ b/src/main/resources/assets/imsm/blockstates/useradded842.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded842"}}} +{"variants": {"": {"model": "imsm:block/useradded842"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded843.json b/src/main/resources/assets/imsm/blockstates/useradded843.json index 465b1098..29f0627c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded843.json +++ b/src/main/resources/assets/imsm/blockstates/useradded843.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded843"}}} +{"variants": {"": {"model": "imsm:block/useradded843"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded844.json b/src/main/resources/assets/imsm/blockstates/useradded844.json index 68512565..d209a5ee 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded844.json +++ b/src/main/resources/assets/imsm/blockstates/useradded844.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded844"}}} +{"variants": {"": {"model": "imsm:block/useradded844"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded845.json b/src/main/resources/assets/imsm/blockstates/useradded845.json index 1cdef89e..ebf173e5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded845.json +++ b/src/main/resources/assets/imsm/blockstates/useradded845.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded845"}}} +{"variants": {"": {"model": "imsm:block/useradded845"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded846.json b/src/main/resources/assets/imsm/blockstates/useradded846.json index d8117044..dace7f29 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded846.json +++ b/src/main/resources/assets/imsm/blockstates/useradded846.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded846"}}} +{"variants": {"": {"model": "imsm:block/useradded846"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded847.json b/src/main/resources/assets/imsm/blockstates/useradded847.json index 1b99bb17..2f027a31 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded847.json +++ b/src/main/resources/assets/imsm/blockstates/useradded847.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded847"}}} +{"variants": {"": {"model": "imsm:block/useradded847"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded848.json b/src/main/resources/assets/imsm/blockstates/useradded848.json index 6182cab4..22631d7b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded848.json +++ b/src/main/resources/assets/imsm/blockstates/useradded848.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded848"}}} +{"variants": {"": {"model": "imsm:block/useradded848"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded849.json b/src/main/resources/assets/imsm/blockstates/useradded849.json index 3cd8740c..3ed6afe2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded849.json +++ b/src/main/resources/assets/imsm/blockstates/useradded849.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded849"}}} +{"variants": {"": {"model": "imsm:block/useradded849"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded85.json b/src/main/resources/assets/imsm/blockstates/useradded85.json index 8f3f679d..a76bf071 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded85.json +++ b/src/main/resources/assets/imsm/blockstates/useradded85.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded85"}}} +{"variants": {"": {"model": "imsm:block/useradded85"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded850.json b/src/main/resources/assets/imsm/blockstates/useradded850.json index d5839952..93a1af22 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded850.json +++ b/src/main/resources/assets/imsm/blockstates/useradded850.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded850"}}} +{"variants": {"": {"model": "imsm:block/useradded850"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded851.json b/src/main/resources/assets/imsm/blockstates/useradded851.json index e9404a2d..10e73f2e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded851.json +++ b/src/main/resources/assets/imsm/blockstates/useradded851.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded851"}}} +{"variants": {"": {"model": "imsm:block/useradded851"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded852.json b/src/main/resources/assets/imsm/blockstates/useradded852.json index de9d6686..3278aec1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded852.json +++ b/src/main/resources/assets/imsm/blockstates/useradded852.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded852"}}} +{"variants": {"": {"model": "imsm:block/useradded852"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded853.json b/src/main/resources/assets/imsm/blockstates/useradded853.json index d4002284..02149627 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded853.json +++ b/src/main/resources/assets/imsm/blockstates/useradded853.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded853"}}} +{"variants": {"": {"model": "imsm:block/useradded853"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded854.json b/src/main/resources/assets/imsm/blockstates/useradded854.json index 4e786401..b18b0181 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded854.json +++ b/src/main/resources/assets/imsm/blockstates/useradded854.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded854"}}} +{"variants": {"": {"model": "imsm:block/useradded854"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded855.json b/src/main/resources/assets/imsm/blockstates/useradded855.json index 0fb05dd4..3da4bcb5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded855.json +++ b/src/main/resources/assets/imsm/blockstates/useradded855.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded855"}}} +{"variants": {"": {"model": "imsm:block/useradded855"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded856.json b/src/main/resources/assets/imsm/blockstates/useradded856.json index e757b36b..b27df75c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded856.json +++ b/src/main/resources/assets/imsm/blockstates/useradded856.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded856"}}} +{"variants": {"": {"model": "imsm:block/useradded856"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded857.json b/src/main/resources/assets/imsm/blockstates/useradded857.json index 93775de2..d1f00076 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded857.json +++ b/src/main/resources/assets/imsm/blockstates/useradded857.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded857"}}} +{"variants": {"": {"model": "imsm:block/useradded857"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded858.json b/src/main/resources/assets/imsm/blockstates/useradded858.json index 3595a595..8f1a83e1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded858.json +++ b/src/main/resources/assets/imsm/blockstates/useradded858.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded858"}}} +{"variants": {"": {"model": "imsm:block/useradded858"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded859.json b/src/main/resources/assets/imsm/blockstates/useradded859.json index 4b394ca4..5841c296 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded859.json +++ b/src/main/resources/assets/imsm/blockstates/useradded859.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded859"}}} +{"variants": {"": {"model": "imsm:block/useradded859"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded86.json b/src/main/resources/assets/imsm/blockstates/useradded86.json index d5fc7045..92c81f46 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded86.json +++ b/src/main/resources/assets/imsm/blockstates/useradded86.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded86"}}} +{"variants": {"": {"model": "imsm:block/useradded86"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded860.json b/src/main/resources/assets/imsm/blockstates/useradded860.json index 5e3b53c6..ee789c0f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded860.json +++ b/src/main/resources/assets/imsm/blockstates/useradded860.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded860"}}} +{"variants": {"": {"model": "imsm:block/useradded860"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded861.json b/src/main/resources/assets/imsm/blockstates/useradded861.json index 647ffbbf..0b8a330d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded861.json +++ b/src/main/resources/assets/imsm/blockstates/useradded861.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded861"}}} +{"variants": {"": {"model": "imsm:block/useradded861"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded862.json b/src/main/resources/assets/imsm/blockstates/useradded862.json index 83773f14..74ed6dc8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded862.json +++ b/src/main/resources/assets/imsm/blockstates/useradded862.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded862"}}} +{"variants": {"": {"model": "imsm:block/useradded862"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded863.json b/src/main/resources/assets/imsm/blockstates/useradded863.json index cc52ccc6..9b70c07a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded863.json +++ b/src/main/resources/assets/imsm/blockstates/useradded863.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded863"}}} +{"variants": {"": {"model": "imsm:block/useradded863"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded864.json b/src/main/resources/assets/imsm/blockstates/useradded864.json index b802192a..23bd0caf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded864.json +++ b/src/main/resources/assets/imsm/blockstates/useradded864.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded864"}}} +{"variants": {"": {"model": "imsm:block/useradded864"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded865.json b/src/main/resources/assets/imsm/blockstates/useradded865.json index 1d1503ee..399f3b51 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded865.json +++ b/src/main/resources/assets/imsm/blockstates/useradded865.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded865"}}} +{"variants": {"": {"model": "imsm:block/useradded865"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded866.json b/src/main/resources/assets/imsm/blockstates/useradded866.json index 1f229049..68231f09 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded866.json +++ b/src/main/resources/assets/imsm/blockstates/useradded866.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded866"}}} +{"variants": {"": {"model": "imsm:block/useradded866"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded867.json b/src/main/resources/assets/imsm/blockstates/useradded867.json index 0a0bcbb9..64ed2253 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded867.json +++ b/src/main/resources/assets/imsm/blockstates/useradded867.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded867"}}} +{"variants": {"": {"model": "imsm:block/useradded867"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded868.json b/src/main/resources/assets/imsm/blockstates/useradded868.json index f04dfd63..34f4e605 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded868.json +++ b/src/main/resources/assets/imsm/blockstates/useradded868.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded868"}}} +{"variants": {"": {"model": "imsm:block/useradded868"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded869.json b/src/main/resources/assets/imsm/blockstates/useradded869.json index ea4a423e..b5a59e46 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded869.json +++ b/src/main/resources/assets/imsm/blockstates/useradded869.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded869"}}} +{"variants": {"": {"model": "imsm:block/useradded869"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded87.json b/src/main/resources/assets/imsm/blockstates/useradded87.json index 4a139e41..3002db3c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded87.json +++ b/src/main/resources/assets/imsm/blockstates/useradded87.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded87"}}} +{"variants": {"": {"model": "imsm:block/useradded87"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded870.json b/src/main/resources/assets/imsm/blockstates/useradded870.json index c15ef244..1851aa48 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded870.json +++ b/src/main/resources/assets/imsm/blockstates/useradded870.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded870"}}} +{"variants": {"": {"model": "imsm:block/useradded870"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded871.json b/src/main/resources/assets/imsm/blockstates/useradded871.json index eac2d45b..44e6cf81 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded871.json +++ b/src/main/resources/assets/imsm/blockstates/useradded871.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded871"}}} +{"variants": {"": {"model": "imsm:block/useradded871"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded872.json b/src/main/resources/assets/imsm/blockstates/useradded872.json index 43b9a0c8..2717e8e1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded872.json +++ b/src/main/resources/assets/imsm/blockstates/useradded872.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded872"}}} +{"variants": {"": {"model": "imsm:block/useradded872"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded873.json b/src/main/resources/assets/imsm/blockstates/useradded873.json index bc1f4c1f..46eec808 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded873.json +++ b/src/main/resources/assets/imsm/blockstates/useradded873.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded873"}}} +{"variants": {"": {"model": "imsm:block/useradded873"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded874.json b/src/main/resources/assets/imsm/blockstates/useradded874.json index 2bd1f1d9..8431f0c9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded874.json +++ b/src/main/resources/assets/imsm/blockstates/useradded874.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded874"}}} +{"variants": {"": {"model": "imsm:block/useradded874"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded875.json b/src/main/resources/assets/imsm/blockstates/useradded875.json index 8604ab1c..27e03fb0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded875.json +++ b/src/main/resources/assets/imsm/blockstates/useradded875.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded875"}}} +{"variants": {"": {"model": "imsm:block/useradded875"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded876.json b/src/main/resources/assets/imsm/blockstates/useradded876.json index 70d06546..d2deb078 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded876.json +++ b/src/main/resources/assets/imsm/blockstates/useradded876.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded876"}}} +{"variants": {"": {"model": "imsm:block/useradded876"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded877.json b/src/main/resources/assets/imsm/blockstates/useradded877.json index acdb2c63..c31f214e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded877.json +++ b/src/main/resources/assets/imsm/blockstates/useradded877.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded877"}}} +{"variants": {"": {"model": "imsm:block/useradded877"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded878.json b/src/main/resources/assets/imsm/blockstates/useradded878.json index fe02e984..67c7a44f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded878.json +++ b/src/main/resources/assets/imsm/blockstates/useradded878.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded878"}}} +{"variants": {"": {"model": "imsm:block/useradded878"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded879.json b/src/main/resources/assets/imsm/blockstates/useradded879.json index 4c071883..9a924a5c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded879.json +++ b/src/main/resources/assets/imsm/blockstates/useradded879.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded879"}}} +{"variants": {"": {"model": "imsm:block/useradded879"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded88.json b/src/main/resources/assets/imsm/blockstates/useradded88.json index d8b71490..cbc5e1db 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded88.json +++ b/src/main/resources/assets/imsm/blockstates/useradded88.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded88"}}} +{"variants": {"": {"model": "imsm:block/useradded88"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded880.json b/src/main/resources/assets/imsm/blockstates/useradded880.json index 1509d638..4ed8dc74 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded880.json +++ b/src/main/resources/assets/imsm/blockstates/useradded880.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded880"}}} +{"variants": {"": {"model": "imsm:block/useradded880"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded881.json b/src/main/resources/assets/imsm/blockstates/useradded881.json index 432c4a3a..23e8d425 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded881.json +++ b/src/main/resources/assets/imsm/blockstates/useradded881.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded881"}}} +{"variants": {"": {"model": "imsm:block/useradded881"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded882.json b/src/main/resources/assets/imsm/blockstates/useradded882.json index c3c0e8ba..d79081ab 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded882.json +++ b/src/main/resources/assets/imsm/blockstates/useradded882.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded882"}}} +{"variants": {"": {"model": "imsm:block/useradded882"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded883.json b/src/main/resources/assets/imsm/blockstates/useradded883.json index 5ac33af6..31176671 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded883.json +++ b/src/main/resources/assets/imsm/blockstates/useradded883.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded883"}}} +{"variants": {"": {"model": "imsm:block/useradded883"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded884.json b/src/main/resources/assets/imsm/blockstates/useradded884.json index 0cb64d2c..62fd8f72 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded884.json +++ b/src/main/resources/assets/imsm/blockstates/useradded884.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded884"}}} +{"variants": {"": {"model": "imsm:block/useradded884"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded885.json b/src/main/resources/assets/imsm/blockstates/useradded885.json index 31d5391d..f1d850b0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded885.json +++ b/src/main/resources/assets/imsm/blockstates/useradded885.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded885"}}} +{"variants": {"": {"model": "imsm:block/useradded885"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded886.json b/src/main/resources/assets/imsm/blockstates/useradded886.json index 3199e38a..8c4ada17 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded886.json +++ b/src/main/resources/assets/imsm/blockstates/useradded886.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded886"}}} +{"variants": {"": {"model": "imsm:block/useradded886"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded887.json b/src/main/resources/assets/imsm/blockstates/useradded887.json index 18fe9628..ceac7131 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded887.json +++ b/src/main/resources/assets/imsm/blockstates/useradded887.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded887"}}} +{"variants": {"": {"model": "imsm:block/useradded887"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded888.json b/src/main/resources/assets/imsm/blockstates/useradded888.json index e4b54a41..52165890 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded888.json +++ b/src/main/resources/assets/imsm/blockstates/useradded888.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded888"}}} +{"variants": {"": {"model": "imsm:block/useradded888"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded889.json b/src/main/resources/assets/imsm/blockstates/useradded889.json index a8bc4717..d8a966ce 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded889.json +++ b/src/main/resources/assets/imsm/blockstates/useradded889.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded889"}}} +{"variants": {"": {"model": "imsm:block/useradded889"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded89.json b/src/main/resources/assets/imsm/blockstates/useradded89.json index 31530a15..39f47814 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded89.json +++ b/src/main/resources/assets/imsm/blockstates/useradded89.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded89"}}} +{"variants": {"": {"model": "imsm:block/useradded89"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded890.json b/src/main/resources/assets/imsm/blockstates/useradded890.json index 6fa32e0b..7f73eac3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded890.json +++ b/src/main/resources/assets/imsm/blockstates/useradded890.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded890"}}} +{"variants": {"": {"model": "imsm:block/useradded890"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded891.json b/src/main/resources/assets/imsm/blockstates/useradded891.json index 225aef76..34c3d13d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded891.json +++ b/src/main/resources/assets/imsm/blockstates/useradded891.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded891"}}} +{"variants": {"": {"model": "imsm:block/useradded891"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded892.json b/src/main/resources/assets/imsm/blockstates/useradded892.json index 59e9c68b..4fb3a2f4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded892.json +++ b/src/main/resources/assets/imsm/blockstates/useradded892.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded892"}}} +{"variants": {"": {"model": "imsm:block/useradded892"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded893.json b/src/main/resources/assets/imsm/blockstates/useradded893.json index b0163fce..f06a3dde 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded893.json +++ b/src/main/resources/assets/imsm/blockstates/useradded893.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded893"}}} +{"variants": {"": {"model": "imsm:block/useradded893"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded894.json b/src/main/resources/assets/imsm/blockstates/useradded894.json index c9acd26e..1e175aaf 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded894.json +++ b/src/main/resources/assets/imsm/blockstates/useradded894.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded894"}}} +{"variants": {"": {"model": "imsm:block/useradded894"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded895.json b/src/main/resources/assets/imsm/blockstates/useradded895.json index a44f0059..9252501a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded895.json +++ b/src/main/resources/assets/imsm/blockstates/useradded895.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded895"}}} +{"variants": {"": {"model": "imsm:block/useradded895"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded896.json b/src/main/resources/assets/imsm/blockstates/useradded896.json index 06835085..8a56e479 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded896.json +++ b/src/main/resources/assets/imsm/blockstates/useradded896.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded896"}}} +{"variants": {"": {"model": "imsm:block/useradded896"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded897.json b/src/main/resources/assets/imsm/blockstates/useradded897.json index 7da01364..f0626a8b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded897.json +++ b/src/main/resources/assets/imsm/blockstates/useradded897.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded897"}}} +{"variants": {"": {"model": "imsm:block/useradded897"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded898.json b/src/main/resources/assets/imsm/blockstates/useradded898.json index 1590a4eb..2845a5cd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded898.json +++ b/src/main/resources/assets/imsm/blockstates/useradded898.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded898"}}} +{"variants": {"": {"model": "imsm:block/useradded898"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded899.json b/src/main/resources/assets/imsm/blockstates/useradded899.json index 19e98538..873e6efe 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded899.json +++ b/src/main/resources/assets/imsm/blockstates/useradded899.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded899"}}} +{"variants": {"": {"model": "imsm:block/useradded899"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded9.json b/src/main/resources/assets/imsm/blockstates/useradded9.json index 8747d6be..c1764877 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded9.json +++ b/src/main/resources/assets/imsm/blockstates/useradded9.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded9"}}} +{"variants": {"": {"model": "imsm:block/useradded9"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded90.json b/src/main/resources/assets/imsm/blockstates/useradded90.json index 8041eaaa..02dee12f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded90.json +++ b/src/main/resources/assets/imsm/blockstates/useradded90.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded90"}}} +{"variants": {"": {"model": "imsm:block/useradded90"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded900.json b/src/main/resources/assets/imsm/blockstates/useradded900.json index 11761eec..5b00bce9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded900.json +++ b/src/main/resources/assets/imsm/blockstates/useradded900.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded900"}}} +{"variants": {"": {"model": "imsm:block/useradded900"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded901.json b/src/main/resources/assets/imsm/blockstates/useradded901.json index dce47ff0..9d3c3202 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded901.json +++ b/src/main/resources/assets/imsm/blockstates/useradded901.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded901"}}} +{"variants": {"": {"model": "imsm:block/useradded901"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded902.json b/src/main/resources/assets/imsm/blockstates/useradded902.json index 1afcd6cd..eaae0731 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded902.json +++ b/src/main/resources/assets/imsm/blockstates/useradded902.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded902"}}} +{"variants": {"": {"model": "imsm:block/useradded902"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded903.json b/src/main/resources/assets/imsm/blockstates/useradded903.json index 8fef21cf..5f45073c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded903.json +++ b/src/main/resources/assets/imsm/blockstates/useradded903.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded903"}}} +{"variants": {"": {"model": "imsm:block/useradded903"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded904.json b/src/main/resources/assets/imsm/blockstates/useradded904.json index 77a339d7..f73cf6c8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded904.json +++ b/src/main/resources/assets/imsm/blockstates/useradded904.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded904"}}} +{"variants": {"": {"model": "imsm:block/useradded904"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded905.json b/src/main/resources/assets/imsm/blockstates/useradded905.json index 3c2a8f1e..6efd4aa9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded905.json +++ b/src/main/resources/assets/imsm/blockstates/useradded905.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded905"}}} +{"variants": {"": {"model": "imsm:block/useradded905"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded906.json b/src/main/resources/assets/imsm/blockstates/useradded906.json index d36059ff..a4dad51f 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded906.json +++ b/src/main/resources/assets/imsm/blockstates/useradded906.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded906"}}} +{"variants": {"": {"model": "imsm:block/useradded906"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded907.json b/src/main/resources/assets/imsm/blockstates/useradded907.json index 35d4cc8a..2c4d222c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded907.json +++ b/src/main/resources/assets/imsm/blockstates/useradded907.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded907"}}} +{"variants": {"": {"model": "imsm:block/useradded907"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded908.json b/src/main/resources/assets/imsm/blockstates/useradded908.json index ea01ff99..49005d70 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded908.json +++ b/src/main/resources/assets/imsm/blockstates/useradded908.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded908"}}} +{"variants": {"": {"model": "imsm:block/useradded908"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded909.json b/src/main/resources/assets/imsm/blockstates/useradded909.json index d483395a..c9e79de3 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded909.json +++ b/src/main/resources/assets/imsm/blockstates/useradded909.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded909"}}} +{"variants": {"": {"model": "imsm:block/useradded909"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded91.json b/src/main/resources/assets/imsm/blockstates/useradded91.json index ba683952..25e6d50e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded91.json +++ b/src/main/resources/assets/imsm/blockstates/useradded91.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded91"}}} +{"variants": {"": {"model": "imsm:block/useradded91"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded910.json b/src/main/resources/assets/imsm/blockstates/useradded910.json index 40b732ec..92c424cb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded910.json +++ b/src/main/resources/assets/imsm/blockstates/useradded910.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded910"}}} +{"variants": {"": {"model": "imsm:block/useradded910"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded911.json b/src/main/resources/assets/imsm/blockstates/useradded911.json index 2195f74a..bcfc3ec9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded911.json +++ b/src/main/resources/assets/imsm/blockstates/useradded911.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded911"}}} +{"variants": {"": {"model": "imsm:block/useradded911"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded912.json b/src/main/resources/assets/imsm/blockstates/useradded912.json index 7c4354bf..3c8fbf82 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded912.json +++ b/src/main/resources/assets/imsm/blockstates/useradded912.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded912"}}} +{"variants": {"": {"model": "imsm:block/useradded912"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded913.json b/src/main/resources/assets/imsm/blockstates/useradded913.json index 29743b94..016b496d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded913.json +++ b/src/main/resources/assets/imsm/blockstates/useradded913.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded913"}}} +{"variants": {"": {"model": "imsm:block/useradded913"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded914.json b/src/main/resources/assets/imsm/blockstates/useradded914.json index 206e46d1..2e409902 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded914.json +++ b/src/main/resources/assets/imsm/blockstates/useradded914.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded914"}}} +{"variants": {"": {"model": "imsm:block/useradded914"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded915.json b/src/main/resources/assets/imsm/blockstates/useradded915.json index 08ff2b28..e7e790a9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded915.json +++ b/src/main/resources/assets/imsm/blockstates/useradded915.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded915"}}} +{"variants": {"": {"model": "imsm:block/useradded915"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded916.json b/src/main/resources/assets/imsm/blockstates/useradded916.json index 7d35a2a4..3aece8ba 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded916.json +++ b/src/main/resources/assets/imsm/blockstates/useradded916.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded916"}}} +{"variants": {"": {"model": "imsm:block/useradded916"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded917.json b/src/main/resources/assets/imsm/blockstates/useradded917.json index 1956e716..81d0a315 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded917.json +++ b/src/main/resources/assets/imsm/blockstates/useradded917.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded917"}}} +{"variants": {"": {"model": "imsm:block/useradded917"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded918.json b/src/main/resources/assets/imsm/blockstates/useradded918.json index 9fb0d160..bfd8e302 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded918.json +++ b/src/main/resources/assets/imsm/blockstates/useradded918.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded918"}}} +{"variants": {"": {"model": "imsm:block/useradded918"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded919.json b/src/main/resources/assets/imsm/blockstates/useradded919.json index 9a72cd55..82621257 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded919.json +++ b/src/main/resources/assets/imsm/blockstates/useradded919.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded919"}}} +{"variants": {"": {"model": "imsm:block/useradded919"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded92.json b/src/main/resources/assets/imsm/blockstates/useradded92.json index cd2e7569..a9eadafa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded92.json +++ b/src/main/resources/assets/imsm/blockstates/useradded92.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded92"}}} +{"variants": {"": {"model": "imsm:block/useradded92"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded920.json b/src/main/resources/assets/imsm/blockstates/useradded920.json index 3d52e210..e57ce584 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded920.json +++ b/src/main/resources/assets/imsm/blockstates/useradded920.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded920"}}} +{"variants": {"": {"model": "imsm:block/useradded920"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded921.json b/src/main/resources/assets/imsm/blockstates/useradded921.json index 921ea2e4..2840d9f6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded921.json +++ b/src/main/resources/assets/imsm/blockstates/useradded921.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded921"}}} +{"variants": {"": {"model": "imsm:block/useradded921"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded922.json b/src/main/resources/assets/imsm/blockstates/useradded922.json index 41ad6fd0..3af70a11 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded922.json +++ b/src/main/resources/assets/imsm/blockstates/useradded922.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded922"}}} +{"variants": {"": {"model": "imsm:block/useradded922"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded923.json b/src/main/resources/assets/imsm/blockstates/useradded923.json index ebe7905f..3fef3f3a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded923.json +++ b/src/main/resources/assets/imsm/blockstates/useradded923.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded923"}}} +{"variants": {"": {"model": "imsm:block/useradded923"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded924.json b/src/main/resources/assets/imsm/blockstates/useradded924.json index f7da74c9..3be90cb7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded924.json +++ b/src/main/resources/assets/imsm/blockstates/useradded924.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded924"}}} +{"variants": {"": {"model": "imsm:block/useradded924"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded925.json b/src/main/resources/assets/imsm/blockstates/useradded925.json index a9aec2f6..8f42c257 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded925.json +++ b/src/main/resources/assets/imsm/blockstates/useradded925.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded925"}}} +{"variants": {"": {"model": "imsm:block/useradded925"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded926.json b/src/main/resources/assets/imsm/blockstates/useradded926.json index 61e5efd1..a18eeeed 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded926.json +++ b/src/main/resources/assets/imsm/blockstates/useradded926.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded926"}}} +{"variants": {"": {"model": "imsm:block/useradded926"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded927.json b/src/main/resources/assets/imsm/blockstates/useradded927.json index b687325c..7d8436ad 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded927.json +++ b/src/main/resources/assets/imsm/blockstates/useradded927.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded927"}}} +{"variants": {"": {"model": "imsm:block/useradded927"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded928.json b/src/main/resources/assets/imsm/blockstates/useradded928.json index c8ff3160..57723b96 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded928.json +++ b/src/main/resources/assets/imsm/blockstates/useradded928.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded928"}}} +{"variants": {"": {"model": "imsm:block/useradded928"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded929.json b/src/main/resources/assets/imsm/blockstates/useradded929.json index 3f69ea72..ec96de3a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded929.json +++ b/src/main/resources/assets/imsm/blockstates/useradded929.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded929"}}} +{"variants": {"": {"model": "imsm:block/useradded929"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded93.json b/src/main/resources/assets/imsm/blockstates/useradded93.json index b5e4e01d..fb30b014 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded93.json +++ b/src/main/resources/assets/imsm/blockstates/useradded93.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded93"}}} +{"variants": {"": {"model": "imsm:block/useradded93"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded930.json b/src/main/resources/assets/imsm/blockstates/useradded930.json index 23bdbf4b..6286dc23 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded930.json +++ b/src/main/resources/assets/imsm/blockstates/useradded930.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded930"}}} +{"variants": {"": {"model": "imsm:block/useradded930"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded931.json b/src/main/resources/assets/imsm/blockstates/useradded931.json index 4d327ac8..a877cd38 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded931.json +++ b/src/main/resources/assets/imsm/blockstates/useradded931.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded931"}}} +{"variants": {"": {"model": "imsm:block/useradded931"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded932.json b/src/main/resources/assets/imsm/blockstates/useradded932.json index 6a250e65..a6f30037 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded932.json +++ b/src/main/resources/assets/imsm/blockstates/useradded932.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded932"}}} +{"variants": {"": {"model": "imsm:block/useradded932"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded933.json b/src/main/resources/assets/imsm/blockstates/useradded933.json index 25904d67..4d6bfb2e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded933.json +++ b/src/main/resources/assets/imsm/blockstates/useradded933.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded933"}}} +{"variants": {"": {"model": "imsm:block/useradded933"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded934.json b/src/main/resources/assets/imsm/blockstates/useradded934.json index 00d5ad3c..6d41d57a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded934.json +++ b/src/main/resources/assets/imsm/blockstates/useradded934.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded934"}}} +{"variants": {"": {"model": "imsm:block/useradded934"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded935.json b/src/main/resources/assets/imsm/blockstates/useradded935.json index fe9f385f..48aca914 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded935.json +++ b/src/main/resources/assets/imsm/blockstates/useradded935.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded935"}}} +{"variants": {"": {"model": "imsm:block/useradded935"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded936.json b/src/main/resources/assets/imsm/blockstates/useradded936.json index 01c678c9..a10d5462 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded936.json +++ b/src/main/resources/assets/imsm/blockstates/useradded936.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded936"}}} +{"variants": {"": {"model": "imsm:block/useradded936"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded937.json b/src/main/resources/assets/imsm/blockstates/useradded937.json index 483f9aeb..eb0e93bb 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded937.json +++ b/src/main/resources/assets/imsm/blockstates/useradded937.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded937"}}} +{"variants": {"": {"model": "imsm:block/useradded937"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded938.json b/src/main/resources/assets/imsm/blockstates/useradded938.json index ee38d44c..16c05686 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded938.json +++ b/src/main/resources/assets/imsm/blockstates/useradded938.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded938"}}} +{"variants": {"": {"model": "imsm:block/useradded938"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded939.json b/src/main/resources/assets/imsm/blockstates/useradded939.json index 83b98ff4..ae9abeb7 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded939.json +++ b/src/main/resources/assets/imsm/blockstates/useradded939.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded939"}}} +{"variants": {"": {"model": "imsm:block/useradded939"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded94.json b/src/main/resources/assets/imsm/blockstates/useradded94.json index a7cd44a4..0f8856ec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded94.json +++ b/src/main/resources/assets/imsm/blockstates/useradded94.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded94"}}} +{"variants": {"": {"model": "imsm:block/useradded94"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded940.json b/src/main/resources/assets/imsm/blockstates/useradded940.json index a1e7b33b..0d07be1d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded940.json +++ b/src/main/resources/assets/imsm/blockstates/useradded940.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded940"}}} +{"variants": {"": {"model": "imsm:block/useradded940"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded941.json b/src/main/resources/assets/imsm/blockstates/useradded941.json index 754d2756..06898816 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded941.json +++ b/src/main/resources/assets/imsm/blockstates/useradded941.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded941"}}} +{"variants": {"": {"model": "imsm:block/useradded941"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded942.json b/src/main/resources/assets/imsm/blockstates/useradded942.json index 4bf2b32c..397bd654 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded942.json +++ b/src/main/resources/assets/imsm/blockstates/useradded942.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded942"}}} +{"variants": {"": {"model": "imsm:block/useradded942"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded943.json b/src/main/resources/assets/imsm/blockstates/useradded943.json index 9dbfd229..fe2a4067 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded943.json +++ b/src/main/resources/assets/imsm/blockstates/useradded943.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded943"}}} +{"variants": {"": {"model": "imsm:block/useradded943"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded944.json b/src/main/resources/assets/imsm/blockstates/useradded944.json index cd60d927..fe5647ee 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded944.json +++ b/src/main/resources/assets/imsm/blockstates/useradded944.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded944"}}} +{"variants": {"": {"model": "imsm:block/useradded944"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded945.json b/src/main/resources/assets/imsm/blockstates/useradded945.json index b4d13d43..bf94b0ac 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded945.json +++ b/src/main/resources/assets/imsm/blockstates/useradded945.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded945"}}} +{"variants": {"": {"model": "imsm:block/useradded945"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded946.json b/src/main/resources/assets/imsm/blockstates/useradded946.json index 7d50bfb9..db67103c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded946.json +++ b/src/main/resources/assets/imsm/blockstates/useradded946.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded946"}}} +{"variants": {"": {"model": "imsm:block/useradded946"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded947.json b/src/main/resources/assets/imsm/blockstates/useradded947.json index 2c9fddfe..4342453d 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded947.json +++ b/src/main/resources/assets/imsm/blockstates/useradded947.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded947"}}} +{"variants": {"": {"model": "imsm:block/useradded947"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded948.json b/src/main/resources/assets/imsm/blockstates/useradded948.json index 3dada887..ca85a7de 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded948.json +++ b/src/main/resources/assets/imsm/blockstates/useradded948.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded948"}}} +{"variants": {"": {"model": "imsm:block/useradded948"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded949.json b/src/main/resources/assets/imsm/blockstates/useradded949.json index 54a4c94f..35039614 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded949.json +++ b/src/main/resources/assets/imsm/blockstates/useradded949.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded949"}}} +{"variants": {"": {"model": "imsm:block/useradded949"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded95.json b/src/main/resources/assets/imsm/blockstates/useradded95.json index 8c9d1581..cd5d3f09 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded95.json +++ b/src/main/resources/assets/imsm/blockstates/useradded95.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded95"}}} +{"variants": {"": {"model": "imsm:block/useradded95"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded950.json b/src/main/resources/assets/imsm/blockstates/useradded950.json index ef9535f4..ccf40c51 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded950.json +++ b/src/main/resources/assets/imsm/blockstates/useradded950.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded950"}}} +{"variants": {"": {"model": "imsm:block/useradded950"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded951.json b/src/main/resources/assets/imsm/blockstates/useradded951.json index 39f416e6..77136bdd 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded951.json +++ b/src/main/resources/assets/imsm/blockstates/useradded951.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded951"}}} +{"variants": {"": {"model": "imsm:block/useradded951"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded952.json b/src/main/resources/assets/imsm/blockstates/useradded952.json index 4af8d16f..0dc875ec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded952.json +++ b/src/main/resources/assets/imsm/blockstates/useradded952.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded952"}}} +{"variants": {"": {"model": "imsm:block/useradded952"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded953.json b/src/main/resources/assets/imsm/blockstates/useradded953.json index b5142f4d..e3a797e5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded953.json +++ b/src/main/resources/assets/imsm/blockstates/useradded953.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded953"}}} +{"variants": {"": {"model": "imsm:block/useradded953"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded954.json b/src/main/resources/assets/imsm/blockstates/useradded954.json index 4d7a4c93..8319e781 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded954.json +++ b/src/main/resources/assets/imsm/blockstates/useradded954.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded954"}}} +{"variants": {"": {"model": "imsm:block/useradded954"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded955.json b/src/main/resources/assets/imsm/blockstates/useradded955.json index 3ca6031c..d45eac70 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded955.json +++ b/src/main/resources/assets/imsm/blockstates/useradded955.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded955"}}} +{"variants": {"": {"model": "imsm:block/useradded955"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded956.json b/src/main/resources/assets/imsm/blockstates/useradded956.json index d37b5f28..e828dcf0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded956.json +++ b/src/main/resources/assets/imsm/blockstates/useradded956.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded956"}}} +{"variants": {"": {"model": "imsm:block/useradded956"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded957.json b/src/main/resources/assets/imsm/blockstates/useradded957.json index c401fc36..eccdfd69 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded957.json +++ b/src/main/resources/assets/imsm/blockstates/useradded957.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded957"}}} +{"variants": {"": {"model": "imsm:block/useradded957"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded958.json b/src/main/resources/assets/imsm/blockstates/useradded958.json index 1088f22b..6b2d1a80 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded958.json +++ b/src/main/resources/assets/imsm/blockstates/useradded958.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded958"}}} +{"variants": {"": {"model": "imsm:block/useradded958"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded959.json b/src/main/resources/assets/imsm/blockstates/useradded959.json index 2fe130c3..ba9cab61 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded959.json +++ b/src/main/resources/assets/imsm/blockstates/useradded959.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded959"}}} +{"variants": {"": {"model": "imsm:block/useradded959"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded96.json b/src/main/resources/assets/imsm/blockstates/useradded96.json index c0191a5c..e1a3bd25 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded96.json +++ b/src/main/resources/assets/imsm/blockstates/useradded96.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded96"}}} +{"variants": {"": {"model": "imsm:block/useradded96"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded960.json b/src/main/resources/assets/imsm/blockstates/useradded960.json index a0866a04..d914c5ec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded960.json +++ b/src/main/resources/assets/imsm/blockstates/useradded960.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded960"}}} +{"variants": {"": {"model": "imsm:block/useradded960"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded961.json b/src/main/resources/assets/imsm/blockstates/useradded961.json index 07ba475c..60d6faa6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded961.json +++ b/src/main/resources/assets/imsm/blockstates/useradded961.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded961"}}} +{"variants": {"": {"model": "imsm:block/useradded961"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded962.json b/src/main/resources/assets/imsm/blockstates/useradded962.json index 5aae1cd0..404043ec 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded962.json +++ b/src/main/resources/assets/imsm/blockstates/useradded962.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded962"}}} +{"variants": {"": {"model": "imsm:block/useradded962"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded963.json b/src/main/resources/assets/imsm/blockstates/useradded963.json index 3785db79..141c1517 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded963.json +++ b/src/main/resources/assets/imsm/blockstates/useradded963.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded963"}}} +{"variants": {"": {"model": "imsm:block/useradded963"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded964.json b/src/main/resources/assets/imsm/blockstates/useradded964.json index 6c7a7a8b..4429981e 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded964.json +++ b/src/main/resources/assets/imsm/blockstates/useradded964.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded964"}}} +{"variants": {"": {"model": "imsm:block/useradded964"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded965.json b/src/main/resources/assets/imsm/blockstates/useradded965.json index 4ad20248..e7b89840 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded965.json +++ b/src/main/resources/assets/imsm/blockstates/useradded965.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded965"}}} +{"variants": {"": {"model": "imsm:block/useradded965"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded966.json b/src/main/resources/assets/imsm/blockstates/useradded966.json index 187a7dfa..ec8a8f29 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded966.json +++ b/src/main/resources/assets/imsm/blockstates/useradded966.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded966"}}} +{"variants": {"": {"model": "imsm:block/useradded966"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded967.json b/src/main/resources/assets/imsm/blockstates/useradded967.json index c5b87a50..284ac3a2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded967.json +++ b/src/main/resources/assets/imsm/blockstates/useradded967.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded967"}}} +{"variants": {"": {"model": "imsm:block/useradded967"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded968.json b/src/main/resources/assets/imsm/blockstates/useradded968.json index 63d84d96..21354039 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded968.json +++ b/src/main/resources/assets/imsm/blockstates/useradded968.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded968"}}} +{"variants": {"": {"model": "imsm:block/useradded968"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded969.json b/src/main/resources/assets/imsm/blockstates/useradded969.json index be30b0a9..e670ee34 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded969.json +++ b/src/main/resources/assets/imsm/blockstates/useradded969.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded969"}}} +{"variants": {"": {"model": "imsm:block/useradded969"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded97.json b/src/main/resources/assets/imsm/blockstates/useradded97.json index 79dcb49b..b45f30f4 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded97.json +++ b/src/main/resources/assets/imsm/blockstates/useradded97.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded97"}}} +{"variants": {"": {"model": "imsm:block/useradded97"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded970.json b/src/main/resources/assets/imsm/blockstates/useradded970.json index 4a944d6f..ae48da87 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded970.json +++ b/src/main/resources/assets/imsm/blockstates/useradded970.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded970"}}} +{"variants": {"": {"model": "imsm:block/useradded970"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded971.json b/src/main/resources/assets/imsm/blockstates/useradded971.json index 9053ff57..d77dc834 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded971.json +++ b/src/main/resources/assets/imsm/blockstates/useradded971.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded971"}}} +{"variants": {"": {"model": "imsm:block/useradded971"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded972.json b/src/main/resources/assets/imsm/blockstates/useradded972.json index 418d5bd6..5272f4ed 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded972.json +++ b/src/main/resources/assets/imsm/blockstates/useradded972.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded972"}}} +{"variants": {"": {"model": "imsm:block/useradded972"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded973.json b/src/main/resources/assets/imsm/blockstates/useradded973.json index d7dc06fe..4e60f374 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded973.json +++ b/src/main/resources/assets/imsm/blockstates/useradded973.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded973"}}} +{"variants": {"": {"model": "imsm:block/useradded973"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded974.json b/src/main/resources/assets/imsm/blockstates/useradded974.json index 6616c230..47733762 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded974.json +++ b/src/main/resources/assets/imsm/blockstates/useradded974.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded974"}}} +{"variants": {"": {"model": "imsm:block/useradded974"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded975.json b/src/main/resources/assets/imsm/blockstates/useradded975.json index 100100c6..2be508d6 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded975.json +++ b/src/main/resources/assets/imsm/blockstates/useradded975.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded975"}}} +{"variants": {"": {"model": "imsm:block/useradded975"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded976.json b/src/main/resources/assets/imsm/blockstates/useradded976.json index 60d7e35a..627b615a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded976.json +++ b/src/main/resources/assets/imsm/blockstates/useradded976.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded976"}}} +{"variants": {"": {"model": "imsm:block/useradded976"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded977.json b/src/main/resources/assets/imsm/blockstates/useradded977.json index 2220ce7d..fe61d12c 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded977.json +++ b/src/main/resources/assets/imsm/blockstates/useradded977.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded977"}}} +{"variants": {"": {"model": "imsm:block/useradded977"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded978.json b/src/main/resources/assets/imsm/blockstates/useradded978.json index cabe97ab..f4e36fe1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded978.json +++ b/src/main/resources/assets/imsm/blockstates/useradded978.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded978"}}} +{"variants": {"": {"model": "imsm:block/useradded978"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded979.json b/src/main/resources/assets/imsm/blockstates/useradded979.json index 8172b837..073a1b37 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded979.json +++ b/src/main/resources/assets/imsm/blockstates/useradded979.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded979"}}} +{"variants": {"": {"model": "imsm:block/useradded979"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded98.json b/src/main/resources/assets/imsm/blockstates/useradded98.json index cb2556fb..325d33d5 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded98.json +++ b/src/main/resources/assets/imsm/blockstates/useradded98.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded98"}}} +{"variants": {"": {"model": "imsm:block/useradded98"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded980.json b/src/main/resources/assets/imsm/blockstates/useradded980.json index 8e89f163..d14f8eaa 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded980.json +++ b/src/main/resources/assets/imsm/blockstates/useradded980.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded980"}}} +{"variants": {"": {"model": "imsm:block/useradded980"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded981.json b/src/main/resources/assets/imsm/blockstates/useradded981.json index d16b210c..79a86a1a 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded981.json +++ b/src/main/resources/assets/imsm/blockstates/useradded981.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded981"}}} +{"variants": {"": {"model": "imsm:block/useradded981"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded982.json b/src/main/resources/assets/imsm/blockstates/useradded982.json index 114b8c57..46705fa2 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded982.json +++ b/src/main/resources/assets/imsm/blockstates/useradded982.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded982"}}} +{"variants": {"": {"model": "imsm:block/useradded982"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded983.json b/src/main/resources/assets/imsm/blockstates/useradded983.json index 7bcb7ed7..51aaee41 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded983.json +++ b/src/main/resources/assets/imsm/blockstates/useradded983.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded983"}}} +{"variants": {"": {"model": "imsm:block/useradded983"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded984.json b/src/main/resources/assets/imsm/blockstates/useradded984.json index a1310225..c93e16f8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded984.json +++ b/src/main/resources/assets/imsm/blockstates/useradded984.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded984"}}} +{"variants": {"": {"model": "imsm:block/useradded984"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded985.json b/src/main/resources/assets/imsm/blockstates/useradded985.json index 693d56bd..1307539b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded985.json +++ b/src/main/resources/assets/imsm/blockstates/useradded985.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded985"}}} +{"variants": {"": {"model": "imsm:block/useradded985"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded986.json b/src/main/resources/assets/imsm/blockstates/useradded986.json index 0ab13d68..c132bd55 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded986.json +++ b/src/main/resources/assets/imsm/blockstates/useradded986.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded986"}}} +{"variants": {"": {"model": "imsm:block/useradded986"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded987.json b/src/main/resources/assets/imsm/blockstates/useradded987.json index b26ba8be..23a4ff1b 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded987.json +++ b/src/main/resources/assets/imsm/blockstates/useradded987.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded987"}}} +{"variants": {"": {"model": "imsm:block/useradded987"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded988.json b/src/main/resources/assets/imsm/blockstates/useradded988.json index 314edd91..1016f5f0 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded988.json +++ b/src/main/resources/assets/imsm/blockstates/useradded988.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded988"}}} +{"variants": {"": {"model": "imsm:block/useradded988"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded989.json b/src/main/resources/assets/imsm/blockstates/useradded989.json index 2c630f6c..5fa29b21 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded989.json +++ b/src/main/resources/assets/imsm/blockstates/useradded989.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded989"}}} +{"variants": {"": {"model": "imsm:block/useradded989"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded99.json b/src/main/resources/assets/imsm/blockstates/useradded99.json index 363fb72b..ec46f5d8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded99.json +++ b/src/main/resources/assets/imsm/blockstates/useradded99.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded99"}}} +{"variants": {"": {"model": "imsm:block/useradded99"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded990.json b/src/main/resources/assets/imsm/blockstates/useradded990.json index 50a4a038..775742a1 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded990.json +++ b/src/main/resources/assets/imsm/blockstates/useradded990.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded990"}}} +{"variants": {"": {"model": "imsm:block/useradded990"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded991.json b/src/main/resources/assets/imsm/blockstates/useradded991.json index f0257f27..3ab00e71 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded991.json +++ b/src/main/resources/assets/imsm/blockstates/useradded991.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded991"}}} +{"variants": {"": {"model": "imsm:block/useradded991"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded992.json b/src/main/resources/assets/imsm/blockstates/useradded992.json index 10da3723..ca213ec8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded992.json +++ b/src/main/resources/assets/imsm/blockstates/useradded992.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded992"}}} +{"variants": {"": {"model": "imsm:block/useradded992"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded993.json b/src/main/resources/assets/imsm/blockstates/useradded993.json index ead93b04..7e803fd9 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded993.json +++ b/src/main/resources/assets/imsm/blockstates/useradded993.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded993"}}} +{"variants": {"": {"model": "imsm:block/useradded993"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded994.json b/src/main/resources/assets/imsm/blockstates/useradded994.json index c9e5e4c1..1bff9326 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded994.json +++ b/src/main/resources/assets/imsm/blockstates/useradded994.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded994"}}} +{"variants": {"": {"model": "imsm:block/useradded994"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded995.json b/src/main/resources/assets/imsm/blockstates/useradded995.json index 0905c400..636cba94 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded995.json +++ b/src/main/resources/assets/imsm/blockstates/useradded995.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded995"}}} +{"variants": {"": {"model": "imsm:block/useradded995"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded996.json b/src/main/resources/assets/imsm/blockstates/useradded996.json index b88d640d..c8e4aa38 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded996.json +++ b/src/main/resources/assets/imsm/blockstates/useradded996.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded996"}}} +{"variants": {"": {"model": "imsm:block/useradded996"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded997.json b/src/main/resources/assets/imsm/blockstates/useradded997.json index 13d08a9e..151bac22 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded997.json +++ b/src/main/resources/assets/imsm/blockstates/useradded997.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded997"}}} +{"variants": {"": {"model": "imsm:block/useradded997"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded998.json b/src/main/resources/assets/imsm/blockstates/useradded998.json index ef113bb3..f9892669 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded998.json +++ b/src/main/resources/assets/imsm/blockstates/useradded998.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded998"}}} +{"variants": {"": {"model": "imsm:block/useradded998"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/useradded999.json b/src/main/resources/assets/imsm/blockstates/useradded999.json index 498491f1..7b69b7c8 100644 --- a/src/main/resources/assets/imsm/blockstates/useradded999.json +++ b/src/main/resources/assets/imsm/blockstates/useradded999.json @@ -1 +1 @@ -{"variants":{"normal":{"model":"imsm:useradded999"}}} +{"variants": {"": {"model": "imsm:block/useradded999"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_nucleareast.json b/src/main/resources/assets/imsm/blockstates/utilitypower_nucleareast.json new file mode 100644 index 00000000..a2c1fab9 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_nucleareast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_nucleareast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_nuclearnorth.json b/src/main/resources/assets/imsm/blockstates/utilitypower_nuclearnorth.json new file mode 100644 index 00000000..7b6dd151 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_nuclearnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_nuclearnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_nuclearsouth.json b/src/main/resources/assets/imsm/blockstates/utilitypower_nuclearsouth.json new file mode 100644 index 00000000..e55206a5 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_nuclearsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_nuclearsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_nuclearwest.json b/src/main/resources/assets/imsm/blockstates/utilitypower_nuclearwest.json new file mode 100644 index 00000000..c2cffcaa --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_nuclearwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_nuclearwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoaleast.json b/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoaleast.json new file mode 100644 index 00000000..004b276a --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoaleast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_oilcoaleast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoalnorth.json b/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoalnorth.json new file mode 100644 index 00000000..1edeba28 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoalnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_oilcoalnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoalsouth.json b/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoalsouth.json new file mode 100644 index 00000000..a15fc056 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoalsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_oilcoalsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoalwest.json b/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoalwest.json new file mode 100644 index 00000000..64a28a53 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_oilcoalwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_oilcoalwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_sunnortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/utilitypower_sunnortheastsouthwest.json new file mode 100644 index 00000000..61a1b3d8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_sunnortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_sunnortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_windeast.json b/src/main/resources/assets/imsm/blockstates/utilitypower_windeast.json new file mode 100644 index 00000000..a82468ed --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_windeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_windeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_windnorth.json b/src/main/resources/assets/imsm/blockstates/utilitypower_windnorth.json new file mode 100644 index 00000000..b2def096 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_windnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_windnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_windsouth.json b/src/main/resources/assets/imsm/blockstates/utilitypower_windsouth.json new file mode 100644 index 00000000..159dd426 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_windsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_windsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypower_windwest.json b/src/main/resources/assets/imsm/blockstates/utilitypower_windwest.json new file mode 100644 index 00000000..f2a91219 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypower_windwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypower_windwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypumpjackeastwest.json b/src/main/resources/assets/imsm/blockstates/utilitypumpjackeastwest.json new file mode 100644 index 00000000..eac071f6 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypumpjackeastwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypumpjackeastwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitypumpjacknorthsouth.json b/src/main/resources/assets/imsm/blockstates/utilitypumpjacknorthsouth.json new file mode 100644 index 00000000..ca7cd2c8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitypumpjacknorthsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitypumpjacknorthsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_burningeast.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_burningeast.json new file mode 100644 index 00000000..53729ed8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_burningeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_burningeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_burningnorth.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_burningnorth.json new file mode 100644 index 00000000..19f5b07c --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_burningnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_burningnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_burningsouth.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_burningsouth.json new file mode 100644 index 00000000..6721c4a2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_burningsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_burningsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_burningwest.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_burningwest.json new file mode 100644 index 00000000..d3088523 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_burningwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_burningwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_heapeast.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_heapeast.json new file mode 100644 index 00000000..bcfdf0c0 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_heapeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_heapeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_heapnorth.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_heapnorth.json new file mode 100644 index 00000000..77f5b6db --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_heapnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_heapnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_heapsouth.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_heapsouth.json new file mode 100644 index 00000000..3af9a19e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_heapsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_heapsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_heapwest.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_heapwest.json new file mode 100644 index 00000000..7443fc14 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_heapwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_heapwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_recycleeast.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_recycleeast.json new file mode 100644 index 00000000..9fe00ad3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_recycleeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_recycleeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_recyclenorth.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_recyclenorth.json new file mode 100644 index 00000000..fa0f505e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_recyclenorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_recyclenorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_recyclesouth.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_recyclesouth.json new file mode 100644 index 00000000..bd984976 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_recyclesouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_recyclesouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilityscrap_recyclewest.json b/src/main/resources/assets/imsm/blockstates/utilityscrap_recyclewest.json new file mode 100644 index 00000000..ac51f56d --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilityscrap_recyclewest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilityscrap_recyclewest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitywater_pumpeast.json b/src/main/resources/assets/imsm/blockstates/utilitywater_pumpeast.json new file mode 100644 index 00000000..88ad4419 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitywater_pumpeast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitywater_pumpeast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitywater_pumpnorth.json b/src/main/resources/assets/imsm/blockstates/utilitywater_pumpnorth.json new file mode 100644 index 00000000..f5d72fc3 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitywater_pumpnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitywater_pumpnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitywater_pumpsouth.json b/src/main/resources/assets/imsm/blockstates/utilitywater_pumpsouth.json new file mode 100644 index 00000000..e4d31ae4 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitywater_pumpsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitywater_pumpsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitywater_pumpwest.json b/src/main/resources/assets/imsm/blockstates/utilitywater_pumpwest.json new file mode 100644 index 00000000..078a6411 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitywater_pumpwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitywater_pumpwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitywater_towernortheastsouthwest.json b/src/main/resources/assets/imsm/blockstates/utilitywater_towernortheastsouthwest.json new file mode 100644 index 00000000..d98009f8 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitywater_towernortheastsouthwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitywater_towernortheastsouthwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitywater_treatmenteast.json b/src/main/resources/assets/imsm/blockstates/utilitywater_treatmenteast.json new file mode 100644 index 00000000..c691cb4e --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitywater_treatmenteast.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitywater_treatmenteast"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitywater_treatmentnorth.json b/src/main/resources/assets/imsm/blockstates/utilitywater_treatmentnorth.json new file mode 100644 index 00000000..6bf27cb2 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitywater_treatmentnorth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitywater_treatmentnorth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitywater_treatmentsouth.json b/src/main/resources/assets/imsm/blockstates/utilitywater_treatmentsouth.json new file mode 100644 index 00000000..74b5f853 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitywater_treatmentsouth.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitywater_treatmentsouth"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/utilitywater_treatmentwest.json b/src/main/resources/assets/imsm/blockstates/utilitywater_treatmentwest.json new file mode 100644 index 00000000..a4cf46eb --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/utilitywater_treatmentwest.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/utilitywater_treatmentwest"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/blockstates/woodenhouse.json b/src/main/resources/assets/imsm/blockstates/woodenhouse.json new file mode 100644 index 00000000..c861a629 --- /dev/null +++ b/src/main/resources/assets/imsm/blockstates/woodenhouse.json @@ -0,0 +1 @@ +{"variants": {"": {"model": "imsm:block/woodenhouse"}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/lang/en_US.lang b/src/main/resources/assets/imsm/lang/en_US.lang deleted file mode 100644 index ad94e35a..00000000 --- a/src/main/resources/assets/imsm/lang/en_US.lang +++ /dev/null @@ -1,924 +0,0 @@ -tile.LiveStructureRemover.name=Live Structure Remover -BlockPyramid=Magic Pyramid Block -tile.BlockTower.name=Magic Tower Block -tile.BlockEnchantmentRoom.name=Magic Enchantment Room Block -tile.BlockLighthouse.name=Magic Lighthouse Block -tile.BlockHouse.name=Magic House Block -tile.penwood.name=Magic Wooden Pen Block -tile.peniron.name=Magic Iron Pen Block -tile.pennether.name=Magic Netherbrick Pen Block -tile.BlockGiantTree.name=Magic Huge Tree Block -tile.BlockFarm.name=Magic Wheat Farm Block -tile.BlockStorehouse.name=Magic Storehouse Block -tile.BlockHouseTrap2.name=Magic Trapped House Block -tile.BlockHouseTrap1.name=Magic Trapped House Block -tile.BlockWaterSlide.name=Magic Waterslide Block -tile.BlockBunker.name=Magic Bunker Block -tile.BlockArena1.name=Magic Arena Block -tile.BlockArena2.name=Magic Lava-Arena Block -tile.BlockFarm2.name=Magic Sugar Cane Farm Block -tile.BlockFarm3.name=Magic Melon Farm Block -tile.BlockFarm4.name=Magic Pumpkin Farm Block -tile.BlockPrison.name=Magic Prison Block -tile.BlockPrison2.name=Magic Prison Block -tile.BlockRollercoaster.name=Magic Rollercoaster Block -tile.BlockSkyscraper.name=Magic Skyscraper Block -tile.BlockTorch2.name=Magic Torchpattern Block -tile.BlockAirplane.name=Magic Airplane Block -tile.BlockBoat.name=Magic Boat Block -tile.BlockAirBalloon.name=Magic Airballoon Block -tile.BlockPlane.name=Magic Plane Block -tile.BlockDungeon.name=Magic Dungeon Block -tile.BlockBigPyramid.name=Magic Huge Pyramid Block -tile.BlockCastleTower.name=Magic CastleTower Block -tile.BlockHountedHouse.name=Magic Haunted House Block -tile.BlockMegaTower.name=Magic Mega Skyscraper Block -tile.BlockMegaHouse.name=Magic House Block -tile.BlockMegaHouse2.name=Magic House Block -tile.BlockStadium.name=Magic Stadium Block -tile.FloatingSphere.name=Magic Floating Sphere Block -tile.StadiumSub1.name=Magic Stadium Block -tile.BlockRollerCoaster2.name=Magic Rollercoaster Block -tile.Column.name=Magic Column Block -tile.GlassHouse.name=Magic Glass House Block -tile.StandardBrickHouse.name=Magic Standard Brick House Block -tile.Street.name=Magic Street Block -tile.Shelter.name=Magic Shelter Block - - -tile.DecorationGrassNorthEastSouthWest.name=Grass -tile.DecorationParkEast.name=Park East -tile.DecorationParkingGarageEast.name=Parking Garage East -tile.DecorationParkingGarageNorth.name=Parking Garage North -tile.DecorationParkingGarageSouth.name=Parking Garage South -tile.DecorationParkingGarageWest.name=Parking Garage West -tile.DecorationParkingLotsEast.name=Parking Lots East -tile.DecorationParkingLotsNorth.name=Parking Lots North -tile.DecorationParkingLotsSouth.name=Parking Lots South -tile.DecorationParkingLotsWest.name=Parking Lots West -tile.DecorationParkNorth.name=Park North -tile.DecorationParkSouth.name=Park South -tile.DecorationParkWest.name=Park West -tile.DecorationPlazaFountainNorthEastSouthWest.name=Plaza Fountain -tile.DecorationPlazaNorthEastSouthWest.name=Plaza -tile.DecorationSoccerStadiumEastWest.name=Soccer Stadium East-West -tile.DecorationSoccerStadiumNorthSouth.name=Soccer Stadium North-South -tile.DecorationSquareNorthEastSouthWest.name=Square -tile.DecorationSquareTreeEast.name=Square Tree East -tile.DecorationSquareTreeNorth.name=Square Tree North -tile.DecorationSquareTreeSouth.name=Square Tree South -tile.DecorationSquareTreeWest.name=Square Tree West -tile.FoodCarrotsEastWest.name=Carrots East-West -tile.FoodCarrotsNorthSouth.name=Carrots North-South -tile.FoodFarmEast.name=Farm East -tile.FoodFarmNorth.name=Farm North -tile.FoodFarmSouth.name=Farm South -tile.FoodFarmWest.name=Farm West -tile.FoodPotatoesNorthEastSouthWest.name=Potatoes -tile.FoodStableEastWest.name=Stable East-West -tile.FoodStableNorthSouth.name=Stable North-South -tile.FoodWheatNorthEastSouthWest.name=Wheat -tile.IndustryHigh_DensityBlueEast.name=Blue East -tile.IndustryHigh_DensityBlueNorth.name=Blue North -tile.IndustryHigh_DensityBlueSouth.name=Blue South -tile.IndustryHigh_DensityBlueWest.name=Blue West -tile.IndustryHigh_DensityBrickEast.name=Brick East -tile.IndustryHigh_DensityBrickNorth.name=Brick North -tile.IndustryHigh_DensityBrickSouth.name=Brick South -tile.IndustryHigh_DensityBrickWest.name=Brick West -tile.IndustryHigh_DensityChimneyEast.name=Chimney East -tile.IndustryHigh_DensityChimneyNorth.name=Chimney North -tile.IndustryHigh_DensityChimneySouth.name=Chimney South -tile.IndustryHigh_DensityChimneyWest.name=Chimney West -tile.IndustryHigh_DensityComputerChipEast.name=Computer Chip East -tile.IndustryHigh_DensityComputerChipNorth.name=Computer Chip North -tile.IndustryHigh_DensityComputerChipSouth.name=Computer Chip South -tile.IndustryHigh_DensityComputerChipWest.name=Computer Chip West -tile.IndustryHigh_DensityGreenEast.name=Green East -tile.IndustryHigh_DensityGreenNorth.name=Green North -tile.IndustryHigh_DensityGreenSouth.name=Green South -tile.IndustryHigh_DensityGreenWest.name=Hardened Clay West -tile.IndustryHigh_DensityLightBlueEast.name=Light Blue East -tile.IndustryHigh_DensityLightBlueNorth.name=Light Blue North -tile.IndustryHigh_DensityLightBlueSouth.name=Light Blue South -tile.IndustryHigh_DensityLightBlueWest.name=Light Blue West -tile.IndustryLow_Density3DPrintingEast.name=3D Printing East -tile.IndustryLow_Density3DPrintingNorth.name=3D Printing North -tile.IndustryLow_Density3DPrintingSouth.name=3D Printing South -tile.IndustryLow_Density3DPrintingWest.name=3D Printing West -tile.IndustryLow_DensityBlueEast.name=Blue East -tile.IndustryLow_DensityBlueNorth.name=Blue North -tile.IndustryLow_DensityBlueSouth.name=Blue South -tile.IndustryLow_DensityBlueWest.name=Blue West -tile.IndustryLow_DensityBrickEast.name=Brick East -tile.IndustryLow_DensityBrickEastWest.name=Brick East-West -tile.IndustryLow_DensityBrickNorth.name=Brick North -tile.IndustryLow_DensityBrickNorthSouth.name=Brick North-South -tile.IndustryLow_DensityBrickSouth.name=Brick South -tile.IndustryLow_DensityBrickWest.name=Brick West -tile.IndustryLow_DensityBrownEast.name=Brown East -tile.IndustryLow_DensityBrownEast2.name=Brown East II -tile.IndustryLow_DensityBrownNorth.name=Brown North -tile.IndustryLow_DensityBrownNorth2.name=Brown North II -tile.IndustryLow_DensityBrownSouth.name=Brown South -tile.IndustryLow_DensityBrownWest.name=Brown West -tile.IndustryLow_DensityBrownSouth2.name=Brown South II -tile.IndustryLow_DensityBrownWest2.name=Brown West II -tile.IndustryLow_DensityChimneyEast.name=Chimney East -tile.IndustryLow_DensityChimneyNorth.name=Chimney North -tile.IndustryLow_DensityChimneySouth.name=Chimney South -tile.IndustryLow_DensityChimneyWest.name=Chimney West -tile.IndustryLow_DensityGreenEast.name=Green East -tile.IndustryLow_DensityGreenNorth.name=Green North -tile.IndustryLow_DensityGreenSouth.name=Green South -tile.IndustryLow_DensityGreenWest.name=Green West -tile.IndustryLow_DensityIronEast.name=Iron East -tile.IndustryLow_DensityIronNorth.name=Iron North -tile.IndustryLow_DensityIronSouth.name=Iron South -tile.IndustryLow_DensityIronWest.name=Iron West -tile.IndustryLow_DensityParabolicAntennaEast.name=Parabolic Antenna East -tile.IndustryLow_DensityParabolicAntennaNorth.name=Parabolic Antenna North -tile.IndustryLow_DensityParabolicAntennaSouth.name=Parabolic Antenna South -tile.IndustryLow_DensityParabolicAntennaWest.name=Parabolic Antenna West -tile.IndustryLow_DensityTankNorthEastSouthWest.name=Watertank -tile.IndustryLow_DensityTelescopeEast.name=Telescope East -tile.IndustryLow_DensityTelescopeNorth.name=Telescope North -tile.IndustryLow_DensityTelescopeSouth.name=Telescope South -tile.IndustryLow_DensityTelescopeWest.name=Telescope West -tile.IndustryMedium_DensityBlueEast.name=Blue East -tile.IndustryMedium_DensityBlueNorth.name=Blue North -tile.IndustryMedium_DensityBlueSouth.name=Blue South -tile.IndustryMedium_DensityBlueWest.name=Blue West -tile.IndustryMedium_DensityBrickEast.name=Brick East -tile.IndustryMedium_DensityBrickNorth.name=Brick North -tile.IndustryMedium_DensityBrickSouth.name=Brick South -tile.IndustryMedium_DensityBrickWest.name=Brick West -tile.IndustryMedium_DensityBrownEast.name=Brown East -tile.IndustryMedium_DensityBrownNorth.name=Brown North -tile.IndustryMedium_DensityBrownSouth.name=Brown South -tile.IndustryMedium_DensityBrownWest.name=Brown West -tile.IndustryMedium_DensityChemicalPressEastWest.name=Chemical Press East-West -tile.IndustryMedium_DensityChemicalPressNorthSouth.name=Chemical Press North-South -tile.IndustryMedium_DensityChimneyEast.name=Chimney East -tile.IndustryMedium_DensityChimneyNorth.name=Chimney North -tile.IndustryMedium_DensityChimneySouth.name=Chimney South -tile.IndustryMedium_DensityChimneyWest.name=Chimney West -tile.IndustryMedium_DensityGreenEast.name=Green East -tile.IndustryMedium_DensityGreenNorth.name=Green North -tile.IndustryMedium_DensityGreenSouth.name=Green South -tile.IndustryMedium_DensityGreenWest.name=Green West -tile.IndustryMedium_DensityIceEast.name=Ice East -tile.IndustryMedium_DensityIceNorth.name=Ice North -tile.IndustryMedium_DensityIceSouth.name=Ice South -tile.IndustryMedium_DensityIceWest.name=Ice West -tile.IndustryMedium_DensitySandstoneEast.name=Sandstone East -tile.IndustryMedium_DensitySandstoneNorth.name=Sandstone North -tile.IndustryMedium_DensitySandstoneSouth.name=Sandstone South -tile.IndustryMedium_DensitySandstoneWest.name=Sandstone West -tile.IndustryMedium_DensityTankEast.name=Watertank East -tile.IndustryMedium_DensityTankNorth.name=Watertank North -tile.IndustryMedium_DensityTankSouth.name=Watertank South -tile.IndustryMedium_DensityTankWest.name=Watertank West -tile.OfficeHigh_DensityBrickEastWest.name=High Density - Brick East-West -tile.OfficeHigh_DensityBrickNorthSouth.name=High Density - Brick North-South -tile.OfficeHigh_DensityCyanEast.name=High Density - Cyan East -tile.OfficeHigh_DensityCyanNorth.name=High Density - Cyan North -tile.OfficeHigh_DensityCyanSouth.name=High Density - Cyan South -tile.OfficeHigh_DensityCyanWest.name=High Density - Cyan West -tile.OfficeHigh_DensityHoleOnTopEast.name=High Density - Hole On Top East -tile.OfficeHigh_DensityHoleOnTopNorth.name=High Density - Hole On Top North -tile.OfficeHigh_DensityHoleOnTopSouth.name=High Density - Hole On Top South -tile.OfficeHigh_DensityHoleOnTopWest.name=High Density - Hole On Top West -tile.OfficeHigh_DensityLightBlueEastWest.name=High Density - Light Blue East-West -tile.OfficeHigh_DensityLightBlueNorthSouth.name=High Density - Light Blue North-South -tile.OfficeHigh_DensitySpirolBuildingEast.name=High Density - Spirol Building East -tile.OfficeHigh_DensitySpirolBuildingNorth.name=High Density - Spirol Building North -tile.OfficeHigh_DensitySpirolBuildingSouth.name=High Density - Spirol Building South -tile.OfficeHigh_DensitySpirolBuildingWest.name=High Density - Spirol Building West -tile.OfficeLow_DensityBlueEast.name=Low Density - Blue East -tile.OfficeLow_DensityBlueNorth.name=Low Density - Blue North -tile.OfficeLow_DensityBlueSouth.name=Low Density - Blue South -tile.OfficeLow_DensityBlueWest.name=Low Density - Blue West -tile.OfficeLow_DensityGreenEast.name=Low Density - Green East -tile.OfficeLow_DensityGreenNorth.name=Low Density - Green North -tile.OfficeLow_DensityGreenSouth.name=Low Density - Green South -tile.OfficeLow_DensityGreenWest.name=Low Density - Green West -tile.OfficeLow_DensityWhiteEast.name=Low Density - White East -tile.OfficeLow_DensityWhiteNorth.name=Low Density - White North -tile.OfficeLow_DensityWhiteSouth.name=Low Density - White South -tile.OfficeLow_DensityWhiteWest.name=Low Density - White West -tile.OfficeLow_DensityYellowEast.name=Low Density - Yellow East -tile.OfficeLow_DensityYellowNorth.name=Low Density - Yellow North -tile.OfficeLow_DensityYellowSouth.name=Low Density - Yellow South -tile.OfficeLow_DensityYellowWest.name=Low Density - Yellow West -tile.OfficeMedium_DensityCyanEast.name=Medium Density - Cyan East -tile.OfficeMedium_DensityCyanNorth.name=Medium Density - Cyan North -tile.OfficeMedium_DensityCyanSouth.name=Medium Density - Cyan South -tile.OfficeMedium_DensityCyanWest.name=Medium Density - Cyan West -tile.OfficeMedium_DensityLightBlueEast.name=Medium Density - Light Blue East -tile.OfficeMedium_DensityLightBlueNorth.name=Medium Density - Light Blue North -tile.OfficeMedium_DensityLightBlueSouth.name=Medium Density - Light Blue South -tile.OfficeMedium_DensityLightBlueWest.name=Medium Density - Light Blue West -tile.OfficeMedium_DensityPinkEast.name=Medium Density - Pink East -tile.OfficeMedium_DensityPinkNorth.name=Medium Density - Pink North -tile.OfficeMedium_DensityPinkSouth.name=Medium Density - Pink South -tile.OfficeMedium_DensityPinkWest.name=Medium Density - Pink West -tile.OfficeMedium_DensitySandstoneEast.name=Medium Density - Sandstone East -tile.OfficeMedium_DensitySandstoneNorth.name=Medium Density - Sandstone North -tile.OfficeMedium_DensitySandstoneSouth.name=Medium Density - Sandstone South -tile.OfficeMedium_DensitySandstoneWest.name=Medium Density - Sandstone West -tile.PublicFireServiceBigEast.name=Fire Service Big East -tile.PublicFireServiceBigNorth.name=Fire Service Big North -tile.PublicFireServiceBigSouth.name=Fire Service Big South -tile.PublicFireServiceBigWest.name=Fire Service Big West -tile.PublicFireServiceSmallEast.name=Fire Service Small East -tile.PublicFireServiceSmallNorth.name=Fire Service Small North -tile.PublicFireServiceSmallSouth.name=Fire Service Small South -tile.PublicFireServiceSmallWest.name=Fire Service Small West -tile.PublicHospitalBigEast.name= Hospital Big East -tile.PublicHospitalBigNorth.name=Hospital Big North -tile.PublicHospitalBigSouth.name=Hospital Big South -tile.PublicHospitalBigWest.name=Hospital Big West -tile.PublicHospitalSmallEast.name=Hospital Small East -tile.PublicHospitalSmallNorth.name=Hospital Small North -tile.PublicHospitalSmallSouth.name=Hospital Small South -tile.PublicHospitalSmallWest.name=Hospital Small West -tile.PublicLibraryEastWest.name=Library East-West -tile.PublicLibraryNorthSouth.name=Library North-South -tile.PublicPoliceBigEast.name=Police Big East -tile.PublicPoliceBigNorth.name=Police Big North -tile.PublicPoliceBigSouth.name=Police Big South -tile.PublicPoliceBigWest.name=Police Big West -tile.PublicPoliceSmallEast.name=Police Small East -tile.PublicPoliceSmallNorth.name=Police Small North -tile.PublicPoliceSmallSouth.name=Police Small South -tile.PublicPoliceSmallWest.name=Police Small West -tile.PublicSchoolBigNorthEast.name=School Big North-East -tile.PublicSchoolBigNorthWest.name=School Big North-West -tile.PublicSchoolBigSouthEast.name=School Big South-East -tile.PublicSchoolBigSouthWest.name=School Big South-West -tile.PublicSchoolSmallNorthEast.name=School Small North-East -tile.PublicSchoolSmallNorthWest.name=School Small North-West -tile.PublicSchoolSmallSouthEast.name=School Small South-East -tile.PublicSchoolSmallSouthWest.name=School Small South-West -tile.PublicTownhallBigEastWest.name=Townhall Big East-West -tile.PublicTownhallBigNorthSouth.name=Townhall Big North-South -tile.PublicTownhallSmallEast.name=Townhall Small East -tile.PublicTownhallSmallNorth.name=Townhall Small North -tile.PublicTownhallSmallSouth.name=Townhall Small South -tile.PublicTownhallSmallWest.name=Townhall Small West -tile.PublicUniversityEast.name=University East -tile.PublicUniversityNorth.name=University North -tile.PublicUniversitySouth.name=University South -tile.PublicUniversityWest.name=University West -tile.ResidentalEnormous_DensityBlockNorthEastSouthWest.name=$ Block -tile.ResidentalEnormous_DensityBrickBigEast.name=$$$ Brick Big East -tile.ResidentalEnormous_DensityBrickBigNorth.name=$$$ Brick Big North -tile.ResidentalEnormous_DensityBrickBigSouth.name=$$$ Brick Big South -tile.ResidentalEnormous_DensityBrickBigWest.name=$$$ Brick Big West -tile.ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.name=$$$ Brick Small -tile.ResidentalEnormous_DensityGreyEast.name=$$ Grey East -tile.ResidentalEnormous_DensityGreyNorth.name=$$ Grey North -tile.ResidentalEnormous_DensityGreySouth.name=$$ Grey South -tile.ResidentalEnormous_DensityGreyWest.name=$$ Grey West -tile.ResidentalEnormous_DensityModernEast.name=$$$ Modern East -tile.ResidentalEnormous_DensityModernNorth.name=$$$ Modern North -tile.ResidentalEnormous_DensityModernSouth.name=$$$ Modern South -tile.ResidentalEnormous_DensityModernWest.name=$$$ Modern West -tile.ResidentalEnormous_DensityRedEastWest.name=$$ Red East-West -tile.ResidentalEnormous_DensityRedNorthSouth.name=$$ Red North-South -tile.ResidentalEnormous_DensityRoundNorthEastSouthWest.name=$ Round -tile.ResidentalEnormous_DensityStoneEast.name=$ Stone East -tile.ResidentalEnormous_DensityStoneNorth.name=$ Stone North -tile.ResidentalEnormous_DensityStoneSouth.name=$ Stone South -tile.ResidentalEnormous_DensityStoneWest.name=$ Stone West -tile.ResidentalEnormous_DensityStoneEast2.name=$$$ Stone East -tile.ResidentalEnormous_DensityStoneNorth2.name=$$$ Stone North -tile.ResidentalEnormous_DensityStoneSouth2.name=$$$ Stone South -tile.ResidentalEnormous_DensityStoneWest2.name=$$$ Stone West -tile.ResidentalEnormous_DensityYellowNorthEastSouthWest.name=$$ Yellow -tile.ResidentalHigh_DensityBlueEast.name=$$$ Blue East -tile.ResidentalHigh_DensityBlueEastWest.name=$$ Blue East-West -tile.ResidentalHigh_DensityBlueNorth.name=$$$ Blue North -tile.ResidentalHigh_DensityBlueNorthSouth.name=$$ Blue North-South -tile.ResidentalHigh_DensityBlueSouth.name=$$$ Blue South -tile.ResidentalHigh_DensityBlueWest.name=$$$ Blue West -tile.ResidentalHigh_DensityBrickEast.name=$$$ Brick East -tile.ResidentalHigh_DensityBrickEastWest.name=$ Brick East-West -tile.ResidentalHigh_DensityBrickNorth.name=$$$ Brick North -tile.ResidentalHigh_DensityBrickNorthSouth.name=$ Brick North-South -tile.ResidentalHigh_DensityBrickSouth.name=$$$ Brick South -tile.ResidentalHigh_DensityBrickWest.name=$$$ Brick West -tile.ResidentalHigh_DensityGreenGreyEast.name=$$ Green Grey East -tile.ResidentalHigh_DensityGreenGreyNorth.name=$$ Green Grey North -tile.ResidentalHigh_DensityGreenGreySouth.name=$$ Green Grey South -tile.ResidentalHigh_DensityGreenGreyWest.name=$$ Green Grey West -tile.ResidentalHigh_DensityRedCornerNorthEast.name=$$$ Red Corner North-East -tile.ResidentalHigh_DensityRedCornerNorthWest.name=$$$ Red Corner North-West -tile.ResidentalHigh_DensityRedCornerSouthEast.name=$$$ Red Corner South-East -tile.ResidentalHigh_DensityRedCornerSouthWest.name=$$$ Red Corner South-West -tile.ResidentalHigh_DensityRedYellowEast.name=$$ Yellow East -tile.ResidentalHigh_DensityRedYellowNorth.name=$$ Yellow North -tile.ResidentalHigh_DensityRedYellowSouth.name=$$ Yellow South -tile.ResidentalHigh_DensityRedYellowWest.name=$$ Yellow West -tile.ResidentalHigh_DensityStoneEast.name=$ Stone East -tile.ResidentalHigh_DensityStoneNorth.name=$ Stone North -tile.ResidentalHigh_DensityStoneSouth.name=$ Stone South -tile.ResidentalHigh_DensityStoneWest.name=$ Stone West -tile.ResidentalHigh_DensityStoneEast2.name=$$$ Stone East -tile.ResidentalHigh_DensityStoneNorth2.name=$$$ Stone North -tile.ResidentalHigh_DensityStoneSouth2.name=$$$ Stone South -tile.ResidentalHigh_DensityStoneWest2.name=$$$ Stone West -tile.ResidentalHigh_DensityYellowEast.name=$$$ Yellow East -tile.ResidentalHigh_DensityYellowNorth.name=$$$ Yellow North -tile.ResidentalHigh_DensityYellowSouth.name=$$$ Yellow South -tile.ResidentalHigh_DensityYellowWest.name=$$$ Yellow West -tile.ResidentalLow_DensityBeigeEast.name=$$ Beige East -tile.ResidentalLow_DensityBeigeNorth.name=$$ Beige North -tile.ResidentalLow_DensityBeigeSouth.name=$$ Beige South -tile.ResidentalLow_DensityBeigeWest.name=$$ Beige West -tile.ResidentalLow_DensityCyanEast.name=$ Cyan East -tile.ResidentalLow_DensityCyanNorth.name=$ Cyan North -tile.ResidentalLow_DensityCyanSouth.name=$ Cyan South -tile.ResidentalLow_DensityCyanWest.name=$ Cyan West -tile.ResidentalLow_DensityGreenEast.name=$ Green East -tile.ResidentalLow_DensityGreenNorth.name=$ Green North -tile.ResidentalLow_DensityGreenSouth.name=$ Green South -tile.ResidentalLow_DensityGreenWest.name=$ Green West -tile.ResidentalLow_DensityGreenEast2.name=$$ Green East II -tile.ResidentalLow_DensityGreenNorth2.name=$$ Green North II -tile.ResidentalLow_DensityGreenSouth2.name=$$ Green South II -tile.ResidentalLow_DensityGreenWest2.name=$$ Green West II -tile.ResidentalLow_DensityLightBlueEast.name=$ Light Blue East -tile.ResidentalLow_DensityLightBlueNorth.name=$ Light Blue North -tile.ResidentalLow_DensityLightBlueSouth.name=$ Light Blue South -tile.ResidentalLow_DensityLightBlueWest.name=$ Light Blue West -tile.ResidentalLow_DensityLightBlueEast2.name=$$ Light Blue East II -tile.ResidentalLow_DensityLightBlueNorth2.name=$$ Light Blue North II -tile.ResidentalLow_DensityLightBlueSouth2.name=$$ Light Blue South II -tile.ResidentalLow_DensityLightBlueWest2.name=$$ Light Blue West II -tile.ResidentalLow_DensityLightGreyEast.name=$- Light Grey East -tile.ResidentalLow_DensityLightGreyNorth.name=$ Light Grey North -tile.ResidentalLow_DensityLightGreySouth.name=$ Light Grey South -tile.ResidentalLow_DensityLightGreyWest.name=$ Light Grey West -tile.ResidentalLow_DensityModernEast.name=$$$ Modern East -tile.ResidentalLow_DensityModernNorth.name=$$$ Modern North -tile.ResidentalLow_DensityModernSouth.name=$$$ Modern South -tile.ResidentalLow_DensityModernWest.name=$$$ Modern West -tile.ResidentalLow_DensityOrangeEast.name=$ Orange East -tile.ResidentalLow_DensityOrangeNorth.name=$ Orange North -tile.ResidentalLow_DensityOrangeSouth.name=$ Orange South -tile.ResidentalLow_DensityOrangeWest.name=$ Orange West -tile.ResidentalLow_DensityRedEast.name=$$ Red East -tile.ResidentalLow_DensityRedNorth.name=$$ Red North -tile.ResidentalLow_DensityRedSouth.name=$$ Red South -tile.ResidentalLow_DensityRedWest.name=$$ Red West -tile.ResidentalLow_DensityStoneEast.name=$$$ Stone East -tile.ResidentalLow_DensityStoneNorth.name=$$$ Stone North -tile.ResidentalLow_DensityStoneSouth.name=$$$ Stone South -tile.ResidentalLow_DensityStoneWest.name=$$$ Stone West -tile.ResidentalLow_DensityWhiteEast.name=$$ White East -tile.ResidentalLow_DensityWhiteNorth.name=$$ White North -tile.ResidentalLow_DensityWhiteSouth.name=$$ White South -tile.ResidentalLow_DensityWhiteWest.name=$$ White West -tile.ResidentalLow_DensityWoodEast.name=$$$ Wood East -tile.ResidentalLow_DensityWoodNorth.name=$$$ Wood North -tile.ResidentalLow_DensityWoodSouth.name=$$$ Wood South -tile.ResidentalLow_DensityWoodWest.name=$$$ Wood West -tile.ResidentalLow_DensityYellowEast.name=$ Yellow East -tile.ResidentalLow_DensityYellowNorth.name=$ Yellow North -tile.ResidentalLow_DensityYellowSouth.name=$ Yellow South -tile.ResidentalLow_DensityYellowWest.name=$ Yellow West -tile.ResidentalLow_DensityYellowEast2.name=$$ Yellow East II -tile.ResidentalLow_DensityYellowNorth2.name=$$ Yellow North II -tile.ResidentalLow_DensityYellowSouth2.name=$$ Yellow South II -tile.ResidentalLow_DensityYellowWest2.name=$$ Yellow West II -tile.ResidentalMedium_DensityBlueGreenEast.name=$$ Blue Green East -tile.ResidentalMedium_DensityBlueGreenNorth.name=$$ Blue Green North -tile.ResidentalMedium_DensityBlueGreenSouth.name=$$ Blue Green South -tile.ResidentalMedium_DensityBlueGreenWest.name=$$ Blue Green West -tile.ResidentalMedium_DensityBlueRedEast.name=$$ Blue Red East -tile.ResidentalMedium_DensityBlueRedNorth.name=$$ Blue Red North -tile.ResidentalMedium_DensityBlueRedSouth.name=$$ Blue Red South -tile.ResidentalMedium_DensityBlueRedWest.name=$$ Blue Red West -tile.ResidentalMedium_DensityBrickEast.name=$$$ Brick East -tile.ResidentalMedium_DensityBrickNorth.name=$$$ Brick North -tile.ResidentalMedium_DensityBrickSouth.name=$$$ Brick South -tile.ResidentalMedium_DensityBrickWest.name=$$$ Brick West -tile.ResidentalMedium_DensityHorizontalEast.name=$ Horizontal East -tile.ResidentalMedium_DensityHorizontalNorth.name=$ Horizontal North -tile.ResidentalMedium_DensityHorizontalSouth.name=$ Horizontal South -tile.ResidentalMedium_DensityHorizontalWest.name=$ Horizontal West -tile.ResidentalMedium_DensityOrangeGreenEast.name=$$ Orange Green East -tile.ResidentalMedium_DensityOrangeGreenNorth.name=$$ Orange Green North -tile.ResidentalMedium_DensityOrangeGreenSouth.name=$$ Orange Green South -tile.ResidentalMedium_DensityOrangeGreenWest.name=$$ Orange Green West -tile.ResidentalMedium_DensityQuartzEast.name=$$$ Quartz East -tile.ResidentalMedium_DensityQuartzNorth.name=$$$ Quartz North -tile.ResidentalMedium_DensityQuartzSouth.name=$$$ Quartz South -tile.ResidentalMedium_DensityQuartzWest.name=$$$ Quartz West -tile.ResidentalMedium_DensityRedGreenEast.name=$$$ Red Green East -tile.ResidentalMedium_DensityRedGreenNorth.name=$$$ Red Green North -tile.ResidentalMedium_DensityRedGreenSouth.name=$$$ Red Green South -tile.ResidentalMedium_DensityRedGreenWest.name=$$$ Red Green West -tile.ResidentalMedium_DensityRoofEast.name=$ Roof East -tile.ResidentalMedium_DensityRoofNorth.name=$ Roof North -tile.ResidentalMedium_DensityRoofSouth.name=$ Roof South -tile.ResidentalMedium_DensityRoofWest.name=$ Roof West -tile.ResidentalMedium_DensityStone1EastWest.name=$$$ Stone 1 East-West -tile.ResidentalMedium_DensityStone1NorthSouth.name=$$$ Stone 1 North-South -tile.ResidentalMedium_DensityStone2EastWest.name=$$$ Stone 2 East-West -tile.ResidentalMedium_DensityStone2NorthSouth.name=$$$ Stone 2 North-South -tile.ResidentalMedium_DensityStoneCornerNorthEast.name=$$$ Stone Corner North-East -tile.ResidentalMedium_DensityStoneCornerNorthWest.name=$$$ Stone Corner North-West -tile.ResidentalMedium_DensityStoneCornerSouthEast.name=$$$ Stone Corner South-East -tile.ResidentalMedium_DensityStoneCornerSouthWest.name=$$$ Stone Corner South-West -tile.ResidentalMedium_DensityStoneEast.name=$ Stone East -tile.ResidentalMedium_DensityStoneEndNorthEastWest.name=Medium Density - Stone End North-East-West -tile.ResidentalMedium_DensityStoneEndNorthSouthEast.name=$$$ Stone End North-South-East -tile.ResidentalMedium_DensityStoneEndNorthSouthWest.name=$$$ Stone End North-South-West -tile.ResidentalMedium_DensityStoneEndSouthEastWest.name=$$$ Stone End South-East-West -tile.ResidentalMedium_DensityStoneNorth.name=$ Stone North -tile.ResidentalMedium_DensityStoneSouth.name=$ Stone South -tile.ResidentalMedium_DensityStoneWest.name=$ Stone West -tile.ResidentalMedium_DensityVerticalEast.name=$ Vertical East -tile.ResidentalMedium_DensityVerticalNorth.name=$ Vertical North -tile.ResidentalMedium_DensityVerticalSouth.name=$ Vertical South -tile.ResidentalMedium_DensityVerticalWest.name=$ Vertical West -tile.ResidentalMedium_DensityYellowRedEast.name=$$ Yellow Red East -tile.ResidentalMedium_DensityYellowRedNorth.name=$$ Yellow Red North -tile.ResidentalMedium_DensityYellowRedSouth.name=$$ Yellow Red South -tile.ResidentalMedium_DensityYellowRedWest.name=$$ Yellow Red West -tile.ShoppingHigh_DensityQuartzEastWest.name=Quartz East-West -tile.ShoppingHigh_DensityQuartzNorthSouth.name=Quartz North-South -tile.ShoppingLow_DensityBrickEast.name=Brick East -tile.ShoppingLow_DensityBrickNorth.name=Brick North -tile.ShoppingLow_DensityBrickSouth.name=Brick South -tile.ShoppingLow_DensityBrickWest.name=Brick West -tile.ShoppingLow_DensityGreenEast.name=Green East -tile.ShoppingLow_DensityGreenNorth.name=Green North -tile.ShoppingLow_DensityGreenSouth.name=Green South -tile.ShoppingLow_DensityGreenWest.name=Green West -tile.ShoppingLow_DensityOrangeEast.name=Orange East -tile.ShoppingLow_DensityOrangeNorth.name=Orange North -tile.ShoppingLow_DensityOrangeSouth.name=Orange South -tile.ShoppingLow_DensityOrangeWest.name=Orange West -tile.ShoppingLow_DensityPinkEast.name=Pink East -tile.ShoppingLow_DensityPinkNorth.name=Pink North -tile.ShoppingLow_DensityPinkSouth.name=Pink South -tile.ShoppingLow_DensityPinkWest.name=Pink West -tile.ShoppingMedium_DensityModernEast.name=Modern East -tile.ShoppingMedium_DensityModernNorth.name=Modern North -tile.ShoppingMedium_DensityModernSouth.name=Modern South -tile.ShoppingMedium_DensityModernWest.name=Modern West -tile.ShoppingMedium_DensityQuartzEast.name=Quartz East -tile.ShoppingMedium_DensityQuartzNorth.name=Quartz North -tile.ShoppingMedium_DensityQuartzSouth.name=Quartz South -tile.ShoppingMedium_DensityQuartzWest.name=Quartz West -tile.TransportAirportRunway_EastWestBuilding_North.name=Runway East-West - Building North -tile.TransportAirportRunway_EastWestBuilding_South.name=Runway East-West - Building South -tile.TransportAirportRunway_NorthSouthBuilding_East.name=Runway North-South - Building East -tile.TransportAirportRunway_NorthSouthBuilding_West.name=Runway North-South - Building West -tile.TransportAvenue1EastWest.name=Avenue 1 East-West -tile.TransportAvenue1NorthSouth.name=Avenue 1 North-South -tile.TransportAvenue2EastWest.name=Avenue 2 East-West -tile.TransportAvenue2NorthSouth.name=Avenue 2 North-South -tile.TransportAvenueEEast.name=Avenue E East -tile.TransportAvenueENorth.name=Avenue E North -tile.TransportAvenueESouth.name=Avenue E South -tile.TransportAvenueEWest.name=Avenue E West -tile.TransportAvenueLNorthEast.name=Avenue L North-East -tile.TransportAvenueLNorthWest.name=Avenue L North-West -tile.TransportAvenueLSouthEast.name=Avenue L South-East -tile.TransportAvenueLSouthWest.name=Avenue L South-West -tile.TransportAvenueTNorthEastWest.name=Avenue T North-East-West -tile.TransportAvenueTNorthSouthEast.name=Avenue T North-South-East -tile.TransportAvenueTNorthSouthWest.name=Avenue T North-South-West -tile.TransportAvenueTSouthEastWest.name=Avenue T South-East-West -tile.TransportAvenueXNorthSouthEastWest.name=Avenue X -tile.TransportBridgeAvenue1EastWest.name=Bridge Avenue 1 East-West -tile.TransportBridgeAvenue1NorthSouth.name=Bridge Avenue 1 North-South -tile.TransportBridgeAvenue2NorthSouth.name=Bridge Avenue 2 North-South -tile.TransportBridgeAvenue2SouthWest.name=Bridge Avenue 2 East-West -tile.TransportBridgeAvenue3EastWest.name=Bridge Avenue 3 East-West -tile.TransportBridgeAvenue3NorthSouth.name=Bridge Avenue 3 North-South -tile.TransportBridgeAvenue4EastWest.name=Bridge Avenue 4 East-West -tile.TransportBridgeAvenue4NorthSouth.name=Bridge Avenue 4 North-South -tile.TransportBridgeAvenueLNorthEast.name=Bridge Avenue L North-East -tile.TransportBridgeAvenueLNorthWest.name=Bridge Avenue L North-West -tile.TransportBridgeAvenueLSouthEast.name=Bridge Avenue L South-East -tile.TransportBridgeAvenueLSouthWest.name=Bridge Avenue L South-West -tile.TransportBridgeHighway1EastWest.name=Bridge Highway 1 East-West -tile.TransportBridgeHighway1NorthSouth.name=Bridge Highway 1 North-South -tile.TransportBridgeHighway2EastWest.name=Bridge Highway 2 East-West -tile.TransportBridgeHighway2NorthSouth.name=Bridge Highway 2 North-South -tile.TransportBridgeHighway3EastWest.name=Bridge Highway 3 East-West -tile.TransportBridgeHighway3NorthSouth.name=Bridge Highway 3 North-South -tile.TransportBridgeHighway4EastWest.name=Bridge Highway 4 East-West -tile.TransportBridgeHighway4NorthSouth.name=Bridge Highway 4 North-South -tile.TransportBridgeHighwayLNorthEast.name=Bridge Highway L North-East -tile.TransportBridgeHighwayLNorthWest.name=Bridge Highway L North-West -tile.TransportBridgeHighwayLSouthEast.name=Bridge Highway L South-East -tile.TransportBridgeHighwayLSouthWest.name=Bridge Highway L South-West -tile.TransportBridgeRoad1EastWest.name=Bridge Road 1 East-West -tile.TransportBridgeRoad1NorthSouth.name=Bridge Road 1 North-South -tile.TransportBridgeRoad2EastWest.name=Bridge Road 2 East-West -tile.TransportBridgeRoad2NorthSouth.name=Bridge Road 2 North-South -tile.TransportBridgeRoadLNorthEast.name=Bridge Road L North-East -tile.TransportBridgeRoadLNorthWest.name=Bridge Road L North-West -tile.TransportBridgeRoadLSouthEast.name=Bridge Road L South-East -tile.TransportBridgeRoadLSouthWest.name=Bridge Road L South-West -tile.TransportBridgeStreet1EastWest.name=Bridge Street 1 East-West -tile.TransportBridgeStreet1NorthSouth.name=Bridge Street 1 North-South -tile.TransportBridgeStreet2EastWest.name=Bridge Street 2 East-West -tile.TransportBridgeStreet2NorthSouth.name=Bridge Street 2 North-South -tile.TransportBridgeStreetLNorthEast.name=Bridge Street L North-East -tile.TransportBridgeStreetLNorthWest.name=Bridge Street L North-West -tile.TransportBridgeStreetLSouthEast.name=Bridge Street L South-East -tile.TransportBridgeStreetLSouthWest.name=Bridge Street L South-West -tile.TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.name=Connector Avenue <> Street -1- Avenue East [] Street North-West-side -tile.TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.name=Connector Avenue <> Street -1- Avenue East [] Street South-West-side -tile.TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.name=Connector Avenue <> Street -1- Avenue North [] Street South-East-side -tile.TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.name=Connector Avenue <> Street -1- Avenue North [] Street South-West-side -tile.TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.name=Connector Avenue <> Street -1- Avenue South [] Street North-East-side -tile.TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.name=Connector Avenue <> Street -1- Avenue South [] Street North-West-side -tile.TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.name=Connector Avenue <> Street -1- Avenue West [] Street North-East-side -tile.TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.name=Connector Avenue <> Street -1- Avenue West [] Street South-East-side -tile.TransportConnectorAvenue_StreetLAvenue_EastStreet_North.name=Connector Avenue <> Street -L- Avenue East [] Street North -tile.TransportConnectorAvenue_StreetLAvenue_EastStreet_South.name=Connector Avenue <> Street -L- Avenue East [] Street South -tile.TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.name=Connector Avenue <> Street -L- Avenue North [] Street East -tile.TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.name=Connector Avenue <> Street -L- Avenue North [] Street West -tile.TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.name=Connector Avenue <> Street -L- Avenue South [] Street East -tile.TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.name=Connector Avenue <> Street -L- Avenue South [] Street West -tile.TransportConnectorAvenue_StreetLAvenue_WestStreet_North.name=Connector Avenue <> Street -L- Avenue West [] Street North -tile.TransportConnectorAvenue_StreetLAvenue_WestStreet_South.name=Connector Avenue <> Street -L- Avenue West [] Street South -tile.TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.name=Connector Avenue <> Street -T- Avenue East [] Street North-South -tile.TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.name=Connector Avenue <> Street -T- Avenue East-West [] Street North -tile.TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.name=Connector Avenue <> Street -T- Avenue East-West [] Street South -tile.TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.name=Connector Avenue <> Street -T- Avenue North-South [] Street East -tile.TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.name=Connector Avenue <> Street -T- Avenue North-South [] Street West -tile.TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.name=Connector Avenue <> Street -T- Avenue North [] Street East-West -tile.TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.name=Connector Avenue <> Street -T- Avenue South [] Street East-West -tile.TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.name=Connector Avenue <> Street -T- Avenue West [] Street North-South -tile.TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.name=Connector Avenue <> Street -X- Avenue East-West [] Street North-South -tile.TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.name=Connector Avenue <> Street -X- Avenue North-South [] Street East-West -tile.TransportConnectorBridge_AvenueBridge_EastAvenue_West.name=Connector Avenue <> Bridge - Avenue Bridge East [] Avenue West -tile.TransportConnectorBridge_AvenueBridge_NorthAvenue_South.name=Connector Avenue <> Bridge - Avenue Bridge North [] Avenue South -tile.TransportConnectorBridge_AvenueBridge_SouthAvenue_North.name=Connector Avenue <> Bridge - Avenue Bridge South [] Avenue North -tile.TransportConnectorBridge_AvenueBridge_WestAvenue_East.name=Connector Avenue <> Bridge - Avenue Bridge West [] Avenue East -tile.TransportConnectorBridge_RoadBridge_EastRoad_West.name=Connector Road <> Bridge - Road Bridge East [] Road West -tile.TransportConnectorBridge_RoadBridge_NorthRoad_South.name=Connector Road <> Bridge - Road Bridge North [] Road South -tile.TransportConnectorBridge_RoadBridge_SouthRoad_North.name=Connector Road <> Bridge - Road Brdige South [] Road North -tile.TransportConnectorBridge_RoadBridge_WestRoad_East.name=Connector Road <> Bridge - Road Bridge West [] Road East -tile.TransportConnectorBridge_StreetBridge_EastStreet_West.name=Connector Street <> Bridge - Street Bridge East [] Street West -tile.TransportConnectorBridge_StreetBridge_NorthStreet_South.name=Connector Street <> Bridge - Street Bridge North [] Street South -tile.TransportConnectorBridge_StreetBridge_SouthStreet_North.name=Connector Street <> Bridge - Street Bridge South [] Street North -tile.TransportConnectorBridge_StreetBridge_WestStreet_East.name=Connector Street <> Bridge - Street Bridge West [] Street East -tile.TransportConnectorHighway_AvenueHighway_EastAvenue_West.name=Connector Highway <> Avenue - Highway East [] Avenue West -tile.TransportConnectorHighway_AvenueHighway_NorthAvenue_South.name=Connector Highway <> Avenue - Highway North [] Avenue South -tile.TransportConnectorHighway_AvenueHighway_SouthAvenue_North.name=Connector Highway <> Avenue - Highway South [] Avenue North -tile.TransportConnectorHighway_AvenueHighway_WestAvenue_East.name=Connector Highway <> Avenue - Highway West [] Avenue East -tile.TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.name=Connector Highway Floor <> Avenue - Highway Floor East [] Avenue West -tile.TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.name=Connector Highway Floor <> Avenue - Highway Floor North [] Avenue South -tile.TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.name=Connector Highway Floor <> Avenue - Highway Floor South [] Avenue North -tile.TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.name=Connector Highway Floor <> Avenue - Highway Floor West [] Avenue East -tile.TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.name=Connector Highway <> Highway Floor - Highway East [] Highway Floor West -tile.TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.name=Connector Highway <> Highway Floor - Highway North [] Highway Floor South -tile.TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.name=Connector Highway <> Highway Floor - Highway South [] Highway Floor North -tile.TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.name=Connector Highway <> Highway Floor - Highway West [] Highway Floor East -tile.TransportHarbourBigEast.name=Big East -tile.TransportHarbourBigNorth.name=Big North -tile.TransportHarbourBigSouth.name=Big South -tile.TransportHarbourBigWest.name=Big West -tile.TransportHarbourSide1CornerNorthEast.name=Side 1-Corner North-East -tile.TransportHarbourSide1CornerNorthWest.name=Side 1-Corner North-West -tile.TransportHarbourSide1CornerSouthEast.name=Side 1-Corner South-East -tile.TransportHarbourSide1CornerSouthWest.name=Side 1-Corner South-West -tile.TransportHarbourSide2CornerCraneEast.name=Side 2-Corner Crane East -tile.TransportHarbourSide2CornerCraneNorth.name=Side 2-Corner Crane North -tile.TransportHarbourSide2CornerCraneSouth.name=Side 2-Corner Crane South -tile.TransportHarbourSide2CornerCraneWest.name=Side 2-Corner Crane West -tile.TransportHarbourSide2CornerEast.name=Side 2-Corner East -tile.TransportHarbourSide2CornerNorth.name=Side 2-Corner North -tile.TransportHarbourSide2CornerSouth.name=Side 2-Corner South -tile.TransportHarbourSide2CornerWest.name=Side 2-Corner West -tile.TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.name=Side 3-Corner NorthEast-NorthWest-SouthEast -tile.TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.name=Side 3-Corner NorthEast-NorthWest-SouthWest -tile.TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.name=Side 3-Corner NorthEast-SouthEast-SouthWest -tile.TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.name=Side 3-Corner NorthWest-SouthEast-SouthWest -tile.TransportHarbourSmallEast.name=Small East -tile.TransportHarbourSmallNorth.name=Small North -tile.TransportHarbourSmallSouth.name=Small South -tile.TransportHarbourSmallWest.name=Small West -tile.TransportHighway05EastWestNorthside.name=Highway 0,5 East-West-North-side -tile.TransportHighway05EastWestSouthside.name=Highway 0,5 East-West-South-side -tile.TransportHighway05NorthSouthEastside.name=Highway 0,5 North-South-East-side -tile.TransportHighway05NorthSouthWestside.name=Highway 0,5 North-South-West-side -tile.TransportHighway1EastWest.name=Highway 1 East-West -tile.TransportHighway1NorthSouth.name=Highway 1 North-South -tile.TransportHighway2EastWest.name=Highway 2 East-West -tile.TransportHighway2NorthSouth.name=Highway 2 North-South -tile.TransportHighwayDrivewayEastWestEastside.name=Highway Driveway East-West-East-side -tile.TransportHighwayDrivewayEastWestWestside.name=Highway Driveway East-West-West-side -tile.TransportHighwayDrivewayExitEastWestEastside.name=Highway Driveway & Exit East-West-East-side -tile.TransportHighwayDrivewayExitEastWestWestside.name=Highway Driveway & Exit East-West-West-side -tile.TransportHighwayDrivewayExitNorthSouthNorthside.name=Highway Driveway & Exit North-South-North-side -tile.TransportHighwayDrivewayExitNorthSouthSouthside.name=Highway Driveway & Exit North-South-South-side -tile.TransportHighwayDrivewayNorthSouthNorthside.name=Highway Driveway North-South-North-side -tile.TransportHighwayDrivewayNorthSouthSouthside.name=Highway Driveway North-South-South-side -tile.TransportHighwayExitEastWestEastside.name=Highway Exit East-West-East-side -tile.TransportHighwayExitEastWestWestside.name=Highway Exit East-West-West-side -tile.TransportHighwayExitNorthSouthNorthside.name=Highway Exit North-South-North-side -tile.TransportHighwayExitNorthSouthSouthside.name=Highway Exit North-South-South-side -tile.TransportHighwayFloor05EastWestNorthside.name=Highway Floor 0,5 East-West-North-side -tile.TransportHighwayFloor05EastWestSouthside.name=Highway Floor 0,5 East-West-South-side -tile.TransportHighwayFloor05NorthSouthEastside.name=Highway Floor 0,5 North-South-East-side -tile.TransportHighwayFloor05NorthSouthWestside.name=Highway Floor 0,5 North-South-West-side -tile.TransportHighwayFloor1EastWest.name=Highway Floor 1 East-West -tile.TransportHighwayFloor1NorthSouth.name=Highway Floor 1 North-South -tile.TransportHighwayFloor2EastWest.name=Highway Floor 2 East-West -tile.TransportHighwayFloor2NorthSouth.name=Highway Floor 2 North-South -tile.TransportHighwayFloorDrivewayEastWestEastside.name=Highway Floor Driveway East-West-East-side -tile.TransportHighwayFloorDrivewayEastWestWestside.name=Highway Floor Driveway East-West-West-side -tile.TransportHighwayFloorDrivewayExitEastWestEastside.name=Highway Floor Driveway & Exit East-West-East-side -tile.TransportHighwayFloorDrivewayExitEastWestWestside.name=Highway Floor Driveway & Exit East-West-West-side -tile.TransportHighwayFloorDrivewayExitNorthSouthNorthside.name=Highway Floor Driveway & Exit North-South-North-side -tile.TransportHighwayFloorDrivewayExitNorthSouthSouthside.name=Highway Floor Driveway & Exit North-South-South-side -tile.TransportHighwayFloorDrivewayNorthSouthNorthside.name=Highway Floor Driveway North-South-North-side -tile.TransportHighwayFloorDrivewayNorthSouthSouthside.name=Highway Floor Driveway North-South-South-side -tile.TransportHighwayFloorExitEastWestEast.name=Highway Floor Exit East-West-East-side -tile.TransportHighwayFloorExitEastWestWestside.name=Highway Floor Exit East-West-West-side -tile.TransportHighwayFloorExitNorthSouthNorthside.name=Highway Floor Exit North-South-North-side -tile.TransportHighwayFloorExitNorthSouthSouthside.name=Highway Floor Exit North-South-South-side -tile.TransportHighwayFloorLNorthEast.name=Highway Floor L North-East -tile.TransportHighwayFloorLNorthWest.name=Highway Floor L North-West -tile.TransportHighwayFloorLSouthEast.name=Highway Floor L South-East -tile.TransportHighwayFloorLSouthWest.nameHighway Floor =L South-West -tile.TransportHighwayFloorTNorthEastWest.name=Highway Floor T North-East-West -tile.TransportHighwayFloorTNorthSouthEast.name=Highway Floor T North-South-East -tile.TransportHighwayFloorTNorthSouthWest.name=Highway Floor T North-South-West -tile.TransportHighwayFloorTSouthEastWest.name=Highway Floor T South-East-West -tile.TransportHighwayFloorXNorthEastSouthWest.name=Highway Floor X -tile.TransportHighwayLNorthEast.name=Highway L North-East -tile.TransportHighwayLNorthWest.name=Highway L North-West -tile.TransportHighwayLSouthEast.name=Highway L South-East -tile.TransportHighwayLSouthWest.name=Highway L South-West -tile.TransportHighwayTNorthEastWest.name=Highway T North-East-West -tile.TransportHighwayTNorthSouthEast.name=Highway T North-South-East -tile.TransportHighwayTNorthSouthWest.name=Highway T North-South-West -tile.TransportHighwayTSouthEastWest.name=Highway T South-East-West -tile.TransportHighwayXNorthEastSouthWest.name=Highway X -tile.TransportPublicConnectorHightram_TramHightram_EastTram_West.name=Connector Hightram <> Tram - Hightram East [] Tram West -tile.TransportPublicConnectorHightram_TramHightram_NorthTram_South.name=Connector Hightram <> Tram - Hightram North [] Tram South -tile.TransportPublicConnectorHightram_TramHightram_SouthTram_North.name=Connector Hightram <> Tram - Hightram South [] Tram North -tile.TransportPublicConnectorHightram_TramHightram_WestTram_East.name=Connector Hightram <> Tram - Hightram West [] Tram East -tile.TransportPublicHightram1EastWest.name=Hightram 1 East-West -tile.TransportPublicHightram1NorthSouth.name=Hightram 1 North-South -tile.TransportPublicHightramEEast.name=Hightram E East -tile.TransportPublicHightramENorth.name=Hightram E North -tile.TransportPublicHightramESouth.name=Hightram E South -tile.TransportPublicHightramEWest.name=Hightram E West -tile.TransportPublicHightramLNorthEast.name=Hightram L North-East -tile.TransportPublicHightramLNorthWest.name=Hightram L North-West -tile.TransportPublicHightramLSouthEast.name=Hightram L South-East -tile.TransportPublicHightramLSouthWest.name=Hightram L South-West -tile.TransportPublicHightramStationEastWest.name=Hightram Station East-West -tile.TransportPublicHightramStationNorthSouth.name=Hightram Station North-South -tile.TransportPublicHightramXNorthEastSouthWest.name=Hightram X -tile.TransportPublicTram1EastWest.name=Tram 1 East-West -tile.TransportPublicTram1NorthSouth.name=Tram 1 North-South -tile.TransportPublicTramEEast.name=Tram E East -tile.TransportPublicTramENorth.name=Tram E North -tile.TransportPublicTramESouth.name=Tram E South -tile.TransportPublicTramEWest.name=Tram E West -tile.TransportPublicTramLNorthEast.name=Tram L North-East -tile.TransportPublicTramLNorthWest.name=Tram L North-West -tile.TransportPublicTramLSouthEast.name=Tram L South-East -tile.TransportPublicTramLSouthWest.name=Tram L South-West -tile.TransportPublicTram_on_road1EastWest.name=Track 1 East-West -tile.TransportPublicTram_on_road1NorthSouth.name=Track 1 North-South -tile.TransportPublicTram_on_roadEEast.name=Track E East -tile.TransportPublicTram_on_roadENorth.name=Track E North -tile.TransportPublicTram_on_roadESouth.name=Track E South -tile.TransportPublicTram_on_roadEWest.name=Track E West -tile.TransportPublicTram_on_roadLNorthEast.name=Track L North-East -tile.TransportPublicTram_on_roadLNorthWest.name=Track L North-West -tile.TransportPublicTram_on_roadLSouthEast.name=Track L South-East -tile.TransportPublicTram_on_roadLSouthWest.name=Track L South-West -tile.TransportPublicTramStationEastWest.name=Tram Station East-West -tile.TransportPublicTramStationNorthSouth.name=Tram Station North-South -tile.TransportPublicTramXNorthEastSouthWest.name=Tram X -tile.TransportRoad1EastWest.name=Road 1 East-West -tile.TransportRoad1NorthSouth.name=Road 1 North-South -tile.TransportRoadEEast.name=Road E East -tile.TransportRoadENorth.name=Road E North -tile.TransportRoadESouth.name=Road E South -tile.TransportRoadEWest.name=Road E West -tile.TransportRoadLNorthEast.name=Road L North-East -tile.TransportRoadLNorthWest.name=Road L North-West -tile.TransportRoadLSouthEast.name=Road L South-East -tile.TransportRoadLSouthWest.name=Road L South-West -tile.TransportRoadTNorthEastWest.name=Road T North-East-West -tile.TransportRoadTNorthSouthEast.name=Road T North-South-East -tile.TransportRoadTNorthSouthWest.name=Road T North-South-West -tile.TransportRoadTSouthEastWest.name=Road T South-East-West -tile.TransportRoadXNorthEastSouthWest.name=Road X -tile.TransportStreet1EastWest.name=Street 1 East-West -tile.TransportStreet1NorthSouth.name=Street 1 North-South -tile.TransportStreetEEast.name=Street E East -tile.TransportStreetENorth.name=Street E North -tile.TransportStreetESouth.name=Street E South -tile.TransportStreetEWest.name=Street E West -tile.TransportStreetLNorthEast.name=Street L North-East -tile.TransportStreetLNorthWest.name=Street L North-West -tile.TransportStreetLSouthEast.name=Street L South-East -tile.TransportStreetLSouthWest.name=Street L South-West -tile.TransportStreetRoundaboutNorthEastSouthWest.name=Street Roundabout -tile.TransportStreetTNorthEastWest.name=Street T North-East-West -tile.TransportStreetTNorthSouthEast.name=Street T North-South-East -tile.TransportStreetTNorthSouthWest.name=Street T North-South-West -tile.TransportStreetTSouthEastWest.name=Street T South-East-West -tile.TransportStreetXNorthEastSouthWest.name=Street X -tile.TransportWater1CornerNorthEast.name=1-Corner North-East -tile.TransportWater1CornerNorthWest.name=1-Corner North-West -tile.TransportWater1CornerSouthEast.name=1-Corner South-East -tile.TransportWater1CornerSouthWest.name=1-Corner South-West -tile.TransportWater2CornerEast.name=2-Corner East -tile.TransportWater2CornerNorth.name=2-Corner North -tile.TransportWater2CornerSouth.name=2-Corner South -tile.TransportWater2CornerWest.name=2-Corner West -tile.TransportWater3CornerNorthEast_NorthWest_SouthEast.name=3-Corner NorthEast-NorthWest-SouthEast -tile.TransportWater3CornerNorthEast_NorthWest_SouthWest.name=3-Corner NorthEast-NorthWest-SouthWest -tile.TransportWater3CornerSouthEast_SouthWest_NorthEast.name=3-Corner SouthEast-SouthWest-NorthEast -tile.TransportWater3CornerSouthEast_SouthWest_NorthWest.name=3-Corner SouthEast-SouthWest-NorthWest -tile.TransportWater4CornerNorthSouthEastWest.name=4-Corner -tile.UtilityPower_NuclearEast.name=Power Nuclear East -tile.UtilityPower_NuclearNorth.name=Power Nuclear North -tile.UtilityPower_NuclearSouth.name=Power Nuclear South -tile.UtilityPower_NuclearWest.name=Power Nuclear West -tile.UtilityPower_OilCoalEast.name=Power Oil Coal East -tile.UtilityPower_OilCoalNorth.name=Power Oil Coal North -tile.UtilityPower_OilCoalWest.name=Power Oil Coal West -tile.UtilityPower_OilCoalSouth.name=Power Oil Coal South -tile.UtilityPower_SunNorthEastSouthWest.name=Power Solar -tile.UtilityPower_WindEast.name=Power Wind East -tile.UtilityPower_WindNorth.name=Power Wind North -tile.UtilityPower_WindSouth.name=Power Wind South -tile.UtilityPower_WindWest.name=Power Wind West -tile.UtilityPumpjackEastWest.name=Pumpjack East-West -tile.UtilityPumpjackNorthSouth.name=Pumpjack North-South -tile.UtilityScrap_BurningEast.name=Scrap Burning East -tile.UtilityScrap_BurningNorth.name=Scrap Burning North -tile.UtilityScrap_BurningSouth.name=Scrap Burning South -tile.UtilityScrap_BurningWest.name=Scrap Burning West -tile.UtilityScrap_HeapEast.name=Scrap Heap East -tile.UtilityScrap_HeapNorth.name=Scrap Heap North -tile.UtilityScrap_HeapSouth.name=Scrap Heap South -tile.UtilityScrap_HeapWest.name=Scrap Heap West -tile.UtilityScrap_RecycleEast.name=Scrap Recyclye East -tile.UtilityScrap_RecycleNorth.name=Scrap Recycle North -tile.UtilityScrap_RecycleSouth.name=Scrap Recycle South -tile.UtilityScrap_RecycleWest.name=Scrap Recycle West -tile.UtilityWater_PumpEast.name=Water Pump East -tile.UtilityWater_PumpNorth.name=Water Pump North -tile.UtilityWater_PumpSouth.name=Water Pump South -tile.UtilityWater_PumpWest.name=Water Pump West -tile.UtilityWater_TowerNorthEastSouthWest.name=Water Tower -tile.UtilityWater_TreatmentEast.name=Water Treatment East -tile.UtilityWater_TreatmentNorth.name=Water Treatment North -tile.UtilityWater_TreatmentSouth.name=Water Treatment South -tile.UtilityWater_TreatmentWest.name=Water Treatment West - -tile.OtherBrickHouse.name=Big Brick/Quartz Building -tile.OtherGrandHouse.name=Sandstone Building -tile.OtherLighthouse.name=Lighthouse -tile.OtherStable.name=Stables -tile.OtherSurvivorHouse2.name=Survivalists' Shack #01 -tile.OtherSurvivorHouse3.name=Survivalists' Shack #02 -tile.OtherSurvivorHouse4.name=Survivalists' Shack #03 -tile.OtherSurvivorHouse5.name=Survivalists' Shack #04 -tile.OtherSurvivorHouse6.name=Big Wooden House #02 -tile.OtherSurvivorHouse7.name=Big Wooden House #03 -tile.OtherSurvivorHouse8.name=Survivalists' Shack #05 -tile.OtherSurvivorHouse.name=Survivalists' Shack #06 -tile.OtherTemple.name=Temple -tile.SurvivalSmallBuilding.name=Small Sandstone Building -tile.SurvivalWoodenHouse.name=Wooden Building -tile.WoodenHouse.name=Big Wooden House -tile.BlockCheckerboard.name=Checkerboard Generator -tile.BlockAtlantis.name=Atlantis Generator -tile.BlockBigWorld.name=World Magnifier - -tile.BlockCosyHouse.name=Snow Covered House -tile.BlockStoreHouse.name=Magic Storehouse Block -tile.Remover16.name=Remove a 16x16 Structure -tile.Remover16256.name=16x16 and 256 high -tile.Remover1632.name=16x16 and 32 high -tile.Remover168.name=16x16 and 8 high -tile.Remover32.name=Remove a 32x32 Structure -tile.Remover3216.name=32x32 and 16 high -tile.Remover32256.name=32x32 and 256 high -tile.Remover328.name=32x32 and 8 high -tile.Remover64.name=Remove a 64x64 Structure -tile.Remover64256.name=64x64 and 256 high -tile.Remover8.name=Remove a 1 high Structure -tile.Remover816.name=8x8 and 16 high -tile.Remover8256.name=8x8 and 256 high -tile.Remover832.name=8x8 and 32 high -tile.RemoverLast.name=Remove last placed structure - -itemGroup.Structures=Survival Structures -itemGroup.Decoration=Decoration -itemGroup.Food=Food -itemGroup.IndustryHigh_Density=Industry - High Density -itemGroup.IndustryMedium_Density=Industry - Medium Density -itemGroup.IndustryLow_Density=Industry - Low Density -itemGroup.Office=Office -itemGroup.Public=Public -itemGroup.ResidentalEnormous_Density=Residental - Enormous Density -itemGroup.ResidentalHigh_Density=Residental - High Density -itemGroup.ResidentalMedium_Density=Residental - Medium Density -itemGroup.ResidentalLow_Density=Residental - Low Density -itemGroup.Shopping=Shopping - High Density -itemGroup.TransportAirport=Transport - Airport -itemGroup.TransportHarbour=Transport - Harbour -itemGroup.TransportPublic=Transport - Public -itemGroup.TransportRoads=Transport - Roads -itemGroup.TransportWater=Transport - Water -itemGroup.Utility=Utility -itemGroup.Remover=Structure Removers -itemGroup.Other=Other Structures -itemGroup.WorldGeneration=World Generation (WATCH OUT) -itemGroup.LiveStructures=Live Structures - -tile.RandomAirballoon2.name=Airship #02 -tile.RandomEntrance.name=Building Complex -tile.RandomFlyingShip.name=Airship -tile.RandomGreenTent.name=Miner Tent #03 -tile.RandomGreyTent.name=Miner Tent #02 -tile.RandomLightHouse.name=Lighthouse -tile.RandomMinerTent.name=Miner Tent -tile.RandomNetherEntranceSurvival.name=Nether Entrance Building -tile.RandomRandomBrickHouse.name=Brick House -tile.RandomSurvivalHouse1.name=Survivalists' Shack #08 -tile.RandomSurvivalHouseSandstone.name=Survivalists' Shack #07 -tile.RandomTentCamp.name=Tent Camp -tile.RandomWoodenHouse.name=Wooden House -tile.BlockCloud.name=Cloud Generator - -tile.RandomBuildingComplex.name=Sandstone House Complex -tile.RandomImmense_Buildingcomplex.name=Immense Shopping Arcade -tile.RandomImmense_White_House.name=Immense Quartz Building -tile.RandomImmense_WorkingBuilding.name=Brick Office -tile.RandomLittlePalace.name=Small Palace -tile.RandomSandStoneChurch.name=Sandstone Church -tile.RandomSandstonewithFarm.name=Sandstone Villa -tile.RandomSimpleSandstone.name=Sandstone House -tile.RandomSpawnHouseProd.name=Sandstone Chapel -tile.RandomWoodenStonebrickHouse.name=Brick 'n Planks Building -tile.RandomImmense_greenroof.name=Immense Palace -tile.RandomLittleWoodenCabin.name=Wooden Cabin -tile.RandomSandstoneBuilding.name=Sandstone Palace -tile.Live_Power_Windmill_East.name=Windmill - -tile.LiveAirBalloon.name=Airballoon -tile.LiveAirplane.name=Airplane -tile.LiveBoat.name=Boat -tile.LiveFlyingShip2.name=Airship #02 -tile.LiveFlyingShip.name=Airship #01 -tile.LivePlane.name=F16 -tile.Live_Helicopter.name=Helicopter -tile.Live_Fair_FreeFall.name=Fair - Freefall -tile.Live_Mill.name=Mill -tile.Live_Cinema.name=Cinema -tile.Live_Flying_Helicopter.name=Flying Helicopter - -tile.BlockTouchable.name=Game Over Block -tile.BlockChallengeOne.name=Challenge One -tile.BlockChallengeTwo.name=Challenge Two -tile.BlockChallengeThree.name=Challenge Three -tile.BlockChallengeFour.name=Challenge Four -tile.BlockChallengeFive.name=Challenge Five -tile.BlockChallengeSix.name=Challenge Six -tile.BlockChallengeSeven.name=Challenge Seven -tile.BlockChallengeEight.name=Challenge Eight -tile.BlockChallengeNine.name=Challenge Nine -tile.BlockChallengeTen.name=Challenge Ten -tile.BlockBlackRock.name=BlackRock - -tile.Live_Bus.name=Bus -tile.Live_Bus2.name=Double Decker Bus -tile.BlockFerrisWheel.name=Ferris Wheel - -tile.ChristmasHouse.name=Christmas House -tile.ChristmasHouse2.name=Christmas House #2 -tile.ChristmasHouse3.name=Christmas House #3 -tile.ChristmasSleigh.name=Santa's Sleigh -tile.ChristmasSleigh2.name=Santa's Sleigh #2 -tile.ChristmasSnowman.name=Giant Snowman -tile.ChristmasTree.name=Giant Christmas Tree -tile.ChristmasMarket.name=Christmas Marketplace -tile.Live_WaterMill.name=Watermill - -tile.BlockUnlimited.name=Add a new structure! -itemGroup.User=Your Own Structures! \ No newline at end of file diff --git a/src/main/resources/assets/imsm/lang/en_us.json b/src/main/resources/assets/imsm/lang/en_us.json new file mode 100644 index 00000000..2e85cabb --- /dev/null +++ b/src/main/resources/assets/imsm/lang/en_us.json @@ -0,0 +1,914 @@ +{ + "tile.LiveStructureRemover.name": "Live Structure Remover", + "BlockPyramid": "Magic Pyramid Block", + "tile.BlockTower.name": "Magic Tower Block", + "tile.BlockEnchantmentRoom.name": "Magic Enchantment Room Block", + "tile.BlockLighthouse.name": "Magic Lighthouse Block", + "tile.BlockHouse.name": "Magic House Block", + "tile.penwood.name": "Magic Wooden Pen Block", + "tile.peniron.name": "Magic Iron Pen Block", + "tile.pennether.name": "Magic Netherbrick Pen Block", + "tile.BlockGiantTree.name": "Magic Huge Tree Block", + "tile.BlockFarm.name": "Magic Wheat Farm Block", + "tile.BlockStorehouse.name": "Magic Storehouse Block", + "tile.BlockHouseTrap2.name": "Magic Trapped House Block", + "tile.BlockHouseTrap1.name": "Magic Trapped House Block", + "tile.BlockWaterSlide.name": "Magic Waterslide Block", + "tile.BlockBunker.name": "Magic Bunker Block", + "tile.BlockArena1.name": "Magic Arena Block", + "tile.BlockArena2.name": "Magic Lava-Arena Block", + "tile.BlockFarm2.name": "Magic Sugar Cane Farm Block", + "tile.BlockFarm3.name": "Magic Melon Farm Block", + "tile.BlockFarm4.name": "Magic Pumpkin Farm Block", + "tile.BlockPrison.name": "Magic Prison Block", + "tile.BlockPrison2.name": "Magic Prison Block", + "tile.BlockRollercoaster.name": "Magic Rollercoaster Block", + "tile.BlockSkyscraper.name": "Magic Skyscraper Block", + "tile.BlockTorch2.name": "Magic Torchpattern Block", + "tile.BlockAirplane.name": "Magic Airplane Block", + "tile.BlockBoat.name": "Magic Boat Block", + "tile.BlockAirBalloon.name": "Magic Airballoon Block", + "tile.BlockPlane.name": "Magic Plane Block", + "tile.BlockDungeon.name": "Magic Dungeon Block", + "tile.BlockBigPyramid.name": "Magic Huge Pyramid Block", + "tile.BlockCastleTower.name": "Magic CastleTower Block", + "tile.BlockHountedHouse.name": "Magic Haunted House Block", + "tile.BlockMegaTower.name": "Magic Mega Skyscraper Block", + "tile.BlockMegaHouse.name": "Magic House Block", + "tile.BlockMegaHouse2.name": "Magic House Block", + "tile.BlockStadium.name": "Magic Stadium Block", + "tile.FloatingSphere.name": "Magic Floating Sphere Block", + "tile.StadiumSub1.name": "Magic Stadium Block", + "tile.BlockRollerCoaster2.name": "Magic Rollercoaster Block", + "tile.Column.name": "Magic Column Block", + "tile.GlassHouse.name": "Magic Glass House Block", + "tile.StandardBrickHouse.name": "Magic Standard Brick House Block", + "tile.Street.name": "Magic Street Block", + "tile.Shelter.name": "Magic Shelter Block", + "tile.DecorationGrassNorthEastSouthWest.name": "Grass", + "tile.DecorationParkEast.name": "Park East", + "tile.DecorationParkingGarageEast.name": "Parking Garage East", + "tile.DecorationParkingGarageNorth.name": "Parking Garage North", + "tile.DecorationParkingGarageSouth.name": "Parking Garage South", + "tile.DecorationParkingGarageWest.name": "Parking Garage West", + "tile.DecorationParkingLotsEast.name": "Parking Lots East", + "tile.DecorationParkingLotsNorth.name": "Parking Lots North", + "tile.DecorationParkingLotsSouth.name": "Parking Lots South", + "tile.DecorationParkingLotsWest.name": "Parking Lots West", + "tile.DecorationParkNorth.name": "Park North", + "tile.DecorationParkSouth.name": "Park South", + "tile.DecorationParkWest.name": "Park West", + "tile.DecorationPlazaFountainNorthEastSouthWest.name": "Plaza Fountain", + "tile.DecorationPlazaNorthEastSouthWest.name": "Plaza", + "tile.DecorationSoccerStadiumEastWest.name": "Soccer Stadium East-West", + "tile.DecorationSoccerStadiumNorthSouth.name": "Soccer Stadium North-South", + "tile.DecorationSquareNorthEastSouthWest.name": "Square", + "tile.DecorationSquareTreeEast.name": "Square Tree East", + "tile.DecorationSquareTreeNorth.name": "Square Tree North", + "tile.DecorationSquareTreeSouth.name": "Square Tree South", + "tile.DecorationSquareTreeWest.name": "Square Tree West", + "tile.FoodCarrotsEastWest.name": "Carrots East-West", + "tile.FoodCarrotsNorthSouth.name": "Carrots North-South", + "tile.FoodFarmEast.name": "Farm East", + "tile.FoodFarmNorth.name": "Farm North", + "tile.FoodFarmSouth.name": "Farm South", + "tile.FoodFarmWest.name": "Farm West", + "tile.FoodPotatoesNorthEastSouthWest.name": "Potatoes", + "tile.FoodStableEastWest.name": "Stable East-West", + "tile.FoodStableNorthSouth.name": "Stable North-South", + "tile.FoodWheatNorthEastSouthWest.name": "Wheat", + "tile.IndustryHigh_DensityBlueEast.name": "Blue East", + "tile.IndustryHigh_DensityBlueNorth.name": "Blue North", + "tile.IndustryHigh_DensityBlueSouth.name": "Blue South", + "tile.IndustryHigh_DensityBlueWest.name": "Blue West", + "tile.IndustryHigh_DensityBrickEast.name": "Brick East", + "tile.IndustryHigh_DensityBrickNorth.name": "Brick North", + "tile.IndustryHigh_DensityBrickSouth.name": "Brick South", + "tile.IndustryHigh_DensityBrickWest.name": "Brick West", + "tile.IndustryHigh_DensityChimneyEast.name": "Chimney East", + "tile.IndustryHigh_DensityChimneyNorth.name": "Chimney North", + "tile.IndustryHigh_DensityChimneySouth.name": "Chimney South", + "tile.IndustryHigh_DensityChimneyWest.name": "Chimney West", + "tile.IndustryHigh_DensityComputerChipEast.name": "Computer Chip East", + "tile.IndustryHigh_DensityComputerChipNorth.name": "Computer Chip North", + "tile.IndustryHigh_DensityComputerChipSouth.name": "Computer Chip South", + "tile.IndustryHigh_DensityComputerChipWest.name": "Computer Chip West", + "tile.IndustryHigh_DensityGreenEast.name": "Green East", + "tile.IndustryHigh_DensityGreenNorth.name": "Green North", + "tile.IndustryHigh_DensityGreenSouth.name": "Green South", + "tile.IndustryHigh_DensityGreenWest.name": "Hardened Clay West", + "tile.IndustryHigh_DensityLightBlueEast.name": "Light Blue East", + "tile.IndustryHigh_DensityLightBlueNorth.name": "Light Blue North", + "tile.IndustryHigh_DensityLightBlueSouth.name": "Light Blue South", + "tile.IndustryHigh_DensityLightBlueWest.name": "Light Blue West", + "tile.IndustryLow_Density3DPrintingEast.name": "3D Printing East", + "tile.IndustryLow_Density3DPrintingNorth.name": "3D Printing North", + "tile.IndustryLow_Density3DPrintingSouth.name": "3D Printing South", + "tile.IndustryLow_Density3DPrintingWest.name": "3D Printing West", + "tile.IndustryLow_DensityBlueEast.name": "Blue East", + "tile.IndustryLow_DensityBlueNorth.name": "Blue North", + "tile.IndustryLow_DensityBlueSouth.name": "Blue South", + "tile.IndustryLow_DensityBlueWest.name": "Blue West", + "tile.IndustryLow_DensityBrickEast.name": "Brick East", + "tile.IndustryLow_DensityBrickEastWest.name": "Brick East-West", + "tile.IndustryLow_DensityBrickNorth.name": "Brick North", + "tile.IndustryLow_DensityBrickNorthSouth.name": "Brick North-South", + "tile.IndustryLow_DensityBrickSouth.name": "Brick South", + "tile.IndustryLow_DensityBrickWest.name": "Brick West", + "tile.IndustryLow_DensityBrownEast.name": "Brown East", + "tile.IndustryLow_DensityBrownEast2.name": "Brown East II", + "tile.IndustryLow_DensityBrownNorth.name": "Brown North", + "tile.IndustryLow_DensityBrownNorth2.name": "Brown North II", + "tile.IndustryLow_DensityBrownSouth.name": "Brown South", + "tile.IndustryLow_DensityBrownWest.name": "Brown West", + "tile.IndustryLow_DensityBrownSouth2.name": "Brown South II", + "tile.IndustryLow_DensityBrownWest2.name": "Brown West II", + "tile.IndustryLow_DensityChimneyEast.name": "Chimney East", + "tile.IndustryLow_DensityChimneyNorth.name": "Chimney North", + "tile.IndustryLow_DensityChimneySouth.name": "Chimney South", + "tile.IndustryLow_DensityChimneyWest.name": "Chimney West", + "tile.IndustryLow_DensityGreenEast.name": "Green East", + "tile.IndustryLow_DensityGreenNorth.name": "Green North", + "tile.IndustryLow_DensityGreenSouth.name": "Green South", + "tile.IndustryLow_DensityGreenWest.name": "Green West", + "tile.IndustryLow_DensityIronEast.name": "Iron East", + "tile.IndustryLow_DensityIronNorth.name": "Iron North", + "tile.IndustryLow_DensityIronSouth.name": "Iron South", + "tile.IndustryLow_DensityIronWest.name": "Iron West", + "tile.IndustryLow_DensityParabolicAntennaEast.name": "Parabolic Antenna East", + "tile.IndustryLow_DensityParabolicAntennaNorth.name": "Parabolic Antenna North", + "tile.IndustryLow_DensityParabolicAntennaSouth.name": "Parabolic Antenna South", + "tile.IndustryLow_DensityParabolicAntennaWest.name": "Parabolic Antenna West", + "tile.IndustryLow_DensityTankNorthEastSouthWest.name": "Watertank", + "tile.IndustryLow_DensityTelescopeEast.name": "Telescope East", + "tile.IndustryLow_DensityTelescopeNorth.name": "Telescope North", + "tile.IndustryLow_DensityTelescopeSouth.name": "Telescope South", + "tile.IndustryLow_DensityTelescopeWest.name": "Telescope West", + "tile.IndustryMedium_DensityBlueEast.name": "Blue East", + "tile.IndustryMedium_DensityBlueNorth.name": "Blue North", + "tile.IndustryMedium_DensityBlueSouth.name": "Blue South", + "tile.IndustryMedium_DensityBlueWest.name": "Blue West", + "tile.IndustryMedium_DensityBrickEast.name": "Brick East", + "tile.IndustryMedium_DensityBrickNorth.name": "Brick North", + "tile.IndustryMedium_DensityBrickSouth.name": "Brick South", + "tile.IndustryMedium_DensityBrickWest.name": "Brick West", + "tile.IndustryMedium_DensityBrownEast.name": "Brown East", + "tile.IndustryMedium_DensityBrownNorth.name": "Brown North", + "tile.IndustryMedium_DensityBrownSouth.name": "Brown South", + "tile.IndustryMedium_DensityBrownWest.name": "Brown West", + "tile.IndustryMedium_DensityChemicalPressEastWest.name": "Chemical Press East-West", + "tile.IndustryMedium_DensityChemicalPressNorthSouth.name": "Chemical Press North-South", + "tile.IndustryMedium_DensityChimneyEast.name": "Chimney East", + "tile.IndustryMedium_DensityChimneyNorth.name": "Chimney North", + "tile.IndustryMedium_DensityChimneySouth.name": "Chimney South", + "tile.IndustryMedium_DensityChimneyWest.name": "Chimney West", + "tile.IndustryMedium_DensityGreenEast.name": "Green East", + "tile.IndustryMedium_DensityGreenNorth.name": "Green North", + "tile.IndustryMedium_DensityGreenSouth.name": "Green South", + "tile.IndustryMedium_DensityGreenWest.name": "Green West", + "tile.IndustryMedium_DensityIceEast.name": "Ice East", + "tile.IndustryMedium_DensityIceNorth.name": "Ice North", + "tile.IndustryMedium_DensityIceSouth.name": "Ice South", + "tile.IndustryMedium_DensityIceWest.name": "Ice West", + "tile.IndustryMedium_DensitySandstoneEast.name": "Sandstone East", + "tile.IndustryMedium_DensitySandstoneNorth.name": "Sandstone North", + "tile.IndustryMedium_DensitySandstoneSouth.name": "Sandstone South", + "tile.IndustryMedium_DensitySandstoneWest.name": "Sandstone West", + "tile.IndustryMedium_DensityTankEast.name": "Watertank East", + "tile.IndustryMedium_DensityTankNorth.name": "Watertank North", + "tile.IndustryMedium_DensityTankSouth.name": "Watertank South", + "tile.IndustryMedium_DensityTankWest.name": "Watertank West", + "tile.OfficeHigh_DensityBrickEastWest.name": "High Density - Brick East-West", + "tile.OfficeHigh_DensityBrickNorthSouth.name": "High Density - Brick North-South", + "tile.OfficeHigh_DensityCyanEast.name": "High Density - Cyan East", + "tile.OfficeHigh_DensityCyanNorth.name": "High Density - Cyan North", + "tile.OfficeHigh_DensityCyanSouth.name": "High Density - Cyan South", + "tile.OfficeHigh_DensityCyanWest.name": "High Density - Cyan West", + "tile.OfficeHigh_DensityHoleOnTopEast.name": "High Density - Hole On Top East", + "tile.OfficeHigh_DensityHoleOnTopNorth.name": "High Density - Hole On Top North", + "tile.OfficeHigh_DensityHoleOnTopSouth.name": "High Density - Hole On Top South", + "tile.OfficeHigh_DensityHoleOnTopWest.name": "High Density - Hole On Top West", + "tile.OfficeHigh_DensityLightBlueEastWest.name": "High Density - Light Blue East-West", + "tile.OfficeHigh_DensityLightBlueNorthSouth.name": "High Density - Light Blue North-South", + "tile.OfficeHigh_DensitySpirolBuildingEast.name": "High Density - Spirol Building East", + "tile.OfficeHigh_DensitySpirolBuildingNorth.name": "High Density - Spirol Building North", + "tile.OfficeHigh_DensitySpirolBuildingSouth.name": "High Density - Spirol Building South", + "tile.OfficeHigh_DensitySpirolBuildingWest.name": "High Density - Spirol Building West", + "tile.OfficeLow_DensityBlueEast.name": "Low Density - Blue East", + "tile.OfficeLow_DensityBlueNorth.name": "Low Density - Blue North", + "tile.OfficeLow_DensityBlueSouth.name": "Low Density - Blue South", + "tile.OfficeLow_DensityBlueWest.name": "Low Density - Blue West", + "tile.OfficeLow_DensityGreenEast.name": "Low Density - Green East", + "tile.OfficeLow_DensityGreenNorth.name": "Low Density - Green North", + "tile.OfficeLow_DensityGreenSouth.name": "Low Density - Green South", + "tile.OfficeLow_DensityGreenWest.name": "Low Density - Green West", + "tile.OfficeLow_DensityWhiteEast.name": "Low Density - White East", + "tile.OfficeLow_DensityWhiteNorth.name": "Low Density - White North", + "tile.OfficeLow_DensityWhiteSouth.name": "Low Density - White South", + "tile.OfficeLow_DensityWhiteWest.name": "Low Density - White West", + "tile.OfficeLow_DensityYellowEast.name": "Low Density - Yellow East", + "tile.OfficeLow_DensityYellowNorth.name": "Low Density - Yellow North", + "tile.OfficeLow_DensityYellowSouth.name": "Low Density - Yellow South", + "tile.OfficeLow_DensityYellowWest.name": "Low Density - Yellow West", + "tile.OfficeMedium_DensityCyanEast.name": "Medium Density - Cyan East", + "tile.OfficeMedium_DensityCyanNorth.name": "Medium Density - Cyan North", + "tile.OfficeMedium_DensityCyanSouth.name": "Medium Density - Cyan South", + "tile.OfficeMedium_DensityCyanWest.name": "Medium Density - Cyan West", + "tile.OfficeMedium_DensityLightBlueEast.name": "Medium Density - Light Blue East", + "tile.OfficeMedium_DensityLightBlueNorth.name": "Medium Density - Light Blue North", + "tile.OfficeMedium_DensityLightBlueSouth.name": "Medium Density - Light Blue South", + "tile.OfficeMedium_DensityLightBlueWest.name": "Medium Density - Light Blue West", + "tile.OfficeMedium_DensityPinkEast.name": "Medium Density - Pink East", + "tile.OfficeMedium_DensityPinkNorth.name": "Medium Density - Pink North", + "tile.OfficeMedium_DensityPinkSouth.name": "Medium Density - Pink South", + "tile.OfficeMedium_DensityPinkWest.name": "Medium Density - Pink West", + "tile.OfficeMedium_DensitySandstoneEast.name": "Medium Density - Sandstone East", + "tile.OfficeMedium_DensitySandstoneNorth.name": "Medium Density - Sandstone North", + "tile.OfficeMedium_DensitySandstoneSouth.name": "Medium Density - Sandstone South", + "tile.OfficeMedium_DensitySandstoneWest.name": "Medium Density - Sandstone West", + "tile.PublicFireServiceBigEast.name": "Fire Service Big East", + "tile.PublicFireServiceBigNorth.name": "Fire Service Big North", + "tile.PublicFireServiceBigSouth.name": "Fire Service Big South", + "tile.PublicFireServiceBigWest.name": "Fire Service Big West", + "tile.PublicFireServiceSmallEast.name": "Fire Service Small East", + "tile.PublicFireServiceSmallNorth.name": "Fire Service Small North", + "tile.PublicFireServiceSmallSouth.name": "Fire Service Small South", + "tile.PublicFireServiceSmallWest.name": "Fire Service Small West", + "tile.PublicHospitalBigEast.name": " Hospital Big East", + "tile.PublicHospitalBigNorth.name": "Hospital Big North", + "tile.PublicHospitalBigSouth.name": "Hospital Big South", + "tile.PublicHospitalBigWest.name": "Hospital Big West", + "tile.PublicHospitalSmallEast.name": "Hospital Small East", + "tile.PublicHospitalSmallNorth.name": "Hospital Small North", + "tile.PublicHospitalSmallSouth.name": "Hospital Small South", + "tile.PublicHospitalSmallWest.name": "Hospital Small West", + "tile.PublicLibraryEastWest.name": "Library East-West", + "tile.PublicLibraryNorthSouth.name": "Library North-South", + "tile.PublicPoliceBigEast.name": "Police Big East", + "tile.PublicPoliceBigNorth.name": "Police Big North", + "tile.PublicPoliceBigSouth.name": "Police Big South", + "tile.PublicPoliceBigWest.name": "Police Big West", + "tile.PublicPoliceSmallEast.name": "Police Small East", + "tile.PublicPoliceSmallNorth.name": "Police Small North", + "tile.PublicPoliceSmallSouth.name": "Police Small South", + "tile.PublicPoliceSmallWest.name": "Police Small West", + "tile.PublicSchoolBigNorthEast.name": "School Big North-East", + "tile.PublicSchoolBigNorthWest.name": "School Big North-West", + "tile.PublicSchoolBigSouthEast.name": "School Big South-East", + "tile.PublicSchoolBigSouthWest.name": "School Big South-West", + "tile.PublicSchoolSmallNorthEast.name": "School Small North-East", + "tile.PublicSchoolSmallNorthWest.name": "School Small North-West", + "tile.PublicSchoolSmallSouthEast.name": "School Small South-East", + "tile.PublicSchoolSmallSouthWest.name": "School Small South-West", + "tile.PublicTownhallBigEastWest.name": "Townhall Big East-West", + "tile.PublicTownhallBigNorthSouth.name": "Townhall Big North-South", + "tile.PublicTownhallSmallEast.name": "Townhall Small East", + "tile.PublicTownhallSmallNorth.name": "Townhall Small North", + "tile.PublicTownhallSmallSouth.name": "Townhall Small South", + "tile.PublicTownhallSmallWest.name": "Townhall Small West", + "tile.PublicUniversityEast.name": "University East", + "tile.PublicUniversityNorth.name": "University North", + "tile.PublicUniversitySouth.name": "University South", + "tile.PublicUniversityWest.name": "University West", + "tile.ResidentalEnormous_DensityBlockNorthEastSouthWest.name": "$ Block", + "tile.ResidentalEnormous_DensityBrickBigEast.name": "$$$ Brick Big East", + "tile.ResidentalEnormous_DensityBrickBigNorth.name": "$$$ Brick Big North", + "tile.ResidentalEnormous_DensityBrickBigSouth.name": "$$$ Brick Big South", + "tile.ResidentalEnormous_DensityBrickBigWest.name": "$$$ Brick Big West", + "tile.ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.name": "$$$ Brick Small", + "tile.ResidentalEnormous_DensityGreyEast.name": "$$ Grey East", + "tile.ResidentalEnormous_DensityGreyNorth.name": "$$ Grey North", + "tile.ResidentalEnormous_DensityGreySouth.name": "$$ Grey South", + "tile.ResidentalEnormous_DensityGreyWest.name": "$$ Grey West", + "tile.ResidentalEnormous_DensityModernEast.name": "$$$ Modern East", + "tile.ResidentalEnormous_DensityModernNorth.name": "$$$ Modern North", + "tile.ResidentalEnormous_DensityModernSouth.name": "$$$ Modern South", + "tile.ResidentalEnormous_DensityModernWest.name": "$$$ Modern West", + "tile.ResidentalEnormous_DensityRedEastWest.name": "$$ Red East-West", + "tile.ResidentalEnormous_DensityRedNorthSouth.name": "$$ Red North-South", + "tile.ResidentalEnormous_DensityRoundNorthEastSouthWest.name": "$ Round", + "tile.ResidentalEnormous_DensityStoneEast.name": "$ Stone East", + "tile.ResidentalEnormous_DensityStoneNorth.name": "$ Stone North", + "tile.ResidentalEnormous_DensityStoneSouth.name": "$ Stone South", + "tile.ResidentalEnormous_DensityStoneWest.name": "$ Stone West", + "tile.ResidentalEnormous_DensityStoneEast2.name": "$$$ Stone East", + "tile.ResidentalEnormous_DensityStoneNorth2.name": "$$$ Stone North", + "tile.ResidentalEnormous_DensityStoneSouth2.name": "$$$ Stone South", + "tile.ResidentalEnormous_DensityStoneWest2.name": "$$$ Stone West", + "tile.ResidentalEnormous_DensityYellowNorthEastSouthWest.name": "$$ Yellow", + "tile.ResidentalHigh_DensityBlueEast.name": "$$$ Blue East", + "tile.ResidentalHigh_DensityBlueEastWest.name": "$$ Blue East-West", + "tile.ResidentalHigh_DensityBlueNorth.name": "$$$ Blue North", + "tile.ResidentalHigh_DensityBlueNorthSouth.name": "$$ Blue North-South", + "tile.ResidentalHigh_DensityBlueSouth.name": "$$$ Blue South", + "tile.ResidentalHigh_DensityBlueWest.name": "$$$ Blue West", + "tile.ResidentalHigh_DensityBrickEast.name": "$$$ Brick East", + "tile.ResidentalHigh_DensityBrickEastWest.name": "$ Brick East-West", + "tile.ResidentalHigh_DensityBrickNorth.name": "$$$ Brick North", + "tile.ResidentalHigh_DensityBrickNorthSouth.name": "$ Brick North-South", + "tile.ResidentalHigh_DensityBrickSouth.name": "$$$ Brick South", + "tile.ResidentalHigh_DensityBrickWest.name": "$$$ Brick West", + "tile.ResidentalHigh_DensityGreenGreyEast.name": "$$ Green Grey East", + "tile.ResidentalHigh_DensityGreenGreyNorth.name": "$$ Green Grey North", + "tile.ResidentalHigh_DensityGreenGreySouth.name": "$$ Green Grey South", + "tile.ResidentalHigh_DensityGreenGreyWest.name": "$$ Green Grey West", + "tile.ResidentalHigh_DensityRedCornerNorthEast.name": "$$$ Red Corner North-East", + "tile.ResidentalHigh_DensityRedCornerNorthWest.name": "$$$ Red Corner North-West", + "tile.ResidentalHigh_DensityRedCornerSouthEast.name": "$$$ Red Corner South-East", + "tile.ResidentalHigh_DensityRedCornerSouthWest.name": "$$$ Red Corner South-West", + "tile.ResidentalHigh_DensityRedYellowEast.name": "$$ Yellow East", + "tile.ResidentalHigh_DensityRedYellowNorth.name": "$$ Yellow North", + "tile.ResidentalHigh_DensityRedYellowSouth.name": "$$ Yellow South", + "tile.ResidentalHigh_DensityRedYellowWest.name": "$$ Yellow West", + "tile.ResidentalHigh_DensityStoneEast.name": "$ Stone East", + "tile.ResidentalHigh_DensityStoneNorth.name": "$ Stone North", + "tile.ResidentalHigh_DensityStoneSouth.name": "$ Stone South", + "tile.ResidentalHigh_DensityStoneWest.name": "$ Stone West", + "tile.ResidentalHigh_DensityStoneEast2.name": "$$$ Stone East", + "tile.ResidentalHigh_DensityStoneNorth2.name": "$$$ Stone North", + "tile.ResidentalHigh_DensityStoneSouth2.name": "$$$ Stone South", + "tile.ResidentalHigh_DensityStoneWest2.name": "$$$ Stone West", + "tile.ResidentalHigh_DensityYellowEast.name": "$$$ Yellow East", + "tile.ResidentalHigh_DensityYellowNorth.name": "$$$ Yellow North", + "tile.ResidentalHigh_DensityYellowSouth.name": "$$$ Yellow South", + "tile.ResidentalHigh_DensityYellowWest.name": "$$$ Yellow West", + "tile.ResidentalLow_DensityBeigeEast.name": "$$ Beige East", + "tile.ResidentalLow_DensityBeigeNorth.name": "$$ Beige North", + "tile.ResidentalLow_DensityBeigeSouth.name": "$$ Beige South", + "tile.ResidentalLow_DensityBeigeWest.name": "$$ Beige West", + "tile.ResidentalLow_DensityCyanEast.name": "$ Cyan East", + "tile.ResidentalLow_DensityCyanNorth.name": "$ Cyan North", + "tile.ResidentalLow_DensityCyanSouth.name": "$ Cyan South", + "tile.ResidentalLow_DensityCyanWest.name": "$ Cyan West", + "tile.ResidentalLow_DensityGreenEast.name": "$ Green East", + "tile.ResidentalLow_DensityGreenNorth.name": "$ Green North", + "tile.ResidentalLow_DensityGreenSouth.name": "$ Green South", + "tile.ResidentalLow_DensityGreenWest.name": "$ Green West", + "tile.ResidentalLow_DensityGreenEast2.name": "$$ Green East II", + "tile.ResidentalLow_DensityGreenNorth2.name": "$$ Green North II", + "tile.ResidentalLow_DensityGreenSouth2.name": "$$ Green South II", + "tile.ResidentalLow_DensityGreenWest2.name": "$$ Green West II", + "tile.ResidentalLow_DensityLightBlueEast.name": "$ Light Blue East", + "tile.ResidentalLow_DensityLightBlueNorth.name": "$ Light Blue North", + "tile.ResidentalLow_DensityLightBlueSouth.name": "$ Light Blue South", + "tile.ResidentalLow_DensityLightBlueWest.name": "$ Light Blue West", + "tile.ResidentalLow_DensityLightBlueEast2.name": "$$ Light Blue East II", + "tile.ResidentalLow_DensityLightBlueNorth2.name": "$$ Light Blue North II", + "tile.ResidentalLow_DensityLightBlueSouth2.name": "$$ Light Blue South II", + "tile.ResidentalLow_DensityLightBlueWest2.name": "$$ Light Blue West II", + "tile.ResidentalLow_DensityLightGreyEast.name": "$- Light Grey East", + "tile.ResidentalLow_DensityLightGreyNorth.name": "$ Light Grey North", + "tile.ResidentalLow_DensityLightGreySouth.name": "$ Light Grey South", + "tile.ResidentalLow_DensityLightGreyWest.name": "$ Light Grey West", + "tile.ResidentalLow_DensityModernEast.name": "$$$ Modern East", + "tile.ResidentalLow_DensityModernNorth.name": "$$$ Modern North", + "tile.ResidentalLow_DensityModernSouth.name": "$$$ Modern South", + "tile.ResidentalLow_DensityModernWest.name": "$$$ Modern West", + "tile.ResidentalLow_DensityOrangeEast.name": "$ Orange East", + "tile.ResidentalLow_DensityOrangeNorth.name": "$ Orange North", + "tile.ResidentalLow_DensityOrangeSouth.name": "$ Orange South", + "tile.ResidentalLow_DensityOrangeWest.name": "$ Orange West", + "tile.ResidentalLow_DensityRedEast.name": "$$ Red East", + "tile.ResidentalLow_DensityRedNorth.name": "$$ Red North", + "tile.ResidentalLow_DensityRedSouth.name": "$$ Red South", + "tile.ResidentalLow_DensityRedWest.name": "$$ Red West", + "tile.ResidentalLow_DensityStoneEast.name": "$$$ Stone East", + "tile.ResidentalLow_DensityStoneNorth.name": "$$$ Stone North", + "tile.ResidentalLow_DensityStoneSouth.name": "$$$ Stone South", + "tile.ResidentalLow_DensityStoneWest.name": "$$$ Stone West", + "tile.ResidentalLow_DensityWhiteEast.name": "$$ White East", + "tile.ResidentalLow_DensityWhiteNorth.name": "$$ White North", + "tile.ResidentalLow_DensityWhiteSouth.name": "$$ White South", + "tile.ResidentalLow_DensityWhiteWest.name": "$$ White West", + "tile.ResidentalLow_DensityWoodEast.name": "$$$ Wood East", + "tile.ResidentalLow_DensityWoodNorth.name": "$$$ Wood North", + "tile.ResidentalLow_DensityWoodSouth.name": "$$$ Wood South", + "tile.ResidentalLow_DensityWoodWest.name": "$$$ Wood West", + "tile.ResidentalLow_DensityYellowEast.name": "$ Yellow East", + "tile.ResidentalLow_DensityYellowNorth.name": "$ Yellow North", + "tile.ResidentalLow_DensityYellowSouth.name": "$ Yellow South", + "tile.ResidentalLow_DensityYellowWest.name": "$ Yellow West", + "tile.ResidentalLow_DensityYellowEast2.name": "$$ Yellow East II", + "tile.ResidentalLow_DensityYellowNorth2.name": "$$ Yellow North II", + "tile.ResidentalLow_DensityYellowSouth2.name": "$$ Yellow South II", + "tile.ResidentalLow_DensityYellowWest2.name": "$$ Yellow West II", + "tile.ResidentalMedium_DensityBlueGreenEast.name": "$$ Blue Green East", + "tile.ResidentalMedium_DensityBlueGreenNorth.name": "$$ Blue Green North", + "tile.ResidentalMedium_DensityBlueGreenSouth.name": "$$ Blue Green South", + "tile.ResidentalMedium_DensityBlueGreenWest.name": "$$ Blue Green West", + "tile.ResidentalMedium_DensityBlueRedEast.name": "$$ Blue Red East", + "tile.ResidentalMedium_DensityBlueRedNorth.name": "$$ Blue Red North", + "tile.ResidentalMedium_DensityBlueRedSouth.name": "$$ Blue Red South", + "tile.ResidentalMedium_DensityBlueRedWest.name": "$$ Blue Red West", + "tile.ResidentalMedium_DensityBrickEast.name": "$$$ Brick East", + "tile.ResidentalMedium_DensityBrickNorth.name": "$$$ Brick North", + "tile.ResidentalMedium_DensityBrickSouth.name": "$$$ Brick South", + "tile.ResidentalMedium_DensityBrickWest.name": "$$$ Brick West", + "tile.ResidentalMedium_DensityHorizontalEast.name": "$ Horizontal East", + "tile.ResidentalMedium_DensityHorizontalNorth.name": "$ Horizontal North", + "tile.ResidentalMedium_DensityHorizontalSouth.name": "$ Horizontal South", + "tile.ResidentalMedium_DensityHorizontalWest.name": "$ Horizontal West", + "tile.ResidentalMedium_DensityOrangeGreenEast.name": "$$ Orange Green East", + "tile.ResidentalMedium_DensityOrangeGreenNorth.name": "$$ Orange Green North", + "tile.ResidentalMedium_DensityOrangeGreenSouth.name": "$$ Orange Green South", + "tile.ResidentalMedium_DensityOrangeGreenWest.name": "$$ Orange Green West", + "tile.ResidentalMedium_DensityQuartzEast.name": "$$$ Quartz East", + "tile.ResidentalMedium_DensityQuartzNorth.name": "$$$ Quartz North", + "tile.ResidentalMedium_DensityQuartzSouth.name": "$$$ Quartz South", + "tile.ResidentalMedium_DensityQuartzWest.name": "$$$ Quartz West", + "tile.ResidentalMedium_DensityRedGreenEast.name": "$$$ Red Green East", + "tile.ResidentalMedium_DensityRedGreenNorth.name": "$$$ Red Green North", + "tile.ResidentalMedium_DensityRedGreenSouth.name": "$$$ Red Green South", + "tile.ResidentalMedium_DensityRedGreenWest.name": "$$$ Red Green West", + "tile.ResidentalMedium_DensityRoofEast.name": "$ Roof East", + "tile.ResidentalMedium_DensityRoofNorth.name": "$ Roof North", + "tile.ResidentalMedium_DensityRoofSouth.name": "$ Roof South", + "tile.ResidentalMedium_DensityRoofWest.name": "$ Roof West", + "tile.ResidentalMedium_DensityStone1EastWest.name": "$$$ Stone 1 East-West", + "tile.ResidentalMedium_DensityStone1NorthSouth.name": "$$$ Stone 1 North-South", + "tile.ResidentalMedium_DensityStone2EastWest.name": "$$$ Stone 2 East-West", + "tile.ResidentalMedium_DensityStone2NorthSouth.name": "$$$ Stone 2 North-South", + "tile.ResidentalMedium_DensityStoneCornerNorthEast.name": "$$$ Stone Corner North-East", + "tile.ResidentalMedium_DensityStoneCornerNorthWest.name": "$$$ Stone Corner North-West", + "tile.ResidentalMedium_DensityStoneCornerSouthEast.name": "$$$ Stone Corner South-East", + "tile.ResidentalMedium_DensityStoneCornerSouthWest.name": "$$$ Stone Corner South-West", + "tile.ResidentalMedium_DensityStoneEast.name": "$ Stone East", + "tile.ResidentalMedium_DensityStoneEndNorthEastWest.name": "Medium Density - Stone End North-East-West", + "tile.ResidentalMedium_DensityStoneEndNorthSouthEast.name": "$$$ Stone End North-South-East", + "tile.ResidentalMedium_DensityStoneEndNorthSouthWest.name": "$$$ Stone End North-South-West", + "tile.ResidentalMedium_DensityStoneEndSouthEastWest.name": "$$$ Stone End South-East-West", + "tile.ResidentalMedium_DensityStoneNorth.name": "$ Stone North", + "tile.ResidentalMedium_DensityStoneSouth.name": "$ Stone South", + "tile.ResidentalMedium_DensityStoneWest.name": "$ Stone West", + "tile.ResidentalMedium_DensityVerticalEast.name": "$ Vertical East", + "tile.ResidentalMedium_DensityVerticalNorth.name": "$ Vertical North", + "tile.ResidentalMedium_DensityVerticalSouth.name": "$ Vertical South", + "tile.ResidentalMedium_DensityVerticalWest.name": "$ Vertical West", + "tile.ResidentalMedium_DensityYellowRedEast.name": "$$ Yellow Red East", + "tile.ResidentalMedium_DensityYellowRedNorth.name": "$$ Yellow Red North", + "tile.ResidentalMedium_DensityYellowRedSouth.name": "$$ Yellow Red South", + "tile.ResidentalMedium_DensityYellowRedWest.name": "$$ Yellow Red West", + "tile.ShoppingHigh_DensityQuartzEastWest.name": "Quartz East-West", + "tile.ShoppingHigh_DensityQuartzNorthSouth.name": "Quartz North-South", + "tile.ShoppingLow_DensityBrickEast.name": "Brick East", + "tile.ShoppingLow_DensityBrickNorth.name": "Brick North", + "tile.ShoppingLow_DensityBrickSouth.name": "Brick South", + "tile.ShoppingLow_DensityBrickWest.name": "Brick West", + "tile.ShoppingLow_DensityGreenEast.name": "Green East", + "tile.ShoppingLow_DensityGreenNorth.name": "Green North", + "tile.ShoppingLow_DensityGreenSouth.name": "Green South", + "tile.ShoppingLow_DensityGreenWest.name": "Green West", + "tile.ShoppingLow_DensityOrangeEast.name": "Orange East", + "tile.ShoppingLow_DensityOrangeNorth.name": "Orange North", + "tile.ShoppingLow_DensityOrangeSouth.name": "Orange South", + "tile.ShoppingLow_DensityOrangeWest.name": "Orange West", + "tile.ShoppingLow_DensityPinkEast.name": "Pink East", + "tile.ShoppingLow_DensityPinkNorth.name": "Pink North", + "tile.ShoppingLow_DensityPinkSouth.name": "Pink South", + "tile.ShoppingLow_DensityPinkWest.name": "Pink West", + "tile.ShoppingMedium_DensityModernEast.name": "Modern East", + "tile.ShoppingMedium_DensityModernNorth.name": "Modern North", + "tile.ShoppingMedium_DensityModernSouth.name": "Modern South", + "tile.ShoppingMedium_DensityModernWest.name": "Modern West", + "tile.ShoppingMedium_DensityQuartzEast.name": "Quartz East", + "tile.ShoppingMedium_DensityQuartzNorth.name": "Quartz North", + "tile.ShoppingMedium_DensityQuartzSouth.name": "Quartz South", + "tile.ShoppingMedium_DensityQuartzWest.name": "Quartz West", + "tile.TransportAirportRunway_EastWestBuilding_North.name": "Runway East-West - Building North", + "tile.TransportAirportRunway_EastWestBuilding_South.name": "Runway East-West - Building South", + "tile.TransportAirportRunway_NorthSouthBuilding_East.name": "Runway North-South - Building East", + "tile.TransportAirportRunway_NorthSouthBuilding_West.name": "Runway North-South - Building West", + "tile.TransportAvenue1EastWest.name": "Avenue 1 East-West", + "tile.TransportAvenue1NorthSouth.name": "Avenue 1 North-South", + "tile.TransportAvenue2EastWest.name": "Avenue 2 East-West", + "tile.TransportAvenue2NorthSouth.name": "Avenue 2 North-South", + "tile.TransportAvenueEEast.name": "Avenue E East", + "tile.TransportAvenueENorth.name": "Avenue E North", + "tile.TransportAvenueESouth.name": "Avenue E South", + "tile.TransportAvenueEWest.name": "Avenue E West", + "tile.TransportAvenueLNorthEast.name": "Avenue L North-East", + "tile.TransportAvenueLNorthWest.name": "Avenue L North-West", + "tile.TransportAvenueLSouthEast.name": "Avenue L South-East", + "tile.TransportAvenueLSouthWest.name": "Avenue L South-West", + "tile.TransportAvenueTNorthEastWest.name": "Avenue T North-East-West", + "tile.TransportAvenueTNorthSouthEast.name": "Avenue T North-South-East", + "tile.TransportAvenueTNorthSouthWest.name": "Avenue T North-South-West", + "tile.TransportAvenueTSouthEastWest.name": "Avenue T South-East-West", + "tile.TransportAvenueXNorthSouthEastWest.name": "Avenue X", + "tile.TransportBridgeAvenue1EastWest.name": "Bridge Avenue 1 East-West", + "tile.TransportBridgeAvenue1NorthSouth.name": "Bridge Avenue 1 North-South", + "tile.TransportBridgeAvenue2NorthSouth.name": "Bridge Avenue 2 North-South", + "tile.TransportBridgeAvenue2SouthWest.name": "Bridge Avenue 2 East-West", + "tile.TransportBridgeAvenue3EastWest.name": "Bridge Avenue 3 East-West", + "tile.TransportBridgeAvenue3NorthSouth.name": "Bridge Avenue 3 North-South", + "tile.TransportBridgeAvenue4EastWest.name": "Bridge Avenue 4 East-West", + "tile.TransportBridgeAvenue4NorthSouth.name": "Bridge Avenue 4 North-South", + "tile.TransportBridgeAvenueLNorthEast.name": "Bridge Avenue L North-East", + "tile.TransportBridgeAvenueLNorthWest.name": "Bridge Avenue L North-West", + "tile.TransportBridgeAvenueLSouthEast.name": "Bridge Avenue L South-East", + "tile.TransportBridgeAvenueLSouthWest.name": "Bridge Avenue L South-West", + "tile.TransportBridgeHighway1EastWest.name": "Bridge Highway 1 East-West", + "tile.TransportBridgeHighway1NorthSouth.name": "Bridge Highway 1 North-South", + "tile.TransportBridgeHighway2EastWest.name": "Bridge Highway 2 East-West", + "tile.TransportBridgeHighway2NorthSouth.name": "Bridge Highway 2 North-South", + "tile.TransportBridgeHighway3EastWest.name": "Bridge Highway 3 East-West", + "tile.TransportBridgeHighway3NorthSouth.name": "Bridge Highway 3 North-South", + "tile.TransportBridgeHighway4EastWest.name": "Bridge Highway 4 East-West", + "tile.TransportBridgeHighway4NorthSouth.name": "Bridge Highway 4 North-South", + "tile.TransportBridgeHighwayLNorthEast.name": "Bridge Highway L North-East", + "tile.TransportBridgeHighwayLNorthWest.name": "Bridge Highway L North-West", + "tile.TransportBridgeHighwayLSouthEast.name": "Bridge Highway L South-East", + "tile.TransportBridgeHighwayLSouthWest.name": "Bridge Highway L South-West", + "tile.TransportBridgeRoad1EastWest.name": "Bridge Road 1 East-West", + "tile.TransportBridgeRoad1NorthSouth.name": "Bridge Road 1 North-South", + "tile.TransportBridgeRoad2EastWest.name": "Bridge Road 2 East-West", + "tile.TransportBridgeRoad2NorthSouth.name": "Bridge Road 2 North-South", + "tile.TransportBridgeRoadLNorthEast.name": "Bridge Road L North-East", + "tile.TransportBridgeRoadLNorthWest.name": "Bridge Road L North-West", + "tile.TransportBridgeRoadLSouthEast.name": "Bridge Road L South-East", + "tile.TransportBridgeRoadLSouthWest.name": "Bridge Road L South-West", + "tile.TransportBridgeStreet1EastWest.name": "Bridge Street 1 East-West", + "tile.TransportBridgeStreet1NorthSouth.name": "Bridge Street 1 North-South", + "tile.TransportBridgeStreet2EastWest.name": "Bridge Street 2 East-West", + "tile.TransportBridgeStreet2NorthSouth.name": "Bridge Street 2 North-South", + "tile.TransportBridgeStreetLNorthEast.name": "Bridge Street L North-East", + "tile.TransportBridgeStreetLNorthWest.name": "Bridge Street L North-West", + "tile.TransportBridgeStreetLSouthEast.name": "Bridge Street L South-East", + "tile.TransportBridgeStreetLSouthWest.name": "Bridge Street L South-West", + "tile.TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.name": "Connector Avenue <> Street -1- Avenue East [] Street North-West-side", + "tile.TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.name": "Connector Avenue <> Street -1- Avenue East [] Street South-West-side", + "tile.TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.name": "Connector Avenue <> Street -1- Avenue North [] Street South-East-side", + "tile.TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.name": "Connector Avenue <> Street -1- Avenue North [] Street South-West-side", + "tile.TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.name": "Connector Avenue <> Street -1- Avenue South [] Street North-East-side", + "tile.TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.name": "Connector Avenue <> Street -1- Avenue South [] Street North-West-side", + "tile.TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.name": "Connector Avenue <> Street -1- Avenue West [] Street North-East-side", + "tile.TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.name": "Connector Avenue <> Street -1- Avenue West [] Street South-East-side", + "tile.TransportConnectorAvenue_StreetLAvenue_EastStreet_North.name": "Connector Avenue <> Street -L- Avenue East [] Street North", + "tile.TransportConnectorAvenue_StreetLAvenue_EastStreet_South.name": "Connector Avenue <> Street -L- Avenue East [] Street South", + "tile.TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.name": "Connector Avenue <> Street -L- Avenue North [] Street East", + "tile.TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.name": "Connector Avenue <> Street -L- Avenue North [] Street West", + "tile.TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.name": "Connector Avenue <> Street -L- Avenue South [] Street East", + "tile.TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.name": "Connector Avenue <> Street -L- Avenue South [] Street West", + "tile.TransportConnectorAvenue_StreetLAvenue_WestStreet_North.name": "Connector Avenue <> Street -L- Avenue West [] Street North", + "tile.TransportConnectorAvenue_StreetLAvenue_WestStreet_South.name": "Connector Avenue <> Street -L- Avenue West [] Street South", + "tile.TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.name": "Connector Avenue <> Street -T- Avenue East [] Street North-South", + "tile.TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.name": "Connector Avenue <> Street -T- Avenue East-West [] Street North", + "tile.TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.name": "Connector Avenue <> Street -T- Avenue East-West [] Street South", + "tile.TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.name": "Connector Avenue <> Street -T- Avenue North-South [] Street East", + "tile.TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.name": "Connector Avenue <> Street -T- Avenue North-South [] Street West", + "tile.TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.name": "Connector Avenue <> Street -T- Avenue North [] Street East-West", + "tile.TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.name": "Connector Avenue <> Street -T- Avenue South [] Street East-West", + "tile.TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.name": "Connector Avenue <> Street -T- Avenue West [] Street North-South", + "tile.TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.name": "Connector Avenue <> Street -X- Avenue East-West [] Street North-South", + "tile.TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.name": "Connector Avenue <> Street -X- Avenue North-South [] Street East-West", + "tile.TransportConnectorBridge_AvenueBridge_EastAvenue_West.name": "Connector Avenue <> Bridge - Avenue Bridge East [] Avenue West", + "tile.TransportConnectorBridge_AvenueBridge_NorthAvenue_South.name": "Connector Avenue <> Bridge - Avenue Bridge North [] Avenue South", + "tile.TransportConnectorBridge_AvenueBridge_SouthAvenue_North.name": "Connector Avenue <> Bridge - Avenue Bridge South [] Avenue North", + "tile.TransportConnectorBridge_AvenueBridge_WestAvenue_East.name": "Connector Avenue <> Bridge - Avenue Bridge West [] Avenue East", + "tile.TransportConnectorBridge_RoadBridge_EastRoad_West.name": "Connector Road <> Bridge - Road Bridge East [] Road West", + "tile.TransportConnectorBridge_RoadBridge_NorthRoad_South.name": "Connector Road <> Bridge - Road Bridge North [] Road South", + "tile.TransportConnectorBridge_RoadBridge_SouthRoad_North.name": "Connector Road <> Bridge - Road Brdige South [] Road North", + "tile.TransportConnectorBridge_RoadBridge_WestRoad_East.name": "Connector Road <> Bridge - Road Bridge West [] Road East", + "tile.TransportConnectorBridge_StreetBridge_EastStreet_West.name": "Connector Street <> Bridge - Street Bridge East [] Street West", + "tile.TransportConnectorBridge_StreetBridge_NorthStreet_South.name": "Connector Street <> Bridge - Street Bridge North [] Street South", + "tile.TransportConnectorBridge_StreetBridge_SouthStreet_North.name": "Connector Street <> Bridge - Street Bridge South [] Street North", + "tile.TransportConnectorBridge_StreetBridge_WestStreet_East.name": "Connector Street <> Bridge - Street Bridge West [] Street East", + "tile.TransportConnectorHighway_AvenueHighway_EastAvenue_West.name": "Connector Highway <> Avenue - Highway East [] Avenue West", + "tile.TransportConnectorHighway_AvenueHighway_NorthAvenue_South.name": "Connector Highway <> Avenue - Highway North [] Avenue South", + "tile.TransportConnectorHighway_AvenueHighway_SouthAvenue_North.name": "Connector Highway <> Avenue - Highway South [] Avenue North", + "tile.TransportConnectorHighway_AvenueHighway_WestAvenue_East.name": "Connector Highway <> Avenue - Highway West [] Avenue East", + "tile.TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.name": "Connector Highway Floor <> Avenue - Highway Floor East [] Avenue West", + "tile.TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.name": "Connector Highway Floor <> Avenue - Highway Floor North [] Avenue South", + "tile.TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.name": "Connector Highway Floor <> Avenue - Highway Floor South [] Avenue North", + "tile.TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.name": "Connector Highway Floor <> Avenue - Highway Floor West [] Avenue East", + "tile.TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.name": "Connector Highway <> Highway Floor - Highway East [] Highway Floor West", + "tile.TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.name": "Connector Highway <> Highway Floor - Highway North [] Highway Floor South", + "tile.TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.name": "Connector Highway <> Highway Floor - Highway South [] Highway Floor North", + "tile.TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.name": "Connector Highway <> Highway Floor - Highway West [] Highway Floor East", + "tile.TransportHarbourBigEast.name": "Big East", + "tile.TransportHarbourBigNorth.name": "Big North", + "tile.TransportHarbourBigSouth.name": "Big South", + "tile.TransportHarbourBigWest.name": "Big West", + "tile.TransportHarbourSide1CornerNorthEast.name": "Side 1-Corner North-East", + "tile.TransportHarbourSide1CornerNorthWest.name": "Side 1-Corner North-West", + "tile.TransportHarbourSide1CornerSouthEast.name": "Side 1-Corner South-East", + "tile.TransportHarbourSide1CornerSouthWest.name": "Side 1-Corner South-West", + "tile.TransportHarbourSide2CornerCraneEast.name": "Side 2-Corner Crane East", + "tile.TransportHarbourSide2CornerCraneNorth.name": "Side 2-Corner Crane North", + "tile.TransportHarbourSide2CornerCraneSouth.name": "Side 2-Corner Crane South", + "tile.TransportHarbourSide2CornerCraneWest.name": "Side 2-Corner Crane West", + "tile.TransportHarbourSide2CornerEast.name": "Side 2-Corner East", + "tile.TransportHarbourSide2CornerNorth.name": "Side 2-Corner North", + "tile.TransportHarbourSide2CornerSouth.name": "Side 2-Corner South", + "tile.TransportHarbourSide2CornerWest.name": "Side 2-Corner West", + "tile.TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.name": "Side 3-Corner NorthEast-NorthWest-SouthEast", + "tile.TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.name": "Side 3-Corner NorthEast-NorthWest-SouthWest", + "tile.TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.name": "Side 3-Corner NorthEast-SouthEast-SouthWest", + "tile.TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.name": "Side 3-Corner NorthWest-SouthEast-SouthWest", + "tile.TransportHarbourSmallEast.name": "Small East", + "tile.TransportHarbourSmallNorth.name": "Small North", + "tile.TransportHarbourSmallSouth.name": "Small South", + "tile.TransportHarbourSmallWest.name": "Small West", + "tile.TransportHighway05EastWestNorthside.name": "Highway 0,5 East-West-North-side", + "tile.TransportHighway05EastWestSouthside.name": "Highway 0,5 East-West-South-side", + "tile.TransportHighway05NorthSouthEastside.name": "Highway 0,5 North-South-East-side", + "tile.TransportHighway05NorthSouthWestside.name": "Highway 0,5 North-South-West-side", + "tile.TransportHighway1EastWest.name": "Highway 1 East-West", + "tile.TransportHighway1NorthSouth.name": "Highway 1 North-South", + "tile.TransportHighway2EastWest.name": "Highway 2 East-West", + "tile.TransportHighway2NorthSouth.name": "Highway 2 North-South", + "tile.TransportHighwayDrivewayEastWestEastside.name": "Highway Driveway East-West-East-side", + "tile.TransportHighwayDrivewayEastWestWestside.name": "Highway Driveway East-West-West-side", + "tile.TransportHighwayDrivewayExitEastWestEastside.name": "Highway Driveway & Exit East-West-East-side", + "tile.TransportHighwayDrivewayExitEastWestWestside.name": "Highway Driveway & Exit East-West-West-side", + "tile.TransportHighwayDrivewayExitNorthSouthNorthside.name": "Highway Driveway & Exit North-South-North-side", + "tile.TransportHighwayDrivewayExitNorthSouthSouthside.name": "Highway Driveway & Exit North-South-South-side", + "tile.TransportHighwayDrivewayNorthSouthNorthside.name": "Highway Driveway North-South-North-side", + "tile.TransportHighwayDrivewayNorthSouthSouthside.name": "Highway Driveway North-South-South-side", + "tile.TransportHighwayExitEastWestEastside.name": "Highway Exit East-West-East-side", + "tile.TransportHighwayExitEastWestWestside.name": "Highway Exit East-West-West-side", + "tile.TransportHighwayExitNorthSouthNorthside.name": "Highway Exit North-South-North-side", + "tile.TransportHighwayExitNorthSouthSouthside.name": "Highway Exit North-South-South-side", + "tile.TransportHighwayFloor05EastWestNorthside.name": "Highway Floor 0,5 East-West-North-side", + "tile.TransportHighwayFloor05EastWestSouthside.name": "Highway Floor 0,5 East-West-South-side", + "tile.TransportHighwayFloor05NorthSouthEastside.name": "Highway Floor 0,5 North-South-East-side", + "tile.TransportHighwayFloor05NorthSouthWestside.name": "Highway Floor 0,5 North-South-West-side", + "tile.TransportHighwayFloor1EastWest.name": "Highway Floor 1 East-West", + "tile.TransportHighwayFloor1NorthSouth.name": "Highway Floor 1 North-South", + "tile.TransportHighwayFloor2EastWest.name": "Highway Floor 2 East-West", + "tile.TransportHighwayFloor2NorthSouth.name": "Highway Floor 2 North-South", + "tile.TransportHighwayFloorDrivewayEastWestEastside.name": "Highway Floor Driveway East-West-East-side", + "tile.TransportHighwayFloorDrivewayEastWestWestside.name": "Highway Floor Driveway East-West-West-side", + "tile.TransportHighwayFloorDrivewayExitEastWestEastside.name": "Highway Floor Driveway & Exit East-West-East-side", + "tile.TransportHighwayFloorDrivewayExitEastWestWestside.name": "Highway Floor Driveway & Exit East-West-West-side", + "tile.TransportHighwayFloorDrivewayExitNorthSouthNorthside.name": "Highway Floor Driveway & Exit North-South-North-side", + "tile.TransportHighwayFloorDrivewayExitNorthSouthSouthside.name": "Highway Floor Driveway & Exit North-South-South-side", + "tile.TransportHighwayFloorDrivewayNorthSouthNorthside.name": "Highway Floor Driveway North-South-North-side", + "tile.TransportHighwayFloorDrivewayNorthSouthSouthside.name": "Highway Floor Driveway North-South-South-side", + "tile.TransportHighwayFloorExitEastWestEast.name": "Highway Floor Exit East-West-East-side", + "tile.TransportHighwayFloorExitEastWestWestside.name": "Highway Floor Exit East-West-West-side", + "tile.TransportHighwayFloorExitNorthSouthNorthside.name": "Highway Floor Exit North-South-North-side", + "tile.TransportHighwayFloorExitNorthSouthSouthside.name": "Highway Floor Exit North-South-South-side", + "tile.TransportHighwayFloorLNorthEast.name": "Highway Floor L North-East", + "tile.TransportHighwayFloorLNorthWest.name": "Highway Floor L North-West", + "tile.TransportHighwayFloorLSouthEast.name": "Highway Floor L South-East", + "tile.TransportHighwayFloorLSouthWest.nameHighway Floor ": "L South-West", + "tile.TransportHighwayFloorTNorthEastWest.name": "Highway Floor T North-East-West", + "tile.TransportHighwayFloorTNorthSouthEast.name": "Highway Floor T North-South-East", + "tile.TransportHighwayFloorTNorthSouthWest.name": "Highway Floor T North-South-West", + "tile.TransportHighwayFloorTSouthEastWest.name": "Highway Floor T South-East-West", + "tile.TransportHighwayFloorXNorthEastSouthWest.name": "Highway Floor X", + "tile.TransportHighwayLNorthEast.name": "Highway L North-East", + "tile.TransportHighwayLNorthWest.name": "Highway L North-West", + "tile.TransportHighwayLSouthEast.name": "Highway L South-East", + "tile.TransportHighwayLSouthWest.name": "Highway L South-West", + "tile.TransportHighwayTNorthEastWest.name": "Highway T North-East-West", + "tile.TransportHighwayTNorthSouthEast.name": "Highway T North-South-East", + "tile.TransportHighwayTNorthSouthWest.name": "Highway T North-South-West", + "tile.TransportHighwayTSouthEastWest.name": "Highway T South-East-West", + "tile.TransportHighwayXNorthEastSouthWest.name": "Highway X", + "tile.TransportPublicConnectorHightram_TramHightram_EastTram_West.name": "Connector Hightram <> Tram - Hightram East [] Tram West", + "tile.TransportPublicConnectorHightram_TramHightram_NorthTram_South.name": "Connector Hightram <> Tram - Hightram North [] Tram South", + "tile.TransportPublicConnectorHightram_TramHightram_SouthTram_North.name": "Connector Hightram <> Tram - Hightram South [] Tram North", + "tile.TransportPublicConnectorHightram_TramHightram_WestTram_East.name": "Connector Hightram <> Tram - Hightram West [] Tram East", + "tile.TransportPublicHightram1EastWest.name": "Hightram 1 East-West", + "tile.TransportPublicHightram1NorthSouth.name": "Hightram 1 North-South", + "tile.TransportPublicHightramEEast.name": "Hightram E East", + "tile.TransportPublicHightramENorth.name": "Hightram E North", + "tile.TransportPublicHightramESouth.name": "Hightram E South", + "tile.TransportPublicHightramEWest.name": "Hightram E West", + "tile.TransportPublicHightramLNorthEast.name": "Hightram L North-East", + "tile.TransportPublicHightramLNorthWest.name": "Hightram L North-West", + "tile.TransportPublicHightramLSouthEast.name": "Hightram L South-East", + "tile.TransportPublicHightramLSouthWest.name": "Hightram L South-West", + "tile.TransportPublicHightramStationEastWest.name": "Hightram Station East-West", + "tile.TransportPublicHightramStationNorthSouth.name": "Hightram Station North-South", + "tile.TransportPublicHightramXNorthEastSouthWest.name": "Hightram X", + "tile.TransportPublicTram1EastWest.name": "Tram 1 East-West", + "tile.TransportPublicTram1NorthSouth.name": "Tram 1 North-South", + "tile.TransportPublicTramEEast.name": "Tram E East", + "tile.TransportPublicTramENorth.name": "Tram E North", + "tile.TransportPublicTramESouth.name": "Tram E South", + "tile.TransportPublicTramEWest.name": "Tram E West", + "tile.TransportPublicTramLNorthEast.name": "Tram L North-East", + "tile.TransportPublicTramLNorthWest.name": "Tram L North-West", + "tile.TransportPublicTramLSouthEast.name": "Tram L South-East", + "tile.TransportPublicTramLSouthWest.name": "Tram L South-West", + "tile.TransportPublicTram_on_road1EastWest.name": "Track 1 East-West", + "tile.TransportPublicTram_on_road1NorthSouth.name": "Track 1 North-South", + "tile.TransportPublicTram_on_roadEEast.name": "Track E East", + "tile.TransportPublicTram_on_roadENorth.name": "Track E North", + "tile.TransportPublicTram_on_roadESouth.name": "Track E South", + "tile.TransportPublicTram_on_roadEWest.name": "Track E West", + "tile.TransportPublicTram_on_roadLNorthEast.name": "Track L North-East", + "tile.TransportPublicTram_on_roadLNorthWest.name": "Track L North-West", + "tile.TransportPublicTram_on_roadLSouthEast.name": "Track L South-East", + "tile.TransportPublicTram_on_roadLSouthWest.name": "Track L South-West", + "tile.TransportPublicTramStationEastWest.name": "Tram Station East-West", + "tile.TransportPublicTramStationNorthSouth.name": "Tram Station North-South", + "tile.TransportPublicTramXNorthEastSouthWest.name": "Tram X", + "tile.TransportRoad1EastWest.name": "Road 1 East-West", + "tile.TransportRoad1NorthSouth.name": "Road 1 North-South", + "tile.TransportRoadEEast.name": "Road E East", + "tile.TransportRoadENorth.name": "Road E North", + "tile.TransportRoadESouth.name": "Road E South", + "tile.TransportRoadEWest.name": "Road E West", + "tile.TransportRoadLNorthEast.name": "Road L North-East", + "tile.TransportRoadLNorthWest.name": "Road L North-West", + "tile.TransportRoadLSouthEast.name": "Road L South-East", + "tile.TransportRoadLSouthWest.name": "Road L South-West", + "tile.TransportRoadTNorthEastWest.name": "Road T North-East-West", + "tile.TransportRoadTNorthSouthEast.name": "Road T North-South-East", + "tile.TransportRoadTNorthSouthWest.name": "Road T North-South-West", + "tile.TransportRoadTSouthEastWest.name": "Road T South-East-West", + "tile.TransportRoadXNorthEastSouthWest.name": "Road X", + "tile.TransportStreet1EastWest.name": "Street 1 East-West", + "tile.TransportStreet1NorthSouth.name": "Street 1 North-South", + "tile.TransportStreetEEast.name": "Street E East", + "tile.TransportStreetENorth.name": "Street E North", + "tile.TransportStreetESouth.name": "Street E South", + "tile.TransportStreetEWest.name": "Street E West", + "tile.TransportStreetLNorthEast.name": "Street L North-East", + "tile.TransportStreetLNorthWest.name": "Street L North-West", + "tile.TransportStreetLSouthEast.name": "Street L South-East", + "tile.TransportStreetLSouthWest.name": "Street L South-West", + "tile.TransportStreetRoundaboutNorthEastSouthWest.name": "Street Roundabout", + "tile.TransportStreetTNorthEastWest.name": "Street T North-East-West", + "tile.TransportStreetTNorthSouthEast.name": "Street T North-South-East", + "tile.TransportStreetTNorthSouthWest.name": "Street T North-South-West", + "tile.TransportStreetTSouthEastWest.name": "Street T South-East-West", + "tile.TransportStreetXNorthEastSouthWest.name": "Street X", + "tile.TransportWater1CornerNorthEast.name": "1-Corner North-East", + "tile.TransportWater1CornerNorthWest.name": "1-Corner North-West", + "tile.TransportWater1CornerSouthEast.name": "1-Corner South-East", + "tile.TransportWater1CornerSouthWest.name": "1-Corner South-West", + "tile.TransportWater2CornerEast.name": "2-Corner East", + "tile.TransportWater2CornerNorth.name": "2-Corner North", + "tile.TransportWater2CornerSouth.name": "2-Corner South", + "tile.TransportWater2CornerWest.name": "2-Corner West", + "tile.TransportWater3CornerNorthEast_NorthWest_SouthEast.name": "3-Corner NorthEast-NorthWest-SouthEast", + "tile.TransportWater3CornerNorthEast_NorthWest_SouthWest.name": "3-Corner NorthEast-NorthWest-SouthWest", + "tile.TransportWater3CornerSouthEast_SouthWest_NorthEast.name": "3-Corner SouthEast-SouthWest-NorthEast", + "tile.TransportWater3CornerSouthEast_SouthWest_NorthWest.name": "3-Corner SouthEast-SouthWest-NorthWest", + "tile.TransportWater4CornerNorthSouthEastWest.name": "4-Corner", + "tile.UtilityPower_NuclearEast.name": "Power Nuclear East", + "tile.UtilityPower_NuclearNorth.name": "Power Nuclear North", + "tile.UtilityPower_NuclearSouth.name": "Power Nuclear South", + "tile.UtilityPower_NuclearWest.name": "Power Nuclear West", + "tile.UtilityPower_OilCoalEast.name": "Power Oil Coal East", + "tile.UtilityPower_OilCoalNorth.name": "Power Oil Coal North", + "tile.UtilityPower_OilCoalWest.name": "Power Oil Coal West", + "tile.UtilityPower_OilCoalSouth.name": "Power Oil Coal South", + "tile.UtilityPower_SunNorthEastSouthWest.name": "Power Solar", + "tile.UtilityPower_WindEast.name": "Power Wind East", + "tile.UtilityPower_WindNorth.name": "Power Wind North", + "tile.UtilityPower_WindSouth.name": "Power Wind South", + "tile.UtilityPower_WindWest.name": "Power Wind West", + "tile.UtilityPumpjackEastWest.name": "Pumpjack East-West", + "tile.UtilityPumpjackNorthSouth.name": "Pumpjack North-South", + "tile.UtilityScrap_BurningEast.name": "Scrap Burning East", + "tile.UtilityScrap_BurningNorth.name": "Scrap Burning North", + "tile.UtilityScrap_BurningSouth.name": "Scrap Burning South", + "tile.UtilityScrap_BurningWest.name": "Scrap Burning West", + "tile.UtilityScrap_HeapEast.name": "Scrap Heap East", + "tile.UtilityScrap_HeapNorth.name": "Scrap Heap North", + "tile.UtilityScrap_HeapSouth.name": "Scrap Heap South", + "tile.UtilityScrap_HeapWest.name": "Scrap Heap West", + "tile.UtilityScrap_RecycleEast.name": "Scrap Recyclye East", + "tile.UtilityScrap_RecycleNorth.name": "Scrap Recycle North", + "tile.UtilityScrap_RecycleSouth.name": "Scrap Recycle South", + "tile.UtilityScrap_RecycleWest.name": "Scrap Recycle West", + "tile.UtilityWater_PumpEast.name": "Water Pump East", + "tile.UtilityWater_PumpNorth.name": "Water Pump North", + "tile.UtilityWater_PumpSouth.name": "Water Pump South", + "tile.UtilityWater_PumpWest.name": "Water Pump West", + "tile.UtilityWater_TowerNorthEastSouthWest.name": "Water Tower", + "tile.UtilityWater_TreatmentEast.name": "Water Treatment East", + "tile.UtilityWater_TreatmentNorth.name": "Water Treatment North", + "tile.UtilityWater_TreatmentSouth.name": "Water Treatment South", + "tile.UtilityWater_TreatmentWest.name": "Water Treatment West", + "tile.OtherBrickHouse.name": "Big Brick/Quartz Building", + "tile.OtherGrandHouse.name": "Sandstone Building", + "tile.OtherLighthouse.name": "Lighthouse", + "tile.OtherStable.name": "Stables", + "tile.OtherSurvivorHouse2.name": "Survivalists' Shack #01", + "tile.OtherSurvivorHouse3.name": "Survivalists' Shack #02", + "tile.OtherSurvivorHouse4.name": "Survivalists' Shack #03", + "tile.OtherSurvivorHouse5.name": "Survivalists' Shack #04", + "tile.OtherSurvivorHouse6.name": "Big Wooden House #02", + "tile.OtherSurvivorHouse7.name": "Big Wooden House #03", + "tile.OtherSurvivorHouse8.name": "Survivalists' Shack #05", + "tile.OtherSurvivorHouse.name": "Survivalists' Shack #06", + "tile.OtherTemple.name": "Temple", + "tile.SurvivalSmallBuilding.name": "Small Sandstone Building", + "tile.SurvivalWoodenHouse.name": "Wooden Building", + "tile.WoodenHouse.name": "Big Wooden House", + "tile.BlockCheckerboard.name": "Checkerboard Generator", + "tile.BlockAtlantis.name": "Atlantis Generator", + "tile.BlockBigWorld.name": "World Magnifier", + "tile.BlockCosyHouse.name": "Snow Covered House", + "tile.BlockStoreHouse.name": "Magic Storehouse Block", + "tile.Remover16.name": "Remove a 16x16 Structure", + "tile.Remover16256.name": "16x16 and 256 high", + "tile.Remover1632.name": "16x16 and 32 high", + "tile.Remover168.name": "16x16 and 8 high", + "tile.Remover32.name": "Remove a 32x32 Structure", + "tile.Remover3216.name": "32x32 and 16 high", + "tile.Remover32256.name": "32x32 and 256 high", + "tile.Remover328.name": "32x32 and 8 high", + "tile.Remover64.name": "Remove a 64x64 Structure", + "tile.Remover64256.name": "64x64 and 256 high", + "tile.Remover8.name": "Remove a 1 high Structure", + "tile.Remover816.name": "8x8 and 16 high", + "tile.Remover8256.name": "8x8 and 256 high", + "tile.Remover832.name": "8x8 and 32 high", + "tile.RemoverLast.name": "Remove last placed structure", + "itemGroup.Structures": "Survival Structures", + "itemGroup.Decoration": "Decoration", + "itemGroup.Food": "Food", + "itemGroup.IndustryHigh_Density": "Industry - High Density", + "itemGroup.IndustryMedium_Density": "Industry - Medium Density", + "itemGroup.IndustryLow_Density": "Industry - Low Density", + "itemGroup.Office": "Office", + "itemGroup.Public": "Public", + "itemGroup.ResidentalEnormous_Density": "Residental - Enormous Density", + "itemGroup.ResidentalHigh_Density": "Residental - High Density", + "itemGroup.ResidentalMedium_Density": "Residental - Medium Density", + "itemGroup.ResidentalLow_Density": "Residental - Low Density", + "itemGroup.Shopping": "Shopping - High Density", + "itemGroup.TransportAirport": "Transport - Airport", + "itemGroup.TransportHarbour": "Transport - Harbour", + "itemGroup.TransportPublic": "Transport - Public", + "itemGroup.TransportRoads": "Transport - Roads", + "itemGroup.TransportWater": "Transport - Water", + "itemGroup.Utility": "Utility", + "itemGroup.Remover": "Structure Removers", + "itemGroup.Other": "Other Structures", + "itemGroup.WorldGeneration": "World Generation (WATCH OUT)", + "itemGroup.LiveStructures": "Live Structures", + "tile.RandomAirballoon2.name": "Airship #02", + "tile.RandomEntrance.name": "Building Complex", + "tile.RandomFlyingShip.name": "Airship", + "tile.RandomGreenTent.name": "Miner Tent #03", + "tile.RandomGreyTent.name": "Miner Tent #02", + "tile.RandomLightHouse.name": "Lighthouse", + "tile.RandomMinerTent.name": "Miner Tent", + "tile.RandomNetherEntranceSurvival.name": "Nether Entrance Building", + "tile.RandomRandomBrickHouse.name": "Brick House", + "tile.RandomSurvivalHouse1.name": "Survivalists' Shack #08", + "tile.RandomSurvivalHouseSandstone.name": "Survivalists' Shack #07", + "tile.RandomTentCamp.name": "Tent Camp", + "tile.RandomWoodenHouse.name": "Wooden House", + "tile.BlockCloud.name": "Cloud Generator", + "tile.RandomBuildingComplex.name": "Sandstone House Complex", + "tile.RandomImmense_Buildingcomplex.name": "Immense Shopping Arcade", + "tile.RandomImmense_White_House.name": "Immense Quartz Building", + "tile.RandomImmense_WorkingBuilding.name": "Brick Office", + "tile.RandomLittlePalace.name": "Small Palace", + "tile.RandomSandStoneChurch.name": "Sandstone Church", + "tile.RandomSandstonewithFarm.name": "Sandstone Villa", + "tile.RandomSimpleSandstone.name": "Sandstone House", + "tile.RandomSpawnHouseProd.name": "Sandstone Chapel", + "tile.RandomWoodenStonebrickHouse.name": "Brick 'n Planks Building", + "tile.RandomImmense_greenroof.name": "Immense Palace", + "tile.RandomLittleWoodenCabin.name": "Wooden Cabin", + "tile.RandomSandstoneBuilding.name": "Sandstone Palace", + "tile.Live_Power_Windmill_East.name": "Windmill", + "tile.LiveAirBalloon.name": "Airballoon", + "tile.LiveAirplane.name": "Airplane", + "tile.LiveBoat.name": "Boat", + "tile.LiveFlyingShip2.name": "Airship #02", + "tile.LiveFlyingShip.name": "Airship #01", + "tile.LivePlane.name": "F16", + "tile.Live_Helicopter.name": "Helicopter", + "tile.Live_Fair_FreeFall.name": "Fair - Freefall", + "tile.Live_Mill.name": "Mill", + "tile.Live_Cinema.name": "Cinema", + "tile.Live_Flying_Helicopter.name": "Flying Helicopter", + "tile.BlockTouchable.name": "Game Over Block", + "tile.BlockChallengeOne.name": "Challenge One", + "tile.BlockChallengeTwo.name": "Challenge Two", + "tile.BlockChallengeThree.name": "Challenge Three", + "tile.BlockChallengeFour.name": "Challenge Four", + "tile.BlockChallengeFive.name": "Challenge Five", + "tile.BlockChallengeSix.name": "Challenge Six", + "tile.BlockChallengeSeven.name": "Challenge Seven", + "tile.BlockChallengeEight.name": "Challenge Eight", + "tile.BlockChallengeNine.name": "Challenge Nine", + "tile.BlockChallengeTen.name": "Challenge Ten", + "tile.BlockBlackRock.name": "BlackRock", + "tile.Live_Bus.name": "Bus", + "tile.Live_Bus2.name": "Double Decker Bus", + "tile.BlockFerrisWheel.name": "Ferris Wheel", + "tile.ChristmasHouse.name": "Christmas House", + "tile.ChristmasHouse2.name": "Christmas House #2", + "tile.ChristmasHouse3.name": "Christmas House #3", + "tile.ChristmasSleigh.name": "Santa's Sleigh", + "tile.ChristmasSleigh2.name": "Santa's Sleigh #2", + "tile.ChristmasSnowman.name": "Giant Snowman", + "tile.ChristmasTree.name": "Giant Christmas Tree", + "tile.ChristmasMarket.name": "Christmas Marketplace", + "tile.Live_WaterMill.name": "Watermill", + "tile.BlockUnlimited.name": "Add a new structure!", + "itemGroup.User": "Your Own Structures!" +} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/BlockAirBalloon.json b/src/main/resources/assets/imsm/models/block/BlockAirBalloon.json deleted file mode 100644 index 0789044d..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockAirBalloon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockAirBalloon" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockAirplane.json b/src/main/resources/assets/imsm/models/block/BlockAirplane.json deleted file mode 100644 index 8cc2e7bc..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockAirplane.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockAirplane" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockApplepie.json b/src/main/resources/assets/imsm/models/block/BlockApplepie.json deleted file mode 100644 index 78244cd2..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockApplepie.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockApplepie" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockArena1.json b/src/main/resources/assets/imsm/models/block/BlockArena1.json deleted file mode 100644 index da637502..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockArena1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockArena1" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockArena2.json b/src/main/resources/assets/imsm/models/block/BlockArena2.json deleted file mode 100644 index 78fc4149..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockArena2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockArena2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockAtlantis.json b/src/main/resources/assets/imsm/models/block/BlockAtlantis.json deleted file mode 100644 index e2e80154..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockAtlantis.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/wg" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockBigPyramid.json b/src/main/resources/assets/imsm/models/block/BlockBigPyramid.json deleted file mode 100644 index 46b5b120..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockBigPyramid.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockBigPyramid" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockBigWorld.json b/src/main/resources/assets/imsm/models/block/BlockBigWorld.json deleted file mode 100644 index e2e80154..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockBigWorld.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/wg" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockBlackRock.json b/src/main/resources/assets/imsm/models/block/BlockBlackRock.json deleted file mode 100644 index a2c120c5..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockBlackRock.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockBlackRock" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockBoat.json b/src/main/resources/assets/imsm/models/block/BlockBoat.json deleted file mode 100644 index 41be8c9a..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockBoat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/boat" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockBunker.json b/src/main/resources/assets/imsm/models/block/BlockBunker.json deleted file mode 100644 index f0506acf..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockBunker.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockBunker" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockCactus2.json b/src/main/resources/assets/imsm/models/block/BlockCactus2.json deleted file mode 100644 index ea8189b7..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockCactus2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockCactus2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockCake2.json b/src/main/resources/assets/imsm/models/block/BlockCake2.json deleted file mode 100644 index 0fbed79f..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockCake2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockCake2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockCastleTower.json b/src/main/resources/assets/imsm/models/block/BlockCastleTower.json deleted file mode 100644 index cee7324a..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockCastleTower.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockCastleTower" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockCave.json b/src/main/resources/assets/imsm/models/block/BlockCave.json deleted file mode 100644 index 33a51615..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockCave.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockCave" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockChallengeEight.json b/src/main/resources/assets/imsm/models/block/BlockChallengeEight.json deleted file mode 100644 index 55caab66..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockChallengeEight.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/challenge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockChallengeFive.json b/src/main/resources/assets/imsm/models/block/BlockChallengeFive.json deleted file mode 100644 index 55caab66..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockChallengeFive.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/challenge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockChallengeFour.json b/src/main/resources/assets/imsm/models/block/BlockChallengeFour.json deleted file mode 100644 index 55caab66..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockChallengeFour.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/challenge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockChallengeNine.json b/src/main/resources/assets/imsm/models/block/BlockChallengeNine.json deleted file mode 100644 index 55caab66..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockChallengeNine.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/challenge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockChallengeOne.json b/src/main/resources/assets/imsm/models/block/BlockChallengeOne.json deleted file mode 100644 index 55caab66..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockChallengeOne.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/challenge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockChallengeSeven.json b/src/main/resources/assets/imsm/models/block/BlockChallengeSeven.json deleted file mode 100644 index 55caab66..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockChallengeSeven.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/challenge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockChallengeSix.json b/src/main/resources/assets/imsm/models/block/BlockChallengeSix.json deleted file mode 100644 index 7d019e5e..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockChallengeSix.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/challenge " - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockChallengeTen.json b/src/main/resources/assets/imsm/models/block/BlockChallengeTen.json deleted file mode 100644 index 55caab66..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockChallengeTen.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/challenge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockChallengeThree.json b/src/main/resources/assets/imsm/models/block/BlockChallengeThree.json deleted file mode 100644 index 55caab66..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockChallengeThree.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/challenge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockChallengeTwo.json b/src/main/resources/assets/imsm/models/block/BlockChallengeTwo.json deleted file mode 100644 index 55caab66..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockChallengeTwo.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/challenge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockCheckerboard.json b/src/main/resources/assets/imsm/models/block/BlockCheckerboard.json deleted file mode 100644 index 1c6518e8..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockCheckerboard.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockCheckerboard" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockCloud.json b/src/main/resources/assets/imsm/models/block/BlockCloud.json deleted file mode 100644 index e2e80154..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockCloud.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/wg" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockColumn.json b/src/main/resources/assets/imsm/models/block/BlockColumn.json deleted file mode 100644 index 26dd7aba..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockColumn.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockColumn" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockCosyHouse.json b/src/main/resources/assets/imsm/models/block/BlockCosyHouse.json deleted file mode 100644 index 1b620bc5..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockCosyHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockCosyHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockDungeon.json b/src/main/resources/assets/imsm/models/block/BlockDungeon.json deleted file mode 100644 index b8fe8d21..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockDungeon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockDungeon" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockEnchantmentRoom.json b/src/main/resources/assets/imsm/models/block/BlockEnchantmentRoom.json deleted file mode 100644 index 97d4ca95..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockEnchantmentRoom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockEnchantmentRoom" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockFarm.json b/src/main/resources/assets/imsm/models/block/BlockFarm.json deleted file mode 100644 index 83724296..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockFarm.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockFarm" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockFarm2.json b/src/main/resources/assets/imsm/models/block/BlockFarm2.json deleted file mode 100644 index a13530d8..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockFarm2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockFarm2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockFarm3.json b/src/main/resources/assets/imsm/models/block/BlockFarm3.json deleted file mode 100644 index 69b75812..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockFarm3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockFarm3" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockFarm4.json b/src/main/resources/assets/imsm/models/block/BlockFarm4.json deleted file mode 100644 index d1451894..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockFarm4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockFarm4" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockFerrisWheel.json b/src/main/resources/assets/imsm/models/block/BlockFerrisWheel.json deleted file mode 100644 index d590513b..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockFerrisWheel.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/fair" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockFloatingSphere.json b/src/main/resources/assets/imsm/models/block/BlockFloatingSphere.json deleted file mode 100644 index 234cad39..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockFloatingSphere.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockFloatingSphere" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockGiantTree.json b/src/main/resources/assets/imsm/models/block/BlockGiantTree.json deleted file mode 100644 index 0ee87bd9..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockGiantTree.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockGiantTree" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockGlassHouse.json b/src/main/resources/assets/imsm/models/block/BlockGlassHouse.json deleted file mode 100644 index d1ec5a30..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockGlassHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockGlassHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockHountedHouse.json b/src/main/resources/assets/imsm/models/block/BlockHountedHouse.json deleted file mode 100644 index 20fe5866..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockHountedHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockHountedHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockHouse.json b/src/main/resources/assets/imsm/models/block/BlockHouse.json deleted file mode 100644 index 31d5506b..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockHouse2.json b/src/main/resources/assets/imsm/models/block/BlockHouse2.json deleted file mode 100644 index a71f9769..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockHouse2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockHouse2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockHouseTrap1.json b/src/main/resources/assets/imsm/models/block/BlockHouseTrap1.json deleted file mode 100644 index 1f1c1af3..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockHouseTrap1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockHouseTrap1" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockHouseTrap2.json b/src/main/resources/assets/imsm/models/block/BlockHouseTrap2.json deleted file mode 100644 index faf3ad97..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockHouseTrap2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockHouseTrap2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockLeaves2.json b/src/main/resources/assets/imsm/models/block/BlockLeaves2.json deleted file mode 100644 index 1fd25eb2..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockLeaves2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockLeaves2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockLighthouse.json b/src/main/resources/assets/imsm/models/block/BlockLighthouse.json deleted file mode 100644 index c3393055..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockLighthouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockLighthouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockMegaHouse.json b/src/main/resources/assets/imsm/models/block/BlockMegaHouse.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockMegaHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockMegaHouse2.json b/src/main/resources/assets/imsm/models/block/BlockMegaHouse2.json deleted file mode 100644 index 6af17060..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockMegaHouse2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockMegaTower.json b/src/main/resources/assets/imsm/models/block/BlockMegaTower.json deleted file mode 100644 index f93f4109..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockMegaTower.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaTower" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockPenIron.json b/src/main/resources/assets/imsm/models/block/BlockPenIron.json deleted file mode 100644 index 6135b748..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockPenIron.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockPenIron" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockPenNether.json b/src/main/resources/assets/imsm/models/block/BlockPenNether.json deleted file mode 100644 index 200b5856..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockPenNether.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockPenNether" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockPenWood.json b/src/main/resources/assets/imsm/models/block/BlockPenWood.json deleted file mode 100644 index c3481637..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockPenWood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockPenWood" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockPlane.json b/src/main/resources/assets/imsm/models/block/BlockPlane.json deleted file mode 100644 index 2d9b4437..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockPlane.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockPlane" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockPrison.json b/src/main/resources/assets/imsm/models/block/BlockPrison.json deleted file mode 100644 index 9288280a..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockPrison.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockPrison" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockPrison2.json b/src/main/resources/assets/imsm/models/block/BlockPrison2.json deleted file mode 100644 index 5d17f412..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockPrison2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockPrison2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockPyramid.json b/src/main/resources/assets/imsm/models/block/BlockPyramid.json deleted file mode 100644 index 39c09273..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockPyramid.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockPyramid" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockRemoverLast.json b/src/main/resources/assets/imsm/models/block/BlockRemoverLast.json deleted file mode 100644 index 0789044d..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockRemoverLast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockAirBalloon" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockRollerCoaster2.json b/src/main/resources/assets/imsm/models/block/BlockRollerCoaster2.json deleted file mode 100644 index d336817d..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockRollerCoaster2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockRollerCoaster2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockRollercoaster.json b/src/main/resources/assets/imsm/models/block/BlockRollercoaster.json deleted file mode 100644 index f6767416..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockRollercoaster.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockRollercoaster" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockShelter.json b/src/main/resources/assets/imsm/models/block/BlockShelter.json deleted file mode 100644 index 0f9d7c23..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockShelter.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockShelter" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockSkyscraper.json b/src/main/resources/assets/imsm/models/block/BlockSkyscraper.json deleted file mode 100644 index e3fb6ef2..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockSkyscraper.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockSkyscraper" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockSkyscraper2.json b/src/main/resources/assets/imsm/models/block/BlockSkyscraper2.json deleted file mode 100644 index d0c2dd37..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockSkyscraper2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockSkyscraper2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockStadium.json b/src/main/resources/assets/imsm/models/block/BlockStadium.json deleted file mode 100644 index 6304c8b3..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockStadium.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockStadium" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockStadium2.json b/src/main/resources/assets/imsm/models/block/BlockStadium2.json deleted file mode 100644 index 6fa8d3d2..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockStadium2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockStadium2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockStandardBrickHouse.json b/src/main/resources/assets/imsm/models/block/BlockStandardBrickHouse.json deleted file mode 100644 index 0b07b2f2..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockStandardBrickHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockStandardBrickHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockStoreHouse.json b/src/main/resources/assets/imsm/models/block/BlockStoreHouse.json deleted file mode 100644 index 5d94c330..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockStoreHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockStoreHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockStreet.json b/src/main/resources/assets/imsm/models/block/BlockStreet.json deleted file mode 100644 index d503972b..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockStreet.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockTorch2.json b/src/main/resources/assets/imsm/models/block/BlockTorch2.json deleted file mode 100644 index 00aec94b..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockTorch2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockTorch2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockTouchable.json b/src/main/resources/assets/imsm/models/block/BlockTouchable.json deleted file mode 100644 index 8407f77a..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockTouchable.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/dead" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockTower.json b/src/main/resources/assets/imsm/models/block/BlockTower.json deleted file mode 100644 index 78e7cde2..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockTower.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockTower" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockUnlimited.json b/src/main/resources/assets/imsm/models/block/BlockUnlimited.json deleted file mode 100644 index b32180a1..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockUnlimited.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockUnlimited" - } -} diff --git a/src/main/resources/assets/imsm/models/block/BlockWaterSlide.json b/src/main/resources/assets/imsm/models/block/BlockWaterSlide.json deleted file mode 100644 index 1ad76c7f..00000000 --- a/src/main/resources/assets/imsm/models/block/BlockWaterSlide.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockWaterSlide" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ChristmasHouse.json b/src/main/resources/assets/imsm/models/block/ChristmasHouse.json deleted file mode 100644 index 92c1ee47..00000000 --- a/src/main/resources/assets/imsm/models/block/ChristmasHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/christmas" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ChristmasHouse2.json b/src/main/resources/assets/imsm/models/block/ChristmasHouse2.json deleted file mode 100644 index 92c1ee47..00000000 --- a/src/main/resources/assets/imsm/models/block/ChristmasHouse2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/christmas" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ChristmasHouse3.json b/src/main/resources/assets/imsm/models/block/ChristmasHouse3.json deleted file mode 100644 index 92c1ee47..00000000 --- a/src/main/resources/assets/imsm/models/block/ChristmasHouse3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/christmas" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ChristmasMarket.json b/src/main/resources/assets/imsm/models/block/ChristmasMarket.json deleted file mode 100644 index 92c1ee47..00000000 --- a/src/main/resources/assets/imsm/models/block/ChristmasMarket.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/christmas" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ChristmasSleigh.json b/src/main/resources/assets/imsm/models/block/ChristmasSleigh.json deleted file mode 100644 index 92c1ee47..00000000 --- a/src/main/resources/assets/imsm/models/block/ChristmasSleigh.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/christmas" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ChristmasSleigh2.json b/src/main/resources/assets/imsm/models/block/ChristmasSleigh2.json deleted file mode 100644 index 92c1ee47..00000000 --- a/src/main/resources/assets/imsm/models/block/ChristmasSleigh2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/christmas" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ChristmasSnowman.json b/src/main/resources/assets/imsm/models/block/ChristmasSnowman.json deleted file mode 100644 index 92c1ee47..00000000 --- a/src/main/resources/assets/imsm/models/block/ChristmasSnowman.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/christmas" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ChristmasTree.json b/src/main/resources/assets/imsm/models/block/ChristmasTree.json deleted file mode 100644 index 92c1ee47..00000000 --- a/src/main/resources/assets/imsm/models/block/ChristmasTree.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/christmas" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationGrassNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/DecorationGrassNorthEastSouthWest.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationGrassNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkEast.json b/src/main/resources/assets/imsm/models/block/DecorationParkEast.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkNorth.json b/src/main/resources/assets/imsm/models/block/DecorationParkNorth.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkSouth.json b/src/main/resources/assets/imsm/models/block/DecorationParkSouth.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkWest.json b/src/main/resources/assets/imsm/models/block/DecorationParkWest.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkingGarageEast.json b/src/main/resources/assets/imsm/models/block/DecorationParkingGarageEast.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkingGarageEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkingGarageNorth.json b/src/main/resources/assets/imsm/models/block/DecorationParkingGarageNorth.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkingGarageNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkingGarageSouth.json b/src/main/resources/assets/imsm/models/block/DecorationParkingGarageSouth.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkingGarageSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkingGarageWest.json b/src/main/resources/assets/imsm/models/block/DecorationParkingGarageWest.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkingGarageWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkingLotsEast.json b/src/main/resources/assets/imsm/models/block/DecorationParkingLotsEast.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkingLotsEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkingLotsNorth.json b/src/main/resources/assets/imsm/models/block/DecorationParkingLotsNorth.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkingLotsNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkingLotsSouth.json b/src/main/resources/assets/imsm/models/block/DecorationParkingLotsSouth.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkingLotsSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationParkingLotsWest.json b/src/main/resources/assets/imsm/models/block/DecorationParkingLotsWest.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationParkingLotsWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationPlazaFountainNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/DecorationPlazaFountainNorthEastSouthWest.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationPlazaFountainNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationPlazaNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/DecorationPlazaNorthEastSouthWest.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationPlazaNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationSoccerStadiumEastWest.json b/src/main/resources/assets/imsm/models/block/DecorationSoccerStadiumEastWest.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationSoccerStadiumEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationSoccerStadiumNorthSouth.json b/src/main/resources/assets/imsm/models/block/DecorationSoccerStadiumNorthSouth.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationSoccerStadiumNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationSquareNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/DecorationSquareNorthEastSouthWest.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationSquareNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationSquareTreeEast.json b/src/main/resources/assets/imsm/models/block/DecorationSquareTreeEast.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationSquareTreeEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationSquareTreeNorth.json b/src/main/resources/assets/imsm/models/block/DecorationSquareTreeNorth.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationSquareTreeNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationSquareTreeSouth.json b/src/main/resources/assets/imsm/models/block/DecorationSquareTreeSouth.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationSquareTreeSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/DecorationSquareTreeWest.json b/src/main/resources/assets/imsm/models/block/DecorationSquareTreeWest.json deleted file mode 100644 index 1b177dc6..00000000 --- a/src/main/resources/assets/imsm/models/block/DecorationSquareTreeWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Decoration" - } -} diff --git a/src/main/resources/assets/imsm/models/block/FoodCarrotsEastWest.json b/src/main/resources/assets/imsm/models/block/FoodCarrotsEastWest.json deleted file mode 100644 index f8369975..00000000 --- a/src/main/resources/assets/imsm/models/block/FoodCarrotsEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Food" - } -} diff --git a/src/main/resources/assets/imsm/models/block/FoodCarrotsNorthSouth.json b/src/main/resources/assets/imsm/models/block/FoodCarrotsNorthSouth.json deleted file mode 100644 index f8369975..00000000 --- a/src/main/resources/assets/imsm/models/block/FoodCarrotsNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Food" - } -} diff --git a/src/main/resources/assets/imsm/models/block/FoodFarmEast.json b/src/main/resources/assets/imsm/models/block/FoodFarmEast.json deleted file mode 100644 index f8369975..00000000 --- a/src/main/resources/assets/imsm/models/block/FoodFarmEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Food" - } -} diff --git a/src/main/resources/assets/imsm/models/block/FoodFarmNorth.json b/src/main/resources/assets/imsm/models/block/FoodFarmNorth.json deleted file mode 100644 index f8369975..00000000 --- a/src/main/resources/assets/imsm/models/block/FoodFarmNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Food" - } -} diff --git a/src/main/resources/assets/imsm/models/block/FoodFarmSouth.json b/src/main/resources/assets/imsm/models/block/FoodFarmSouth.json deleted file mode 100644 index f8369975..00000000 --- a/src/main/resources/assets/imsm/models/block/FoodFarmSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Food" - } -} diff --git a/src/main/resources/assets/imsm/models/block/FoodFarmWest.json b/src/main/resources/assets/imsm/models/block/FoodFarmWest.json deleted file mode 100644 index f8369975..00000000 --- a/src/main/resources/assets/imsm/models/block/FoodFarmWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Food" - } -} diff --git a/src/main/resources/assets/imsm/models/block/FoodPotatoesNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/FoodPotatoesNorthEastSouthWest.json deleted file mode 100644 index f8369975..00000000 --- a/src/main/resources/assets/imsm/models/block/FoodPotatoesNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Food" - } -} diff --git a/src/main/resources/assets/imsm/models/block/FoodStableEastWest.json b/src/main/resources/assets/imsm/models/block/FoodStableEastWest.json deleted file mode 100644 index f8369975..00000000 --- a/src/main/resources/assets/imsm/models/block/FoodStableEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Food" - } -} diff --git a/src/main/resources/assets/imsm/models/block/FoodStableNorthSouth.json b/src/main/resources/assets/imsm/models/block/FoodStableNorthSouth.json deleted file mode 100644 index f8369975..00000000 --- a/src/main/resources/assets/imsm/models/block/FoodStableNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Food" - } -} diff --git a/src/main/resources/assets/imsm/models/block/FoodWheatNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/FoodWheatNorthEastSouthWest.json deleted file mode 100644 index f8369975..00000000 --- a/src/main/resources/assets/imsm/models/block/FoodWheatNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Food" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueEast.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueEast.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueNorth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueNorth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueSouth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueSouth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueWest.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueWest.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBlueWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickEast.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickEast.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickNorth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickSouth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickWest.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickWest.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityBrickWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneyEast.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneyEast.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneyEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneyNorth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneyNorth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneyNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneySouth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneySouth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneySouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneyWest.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneyWest.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityChimneyWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipEast.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipEast.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipNorth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipNorth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipSouth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipSouth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipWest.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipWest.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityComputerChipWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenEast.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenEast.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenNorth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenSouth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenWest.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenWest.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityGreenWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueEast.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueEast.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueNorth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueNorth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueSouth.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueSouth.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueWest.json b/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueWest.json deleted file mode 100644 index 3e2f8436..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryHigh_DensityLightBlueWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingEast.json b/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingEast.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingNorth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingNorth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingSouth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingSouth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_Density3DPrintingWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueEast.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueEast.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueNorth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueNorth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueSouth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueSouth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBlueWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickEast.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickEast.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickEastWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickEastWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickNorth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickNorthSouth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickNorthSouth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickSouth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrickWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownEast.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownEast.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownEast2.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownEast2.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownEast2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownNorth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownNorth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownNorth2.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownNorth2.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownNorth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownSouth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownSouth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownSouth2.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownSouth2.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownSouth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownWest2.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownWest2.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityBrownWest2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneyEast.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneyEast.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneyEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneyNorth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneyNorth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneyNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneySouth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneySouth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneySouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneyWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneyWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityChimneyWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenEast.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenEast.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenNorth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenSouth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityGreenWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronEast.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronEast.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronNorth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronNorth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronSouth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronSouth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityIronWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaEast.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaEast.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaNorth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaNorth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaSouth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaSouth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityParabolicAntennaWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTankNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTankNorthEastSouthWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTankNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeEast.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeEast.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeNorth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeNorth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeSouth.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeSouth.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeWest.json b/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeWest.json deleted file mode 100644 index 23cc6820..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryLow_DensityTelescopeWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueEast.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueEast.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueNorth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueNorth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueSouth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueSouth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueWest.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueWest.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBlueWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickEast.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickEast.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickNorth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickSouth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickWest.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickWest.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrickWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownEast.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownEast.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownNorth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownNorth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownSouth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownSouth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownWest.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownWest.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityBrownWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChemicalPressEastWest.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChemicalPressEastWest.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChemicalPressEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChemicalPressNorthSouth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChemicalPressNorthSouth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChemicalPressNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneyEast.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneyEast.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneyEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneyNorth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneyNorth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneyNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneySouth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneySouth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneySouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneyWest.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneyWest.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityChimneyWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenEast.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenEast.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenNorth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenSouth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenWest.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenWest.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityGreenWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceEast.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceEast.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceNorth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceNorth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceSouth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceSouth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceWest.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceWest.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityIceWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneEast.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneEast.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneNorth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneNorth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneSouth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneSouth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneWest.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneWest.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensitySandstoneWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankEast.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankEast.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankNorth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankNorth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankSouth.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankSouth.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankWest.json b/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankWest.json deleted file mode 100644 index 21c16902..00000000 --- a/src/main/resources/assets/imsm/models/block/IndustryMedium_DensityTankWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/IndustryMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/LiveAirBalloon.json b/src/main/resources/assets/imsm/models/block/LiveAirBalloon.json deleted file mode 100644 index 76aa47cb..00000000 --- a/src/main/resources/assets/imsm/models/block/LiveAirBalloon.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAirport" - } -} diff --git a/src/main/resources/assets/imsm/models/block/LiveAirplane.json b/src/main/resources/assets/imsm/models/block/LiveAirplane.json deleted file mode 100644 index 76aa47cb..00000000 --- a/src/main/resources/assets/imsm/models/block/LiveAirplane.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAirport" - } -} diff --git a/src/main/resources/assets/imsm/models/block/LiveBoat.json b/src/main/resources/assets/imsm/models/block/LiveBoat.json deleted file mode 100644 index 41be8c9a..00000000 --- a/src/main/resources/assets/imsm/models/block/LiveBoat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/boat" - } -} diff --git a/src/main/resources/assets/imsm/models/block/LiveFlyingShip.json b/src/main/resources/assets/imsm/models/block/LiveFlyingShip.json deleted file mode 100644 index 76aa47cb..00000000 --- a/src/main/resources/assets/imsm/models/block/LiveFlyingShip.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAirport" - } -} diff --git a/src/main/resources/assets/imsm/models/block/LiveFlyingShip2.json b/src/main/resources/assets/imsm/models/block/LiveFlyingShip2.json deleted file mode 100644 index 76aa47cb..00000000 --- a/src/main/resources/assets/imsm/models/block/LiveFlyingShip2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAirport" - } -} diff --git a/src/main/resources/assets/imsm/models/block/LivePlane.json b/src/main/resources/assets/imsm/models/block/LivePlane.json deleted file mode 100644 index 76aa47cb..00000000 --- a/src/main/resources/assets/imsm/models/block/LivePlane.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAirport" - } -} diff --git a/src/main/resources/assets/imsm/models/block/LiveStructureRemover.json b/src/main/resources/assets/imsm/models/block/LiveStructureRemover.json deleted file mode 100644 index 60603012..00000000 --- a/src/main/resources/assets/imsm/models/block/LiveStructureRemover.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/RemoverSpiraal" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Live_Bus.json b/src/main/resources/assets/imsm/models/block/Live_Bus.json deleted file mode 100644 index 8cd544fc..00000000 --- a/src/main/resources/assets/imsm/models/block/Live_Bus.json +++ /dev/null @@ -1,6 +0,0 @@ - { - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/bus" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Live_Bus2.json b/src/main/resources/assets/imsm/models/block/Live_Bus2.json deleted file mode 100644 index ac11cafc..00000000 --- a/src/main/resources/assets/imsm/models/block/Live_Bus2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/bus2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Live_Cinema.json b/src/main/resources/assets/imsm/models/block/Live_Cinema.json deleted file mode 100644 index 34a2ca4a..00000000 --- a/src/main/resources/assets/imsm/models/block/Live_Cinema.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/cinema" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Live_Fair_FreeFall.json b/src/main/resources/assets/imsm/models/block/Live_Fair_FreeFall.json deleted file mode 100644 index d590513b..00000000 --- a/src/main/resources/assets/imsm/models/block/Live_Fair_FreeFall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/fair" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Live_Flying_Helicopter.json b/src/main/resources/assets/imsm/models/block/Live_Flying_Helicopter.json deleted file mode 100644 index c530309f..00000000 --- a/src/main/resources/assets/imsm/models/block/Live_Flying_Helicopter.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/helicopter" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Live_Helicopter.json b/src/main/resources/assets/imsm/models/block/Live_Helicopter.json deleted file mode 100644 index c530309f..00000000 --- a/src/main/resources/assets/imsm/models/block/Live_Helicopter.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/helicopter" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Live_Mill.json b/src/main/resources/assets/imsm/models/block/Live_Mill.json deleted file mode 100644 index fc6729eb..00000000 --- a/src/main/resources/assets/imsm/models/block/Live_Mill.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/windmill" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Live_Power_Windmill_East.json b/src/main/resources/assets/imsm/models/block/Live_Power_Windmill_East.json deleted file mode 100644 index 5b8c1f51..00000000 --- a/src/main/resources/assets/imsm/models/block/Live_Power_Windmill_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/windmill2" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Live_WaterMill.json b/src/main/resources/assets/imsm/models/block/Live_WaterMill.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/Live_WaterMill.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityBrickEastWest.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityBrickEastWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityBrickEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityBrickNorthSouth.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityBrickNorthSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityBrickNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanEast.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanNorth.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanSouth.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanWest.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityCyanWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopEast.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopNorth.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopSouth.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopWest.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityHoleOnTopWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityLightBlueEastWest.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityLightBlueEastWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityLightBlueEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityLightBlueNorthSouth.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityLightBlueNorthSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensityLightBlueNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingEast.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingNorth.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingSouth.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingWest.json b/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeHigh_DensitySpirolBuildingWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueEast.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueNorth.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueSouth.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueWest.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityBlueWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenEast.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenWest.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityGreenWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteEast.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteNorth.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteSouth.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteWest.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityWhiteWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowEast.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowNorth.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowSouth.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowWest.json b/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeLow_DensityYellowWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanEast.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanNorth.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanSouth.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanWest.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityCyanWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueEast.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueNorth.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueSouth.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueWest.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityLightBlueWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkEast.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkNorth.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkSouth.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkWest.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensityPinkWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneEast.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneEast.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneNorth.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneNorth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneSouth.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneSouth.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneWest.json b/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneWest.json deleted file mode 100644 index 4ba54fd2..00000000 --- a/src/main/resources/assets/imsm/models/block/OfficeMedium_DensitySandstoneWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Office" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherBrickHouse.json b/src/main/resources/assets/imsm/models/block/OtherBrickHouse.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherBrickHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherGrandHouse.json b/src/main/resources/assets/imsm/models/block/OtherGrandHouse.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherGrandHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherLighthouse.json b/src/main/resources/assets/imsm/models/block/OtherLighthouse.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherLighthouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherStable.json b/src/main/resources/assets/imsm/models/block/OtherStable.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherStable.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse.json b/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse2.json b/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse2.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse3.json b/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse3.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse4.json b/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse4.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse5.json b/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse5.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse6.json b/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse6.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse6.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse7.json b/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse7.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse7.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse8.json b/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse8.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherSurvivorHouse8.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/OtherTemple.json b/src/main/resources/assets/imsm/models/block/OtherTemple.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/OtherTemple.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicFireServiceBigEast.json b/src/main/resources/assets/imsm/models/block/PublicFireServiceBigEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicFireServiceBigEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicFireServiceBigNorth.json b/src/main/resources/assets/imsm/models/block/PublicFireServiceBigNorth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicFireServiceBigNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicFireServiceBigSouth.json b/src/main/resources/assets/imsm/models/block/PublicFireServiceBigSouth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicFireServiceBigSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicFireServiceBigWest.json b/src/main/resources/assets/imsm/models/block/PublicFireServiceBigWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicFireServiceBigWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallEast.json b/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallNorth.json b/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallNorth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallSouth.json b/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallSouth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallWest.json b/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicFireServiceSmallWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicHospitalBigEast.json b/src/main/resources/assets/imsm/models/block/PublicHospitalBigEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicHospitalBigEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicHospitalBigNorth.json b/src/main/resources/assets/imsm/models/block/PublicHospitalBigNorth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicHospitalBigNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicHospitalBigSouth.json b/src/main/resources/assets/imsm/models/block/PublicHospitalBigSouth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicHospitalBigSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicHospitalBigWest.json b/src/main/resources/assets/imsm/models/block/PublicHospitalBigWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicHospitalBigWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicHospitalSmallEast.json b/src/main/resources/assets/imsm/models/block/PublicHospitalSmallEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicHospitalSmallEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicHospitalSmallNorth.json b/src/main/resources/assets/imsm/models/block/PublicHospitalSmallNorth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicHospitalSmallNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicHospitalSmallSouth.json b/src/main/resources/assets/imsm/models/block/PublicHospitalSmallSouth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicHospitalSmallSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicHospitalSmallWest.json b/src/main/resources/assets/imsm/models/block/PublicHospitalSmallWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicHospitalSmallWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicLibraryEastWest.json b/src/main/resources/assets/imsm/models/block/PublicLibraryEastWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicLibraryEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicLibraryNorthSouth.json b/src/main/resources/assets/imsm/models/block/PublicLibraryNorthSouth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicLibraryNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicPoliceBigEast.json b/src/main/resources/assets/imsm/models/block/PublicPoliceBigEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicPoliceBigEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicPoliceBigNorth.json b/src/main/resources/assets/imsm/models/block/PublicPoliceBigNorth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicPoliceBigNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicPoliceBigSouth.json b/src/main/resources/assets/imsm/models/block/PublicPoliceBigSouth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicPoliceBigSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicPoliceBigWest.json b/src/main/resources/assets/imsm/models/block/PublicPoliceBigWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicPoliceBigWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicPoliceSmallEast.json b/src/main/resources/assets/imsm/models/block/PublicPoliceSmallEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicPoliceSmallEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicPoliceSmallNorth.json b/src/main/resources/assets/imsm/models/block/PublicPoliceSmallNorth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicPoliceSmallNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicPoliceSmallSouth.json b/src/main/resources/assets/imsm/models/block/PublicPoliceSmallSouth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicPoliceSmallSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicPoliceSmallWest.json b/src/main/resources/assets/imsm/models/block/PublicPoliceSmallWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicPoliceSmallWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicSchoolBigNorthEast.json b/src/main/resources/assets/imsm/models/block/PublicSchoolBigNorthEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicSchoolBigNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicSchoolBigNorthWest.json b/src/main/resources/assets/imsm/models/block/PublicSchoolBigNorthWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicSchoolBigNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicSchoolBigSouthEast.json b/src/main/resources/assets/imsm/models/block/PublicSchoolBigSouthEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicSchoolBigSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicSchoolBigSouthWest.json b/src/main/resources/assets/imsm/models/block/PublicSchoolBigSouthWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicSchoolBigSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicSchoolSmallNorthEast.json b/src/main/resources/assets/imsm/models/block/PublicSchoolSmallNorthEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicSchoolSmallNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicSchoolSmallNorthWest.json b/src/main/resources/assets/imsm/models/block/PublicSchoolSmallNorthWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicSchoolSmallNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicSchoolSmallSouthEast.json b/src/main/resources/assets/imsm/models/block/PublicSchoolSmallSouthEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicSchoolSmallSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicSchoolSmallSouthWest.json b/src/main/resources/assets/imsm/models/block/PublicSchoolSmallSouthWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicSchoolSmallSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicTownhallBigEastWest.json b/src/main/resources/assets/imsm/models/block/PublicTownhallBigEastWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicTownhallBigEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicTownhallBigNorthSouth.json b/src/main/resources/assets/imsm/models/block/PublicTownhallBigNorthSouth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicTownhallBigNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicTownhallSmallEast.json b/src/main/resources/assets/imsm/models/block/PublicTownhallSmallEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicTownhallSmallEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicTownhallSmallNorth.json b/src/main/resources/assets/imsm/models/block/PublicTownhallSmallNorth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicTownhallSmallNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicTownhallSmallSouth.json b/src/main/resources/assets/imsm/models/block/PublicTownhallSmallSouth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicTownhallSmallSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicTownhallSmallWest.json b/src/main/resources/assets/imsm/models/block/PublicTownhallSmallWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicTownhallSmallWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicUniversityEast.json b/src/main/resources/assets/imsm/models/block/PublicUniversityEast.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicUniversityEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicUniversityNorth.json b/src/main/resources/assets/imsm/models/block/PublicUniversityNorth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicUniversityNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicUniversitySouth.json b/src/main/resources/assets/imsm/models/block/PublicUniversitySouth.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicUniversitySouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/PublicUniversityWest.json b/src/main/resources/assets/imsm/models/block/PublicUniversityWest.json deleted file mode 100644 index 98c35c04..00000000 --- a/src/main/resources/assets/imsm/models/block/PublicUniversityWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Public" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomAirballoon2.json b/src/main/resources/assets/imsm/models/block/RandomAirballoon2.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomAirballoon2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomBuildingComplex.json b/src/main/resources/assets/imsm/models/block/RandomBuildingComplex.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomBuildingComplex.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomEntrance.json b/src/main/resources/assets/imsm/models/block/RandomEntrance.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomEntrance.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomFlyingShip.json b/src/main/resources/assets/imsm/models/block/RandomFlyingShip.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomFlyingShip.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomGreenTent.json b/src/main/resources/assets/imsm/models/block/RandomGreenTent.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomGreenTent.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomGreyTent.json b/src/main/resources/assets/imsm/models/block/RandomGreyTent.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomGreyTent.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomImmense_Buildingcomplex.json b/src/main/resources/assets/imsm/models/block/RandomImmense_Buildingcomplex.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomImmense_Buildingcomplex.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomImmense_White_House.json b/src/main/resources/assets/imsm/models/block/RandomImmense_White_House.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomImmense_White_House.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomImmense_WorkingBuilding.json b/src/main/resources/assets/imsm/models/block/RandomImmense_WorkingBuilding.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomImmense_WorkingBuilding.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomImmense_greenroof.json b/src/main/resources/assets/imsm/models/block/RandomImmense_greenroof.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomImmense_greenroof.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomLightHouse.json b/src/main/resources/assets/imsm/models/block/RandomLightHouse.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomLightHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomLittlePalace.json b/src/main/resources/assets/imsm/models/block/RandomLittlePalace.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomLittlePalace.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomLittleWoodenCabin.json b/src/main/resources/assets/imsm/models/block/RandomLittleWoodenCabin.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomLittleWoodenCabin.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomMinerTent.json b/src/main/resources/assets/imsm/models/block/RandomMinerTent.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomMinerTent.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomNetherEntranceSurvival.json b/src/main/resources/assets/imsm/models/block/RandomNetherEntranceSurvival.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomNetherEntranceSurvival.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomRandomBrickHouse.json b/src/main/resources/assets/imsm/models/block/RandomRandomBrickHouse.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomRandomBrickHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomSandStoneChurch.json b/src/main/resources/assets/imsm/models/block/RandomSandStoneChurch.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomSandStoneChurch.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomSandstoneBuilding.json b/src/main/resources/assets/imsm/models/block/RandomSandstoneBuilding.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomSandstoneBuilding.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomSandstonewithFarm.json b/src/main/resources/assets/imsm/models/block/RandomSandstonewithFarm.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomSandstonewithFarm.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomSimpleSandstone.json b/src/main/resources/assets/imsm/models/block/RandomSimpleSandstone.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomSimpleSandstone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomSpawnHouseProd.json b/src/main/resources/assets/imsm/models/block/RandomSpawnHouseProd.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomSpawnHouseProd.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomSurvivalHouse1.json b/src/main/resources/assets/imsm/models/block/RandomSurvivalHouse1.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomSurvivalHouse1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomSurvivalHouseSandstone.json b/src/main/resources/assets/imsm/models/block/RandomSurvivalHouseSandstone.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomSurvivalHouseSandstone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomTentCamp.json b/src/main/resources/assets/imsm/models/block/RandomTentCamp.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomTentCamp.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomWoodenHouse.json b/src/main/resources/assets/imsm/models/block/RandomWoodenHouse.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomWoodenHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RandomWoodenStonebrickHouse.json b/src/main/resources/assets/imsm/models/block/RandomWoodenStonebrickHouse.json deleted file mode 100644 index c063cea3..00000000 --- a/src/main/resources/assets/imsm/models/block/RandomWoodenStonebrickHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Random" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover16.json b/src/main/resources/assets/imsm/models/block/Remover16.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover16.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover16256.json b/src/main/resources/assets/imsm/models/block/Remover16256.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover16256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover1632.json b/src/main/resources/assets/imsm/models/block/Remover1632.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover1632.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover168.json b/src/main/resources/assets/imsm/models/block/Remover168.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover168.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover32.json b/src/main/resources/assets/imsm/models/block/Remover32.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover32.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover3216.json b/src/main/resources/assets/imsm/models/block/Remover3216.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover3216.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover32256.json b/src/main/resources/assets/imsm/models/block/Remover32256.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover32256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover328.json b/src/main/resources/assets/imsm/models/block/Remover328.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover328.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover64.json b/src/main/resources/assets/imsm/models/block/Remover64.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover64.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover64256.json b/src/main/resources/assets/imsm/models/block/Remover64256.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover64256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover8.json b/src/main/resources/assets/imsm/models/block/Remover8.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover8.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover816.json b/src/main/resources/assets/imsm/models/block/Remover816.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover816.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover8256.json b/src/main/resources/assets/imsm/models/block/Remover8256.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover8256.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/Remover832.json b/src/main/resources/assets/imsm/models/block/Remover832.json deleted file mode 100644 index d180d5b1..00000000 --- a/src/main/resources/assets/imsm/models/block/Remover832.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Remover" - } -} diff --git a/src/main/resources/assets/imsm/models/block/RemoverLast.json b/src/main/resources/assets/imsm/models/block/RemoverLast.json deleted file mode 100644 index edc2e5f7..00000000 --- a/src/main/resources/assets/imsm/models/block/RemoverLast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/RemoverArrow" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBlockNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBlockNorthEastSouthWest.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBlockNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigEast.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigEast.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigNorth.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigSouth.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigWest.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigWest.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickBigWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreyEast.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreyEast.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreyEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreyNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreyNorth.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreyNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreySouth.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreySouth.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreySouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreyWest.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreyWest.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityGreyWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernEast.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernEast.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernNorth.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernSouth.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernWest.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernWest.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityModernWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityRedEastWest.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityRedEastWest.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityRedEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityRedNorthSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityRedNorthSouth.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityRedNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityRoundNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityRoundNorthEastSouthWest.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityRoundNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneEast.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneEast.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneEast2.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneEast2.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneEast2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneNorth.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneNorth2.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneNorth2.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneNorth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneSouth.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneSouth2.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneSouth2.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneSouth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneWest.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneWest.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneWest2.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneWest2.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityStoneWest2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityYellowNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityYellowNorthEastSouthWest.json deleted file mode 100644 index c0e25dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalEnormous_DensityYellowNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalEnormous_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueEast.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueEast.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueEastWest.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueEastWest.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueNorth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueNorthSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueNorthSouth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueSouth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueWest.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueWest.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBlueWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickEast.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickEast.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickEastWest.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickEastWest.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickNorth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickNorthSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickNorthSouth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickSouth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickWest.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickWest.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityBrickWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreyEast.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreyEast.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreyEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreyNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreyNorth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreyNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreySouth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreySouth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreySouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreyWest.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreyWest.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityGreenGreyWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerNorthEast.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerNorthEast.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerNorthWest.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerNorthWest.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerSouthEast.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerSouthEast.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerSouthWest.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerSouthWest.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedCornerSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowEast.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowEast.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowNorth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowSouth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowWest.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowWest.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityRedYellowWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneEast.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneEast.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneEast2.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneEast2.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneEast2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneNorth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneNorth2.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneNorth2.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneNorth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneSouth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneSouth2.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneSouth2.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneSouth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneWest.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneWest.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneWest2.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneWest2.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityStoneWest2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowEast.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowEast.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowNorth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowSouth.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowWest.json b/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowWest.json deleted file mode 100644 index 0b7b3dc5..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalHigh_DensityYellowWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityBeigeWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityCyanWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenEast2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenEast2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenEast2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenNorth2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenNorth2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenNorth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenSouth2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenSouth2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenSouth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenWest2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenWest2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityGreenWest2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueEast2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueEast2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueEast2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueNorth2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueNorth2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueNorth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueSouth2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueSouth2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueSouth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueWest2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueWest2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightBlueWest2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreyEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreyEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreyEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreyNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreyNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreyNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreySouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreySouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreySouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreyWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreyWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityLightGreyWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityModernWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityOrangeWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityRedWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityStoneWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWhiteWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityWoodWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowEast.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowEast.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowEast2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowEast2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowEast2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowNorth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowNorth2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowNorth2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowNorth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowSouth.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowSouth2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowSouth2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowSouth2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowWest.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowWest.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowWest2.json b/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowWest2.json deleted file mode 100644 index 2967d33c..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalLow_DensityYellowWest2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueGreenWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBlueRedWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityBrickWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityHorizontalWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityOrangeGreenWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityQuartzWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRedGreenWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityRoofWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone1EastWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone1EastWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone1NorthSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone1NorthSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone2EastWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone2EastWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone2EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone2NorthSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone2NorthSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStone2NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerNorthEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerNorthEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerNorthWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerNorthWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerSouthEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerSouthEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerSouthWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerSouthWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneCornerSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndNorthEastWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndNorthEastWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndNorthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndNorthSouthEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndNorthSouthEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndNorthSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndNorthSouthWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndNorthSouthWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndNorthSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndSouthEastWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndSouthEastWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneEndSouthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityStoneWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityVerticalWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedEast.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedEast.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedNorth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedNorth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedSouth.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedSouth.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedWest.json b/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedWest.json deleted file mode 100644 index 50471459..00000000 --- a/src/main/resources/assets/imsm/models/block/ResidentalMedium_DensityYellowRedWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ResidentalMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingHigh_DensityQuartzEastWest.json b/src/main/resources/assets/imsm/models/block/ShoppingHigh_DensityQuartzEastWest.json deleted file mode 100644 index f6ab534e..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingHigh_DensityQuartzEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingHigh_DensityQuartzNorthSouth.json b/src/main/resources/assets/imsm/models/block/ShoppingHigh_DensityQuartzNorthSouth.json deleted file mode 100644 index f6ab534e..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingHigh_DensityQuartzNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingHigh_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickEast.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickEast.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickNorth.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickSouth.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickWest.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickWest.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityBrickWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenEast.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenEast.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenNorth.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenSouth.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenWest.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenWest.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityGreenWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeEast.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeEast.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeNorth.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeNorth.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeSouth.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeSouth.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeWest.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeWest.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityOrangeWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkEast.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkEast.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkNorth.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkNorth.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkSouth.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkSouth.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkWest.json b/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkWest.json deleted file mode 100644 index a1a46926..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingLow_DensityPinkWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingLow_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernEast.json b/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernEast.json deleted file mode 100644 index 962eaf9e..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernNorth.json b/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernNorth.json deleted file mode 100644 index 962eaf9e..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernSouth.json b/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernSouth.json deleted file mode 100644 index 962eaf9e..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernWest.json b/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernWest.json deleted file mode 100644 index 962eaf9e..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityModernWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzEast.json b/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzEast.json deleted file mode 100644 index 962eaf9e..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzNorth.json b/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzNorth.json deleted file mode 100644 index 962eaf9e..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzSouth.json b/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzSouth.json deleted file mode 100644 index 962eaf9e..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzWest.json b/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzWest.json deleted file mode 100644 index 962eaf9e..00000000 --- a/src/main/resources/assets/imsm/models/block/ShoppingMedium_DensityQuartzWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/ShoppingMedium_Density" - } -} diff --git a/src/main/resources/assets/imsm/models/block/SurvivalSmallBuilding.json b/src/main/resources/assets/imsm/models/block/SurvivalSmallBuilding.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/SurvivalSmallBuilding.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/SurvivalWoodenHouse.json b/src/main/resources/assets/imsm/models/block/SurvivalWoodenHouse.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/SurvivalWoodenHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAirportRunway_EastWestBuilding_North.json b/src/main/resources/assets/imsm/models/block/TransportAirportRunway_EastWestBuilding_North.json deleted file mode 100644 index 76aa47cb..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAirportRunway_EastWestBuilding_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAirport" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAirportRunway_EastWestBuilding_South.json b/src/main/resources/assets/imsm/models/block/TransportAirportRunway_EastWestBuilding_South.json deleted file mode 100644 index 76aa47cb..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAirportRunway_EastWestBuilding_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAirport" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAirportRunway_NorthSouthBuilding_East.json b/src/main/resources/assets/imsm/models/block/TransportAirportRunway_NorthSouthBuilding_East.json deleted file mode 100644 index 76aa47cb..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAirportRunway_NorthSouthBuilding_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAirport" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAirportRunway_NorthSouthBuilding_West.json b/src/main/resources/assets/imsm/models/block/TransportAirportRunway_NorthSouthBuilding_West.json deleted file mode 100644 index 76aa47cb..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAirportRunway_NorthSouthBuilding_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAirport" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenue1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportAvenue1EastWest.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenue1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenue1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportAvenue1NorthSouth.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenue1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenue2EastWest.json b/src/main/resources/assets/imsm/models/block/TransportAvenue2EastWest.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenue2EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenue2NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportAvenue2NorthSouth.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenue2NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueEEast.json b/src/main/resources/assets/imsm/models/block/TransportAvenueEEast.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueEEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueENorth.json b/src/main/resources/assets/imsm/models/block/TransportAvenueENorth.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueENorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueESouth.json b/src/main/resources/assets/imsm/models/block/TransportAvenueESouth.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueESouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueEWest.json b/src/main/resources/assets/imsm/models/block/TransportAvenueEWest.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueEWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportAvenueLNorthEast.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportAvenueLNorthWest.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportAvenueLSouthEast.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportAvenueLSouthWest.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueTNorthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportAvenueTNorthEastWest.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueTNorthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueTNorthSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportAvenueTNorthSouthEast.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueTNorthSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueTNorthSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportAvenueTNorthSouthWest.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueTNorthSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueTSouthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportAvenueTSouthEastWest.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueTSouthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportAvenueXNorthSouthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportAvenueXNorthSouthEastWest.json deleted file mode 100644 index 0a1edc60..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportAvenueXNorthSouthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportAvenue" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue1EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue1NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue2NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue2NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue2NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue2SouthWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue2SouthWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue2SouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue3EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue3EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue3EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue3NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue3NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue3NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue4EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue4EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue4EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue4NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue4NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenue4NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLNorthEast.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLNorthWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLSouthEast.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLSouthWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeAvenueLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighway1EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighway1NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway2EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighway2EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway2EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway2NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighway2NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway2NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway3EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighway3EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway3EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway3NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighway3NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway3NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway4EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighway4EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway4EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway4NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighway4NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighway4NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLNorthEast.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLNorthWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLSouthEast.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLSouthWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeHighwayLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeRoad1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeRoad1EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeRoad1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeRoad1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeRoad1NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeRoad1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeRoad2EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeRoad2EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeRoad2EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeRoad2NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeRoad2NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeRoad2NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLNorthEast.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLNorthWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLSouthEast.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLSouthWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeRoadLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeStreet1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeStreet1EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeStreet1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeStreet1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeStreet1NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeStreet1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeStreet2EastWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeStreet2EastWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeStreet2EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeStreet2NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportBridgeStreet2NorthSouth.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeStreet2NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLNorthEast.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLNorthWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLSouthEast.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLSouthWest.json deleted file mode 100644 index de4a767f..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportBridgeStreetLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportBridge" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_EastStreet_North.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_EastStreet_North.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_EastStreet_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_EastStreet_South.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_EastStreet_South.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_EastStreet_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_WestStreet_North.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_WestStreet_North.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_WestStreet_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_WestStreet_South.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_WestStreet_South.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetLAvenue_WestStreet_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.json b/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_EastAvenue_West.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_EastAvenue_West.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_EastAvenue_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_NorthAvenue_South.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_NorthAvenue_South.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_NorthAvenue_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_SouthAvenue_North.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_SouthAvenue_North.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_SouthAvenue_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_WestAvenue_East.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_WestAvenue_East.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_AvenueBridge_WestAvenue_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_EastRoad_West.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_EastRoad_West.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_EastRoad_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_NorthRoad_South.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_NorthRoad_South.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_NorthRoad_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_SouthRoad_North.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_SouthRoad_North.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_SouthRoad_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_WestRoad_East.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_WestRoad_East.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_RoadBridge_WestRoad_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_EastStreet_West.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_EastStreet_West.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_EastStreet_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_NorthStreet_South.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_NorthStreet_South.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_NorthStreet_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_SouthStreet_North.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_SouthStreet_North.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_SouthStreet_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_WestStreet_East.json b/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_WestStreet_East.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorBridge_StreetBridge_WestStreet_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_EastAvenue_West.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_EastAvenue_West.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_EastAvenue_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_NorthAvenue_South.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_NorthAvenue_South.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_NorthAvenue_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_SouthAvenue_North.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_SouthAvenue_North.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_SouthAvenue_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_WestAvenue_East.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_WestAvenue_East.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_AvenueHighway_WestAvenue_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.json b/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.json deleted file mode 100644 index 7c01584c..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportConnector" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourBigEast.json b/src/main/resources/assets/imsm/models/block/TransportHarbourBigEast.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourBigEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourBigNorth.json b/src/main/resources/assets/imsm/models/block/TransportHarbourBigNorth.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourBigNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourBigSouth.json b/src/main/resources/assets/imsm/models/block/TransportHarbourBigSouth.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourBigSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourBigWest.json b/src/main/resources/assets/imsm/models/block/TransportHarbourBigWest.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourBigWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerNorthEast.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerNorthWest.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerSouthEast.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerSouthWest.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide1CornerSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneEast.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneEast.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneNorth.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneNorth.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneSouth.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneSouth.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneWest.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneWest.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerCraneWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerEast.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerEast.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerNorth.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerNorth.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerSouth.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerSouth.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerWest.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerWest.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide2CornerWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSmallEast.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSmallEast.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSmallEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSmallNorth.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSmallNorth.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSmallNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSmallSouth.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSmallSouth.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSmallSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHarbourSmallWest.json b/src/main/resources/assets/imsm/models/block/TransportHarbourSmallWest.json deleted file mode 100644 index 87e17258..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHarbourSmallWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHarbour" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighway05EastWestNorthside.json b/src/main/resources/assets/imsm/models/block/TransportHighway05EastWestNorthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighway05EastWestNorthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighway05EastWestSouthside.json b/src/main/resources/assets/imsm/models/block/TransportHighway05EastWestSouthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighway05EastWestSouthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighway05NorthSouthEastside.json b/src/main/resources/assets/imsm/models/block/TransportHighway05NorthSouthEastside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighway05NorthSouthEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighway05NorthSouthWestside.json b/src/main/resources/assets/imsm/models/block/TransportHighway05NorthSouthWestside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighway05NorthSouthWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighway1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportHighway1EastWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighway1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighway1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportHighway1NorthSouth.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighway1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighway2EastWest.json b/src/main/resources/assets/imsm/models/block/TransportHighway2EastWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighway2EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighway2NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportHighway2NorthSouth.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighway2NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayEastWestEastside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayEastWestEastside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayEastWestEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayEastWestWestside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayEastWestWestside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayEastWestWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitEastWestEastside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitEastWestEastside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitEastWestEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitEastWestWestside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitEastWestWestside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitEastWestWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitNorthSouthNorthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitNorthSouthNorthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitNorthSouthSouthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayExitNorthSouthSouthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayNorthSouthNorthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayNorthSouthNorthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayNorthSouthSouthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayDrivewayNorthSouthSouthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayExitEastWestEastside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayExitEastWestEastside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayExitEastWestEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayExitEastWestWestside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayExitEastWestWestside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayExitEastWestWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayExitNorthSouthNorthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayExitNorthSouthNorthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayExitNorthSouthSouthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayExitNorthSouthSouthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05EastWestNorthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05EastWestNorthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05EastWestNorthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05EastWestSouthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05EastWestSouthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05EastWestSouthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05NorthSouthEastside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05NorthSouthEastside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05NorthSouthEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05NorthSouthWestside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05NorthSouthWestside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor05NorthSouthWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloor1EastWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloor1NorthSouth.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor2EastWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloor2EastWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor2EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor2NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloor2NorthSouth.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloor2NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayEastWestEastside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayEastWestEastside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayEastWestEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayEastWestWestside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayEastWestWestside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayEastWestWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitEastWestEastside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitEastWestEastside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitEastWestEastside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitEastWestWestside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitEastWestWestside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitEastWestWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitNorthSouthNorthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitNorthSouthNorthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitNorthSouthSouthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayExitNorthSouthSouthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayNorthSouthNorthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayNorthSouthNorthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayNorthSouthSouthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorDrivewayNorthSouthSouthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitEastWestEast.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitEastWestEast.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitEastWestEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitEastWestWestside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitEastWestWestside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitEastWestWestside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitNorthSouthNorthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitNorthSouthNorthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitNorthSouthSouthside.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorExitNorthSouthSouthside.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLNorthEast.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLNorthWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLSouthEast.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLSouthWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTNorthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTNorthEastWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTNorthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTNorthSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTNorthSouthEast.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTNorthSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTNorthSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTNorthSouthWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTNorthSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTSouthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTSouthEastWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorTSouthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayFloorXNorthEastSouthWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayFloorXNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportHighwayLNorthEast.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayLNorthWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportHighwayLSouthEast.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayLSouthWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayTNorthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayTNorthEastWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayTNorthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayTNorthSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportHighwayTNorthSouthEast.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayTNorthSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayTNorthSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayTNorthSouthWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayTNorthSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayTSouthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayTSouthEastWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayTSouthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportHighwayXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportHighwayXNorthEastSouthWest.json deleted file mode 100644 index 8debc914..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportHighwayXNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportHighway" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_EastTram_West.json b/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_EastTram_West.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_EastTram_West.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_NorthTram_South.json b/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_NorthTram_South.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_NorthTram_South.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_SouthTram_North.json b/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_SouthTram_North.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_SouthTram_North.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_WestTram_East.json b/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_WestTram_East.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicConnectorHightram_TramHightram_WestTram_East.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightram1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightram1EastWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightram1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightram1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightram1NorthSouth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightram1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramEEast.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramEEast.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramEEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramENorth.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramENorth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramENorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramESouth.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramESouth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramESouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramEWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramEWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramEWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramLNorthEast.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramLNorthWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramLSouthEast.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramLSouthWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramStationEastWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramStationEastWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramStationEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramStationNorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramStationNorthSouth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramStationNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicHightramXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicHightramXNorthEastSouthWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicHightramXNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram1EastWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram1NorthSouth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramEEast.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramEEast.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramEEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramENorth.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramENorth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramENorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramESouth.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramESouth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramESouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramEWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramEWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramEWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramLNorthEast.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramLNorthWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramLSouthEast.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramLSouthWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramStationEastWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramStationEastWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramStationEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramStationNorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramStationNorthSouth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramStationNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTramXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicTramXNorthEastSouthWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTramXNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_road1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_road1EastWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_road1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_road1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_road1NorthSouth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_road1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadEEast.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadEEast.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadEEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadENorth.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadENorth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadENorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadESouth.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadESouth.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadESouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadEWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadEWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadEWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLNorthEast.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLNorthWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLSouthEast.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLSouthWest.json deleted file mode 100644 index 014bedac..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportPublicTram_on_roadLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportPublic" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoad1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportRoad1EastWest.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoad1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoad1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportRoad1NorthSouth.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoad1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadEEast.json b/src/main/resources/assets/imsm/models/block/TransportRoadEEast.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadEEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadENorth.json b/src/main/resources/assets/imsm/models/block/TransportRoadENorth.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadENorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadESouth.json b/src/main/resources/assets/imsm/models/block/TransportRoadESouth.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadESouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadEWest.json b/src/main/resources/assets/imsm/models/block/TransportRoadEWest.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadEWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportRoadLNorthEast.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportRoadLNorthWest.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportRoadLSouthEast.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportRoadLSouthWest.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadTNorthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportRoadTNorthEastWest.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadTNorthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadTNorthSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportRoadTNorthSouthEast.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadTNorthSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadTNorthSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportRoadTNorthSouthWest.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadTNorthSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadTSouthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportRoadTSouthEastWest.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadTSouthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportRoadXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportRoadXNorthEastSouthWest.json deleted file mode 100644 index 2127cdef..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportRoadXNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportRoad" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreet1EastWest.json b/src/main/resources/assets/imsm/models/block/TransportStreet1EastWest.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreet1EastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreet1NorthSouth.json b/src/main/resources/assets/imsm/models/block/TransportStreet1NorthSouth.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreet1NorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetEEast.json b/src/main/resources/assets/imsm/models/block/TransportStreetEEast.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetEEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetENorth.json b/src/main/resources/assets/imsm/models/block/TransportStreetENorth.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetENorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetESouth.json b/src/main/resources/assets/imsm/models/block/TransportStreetESouth.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetESouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetEWest.json b/src/main/resources/assets/imsm/models/block/TransportStreetEWest.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetEWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetLNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportStreetLNorthEast.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetLNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetLNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportStreetLNorthWest.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetLNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetLSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportStreetLSouthEast.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetLSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetLSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportStreetLSouthWest.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetLSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetRoundaboutNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportStreetRoundaboutNorthEastSouthWest.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetRoundaboutNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetTNorthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportStreetTNorthEastWest.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetTNorthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetTNorthSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportStreetTNorthSouthEast.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetTNorthSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetTNorthSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportStreetTNorthSouthWest.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetTNorthSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetTSouthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportStreetTSouthEastWest.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetTSouthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportStreetXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportStreetXNorthEastSouthWest.json deleted file mode 100644 index 5f59bd74..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportStreetXNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportStreet" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater1CornerNorthEast.json b/src/main/resources/assets/imsm/models/block/TransportWater1CornerNorthEast.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater1CornerNorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater1CornerNorthWest.json b/src/main/resources/assets/imsm/models/block/TransportWater1CornerNorthWest.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater1CornerNorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater1CornerSouthEast.json b/src/main/resources/assets/imsm/models/block/TransportWater1CornerSouthEast.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater1CornerSouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater1CornerSouthWest.json b/src/main/resources/assets/imsm/models/block/TransportWater1CornerSouthWest.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater1CornerSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater2CornerEast.json b/src/main/resources/assets/imsm/models/block/TransportWater2CornerEast.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater2CornerEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater2CornerNorth.json b/src/main/resources/assets/imsm/models/block/TransportWater2CornerNorth.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater2CornerNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater2CornerSouth.json b/src/main/resources/assets/imsm/models/block/TransportWater2CornerSouth.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater2CornerSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater2CornerWest.json b/src/main/resources/assets/imsm/models/block/TransportWater2CornerWest.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater2CornerWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater3CornerNorthEast_NorthWest_SouthEast.json b/src/main/resources/assets/imsm/models/block/TransportWater3CornerNorthEast_NorthWest_SouthEast.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater3CornerNorthEast_NorthWest_SouthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater3CornerNorthEast_NorthWest_SouthWest.json b/src/main/resources/assets/imsm/models/block/TransportWater3CornerNorthEast_NorthWest_SouthWest.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater3CornerNorthEast_NorthWest_SouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater3CornerSouthEast_SouthWest_NorthEast.json b/src/main/resources/assets/imsm/models/block/TransportWater3CornerSouthEast_SouthWest_NorthEast.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater3CornerSouthEast_SouthWest_NorthEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater3CornerSouthEast_SouthWest_NorthWest.json b/src/main/resources/assets/imsm/models/block/TransportWater3CornerSouthEast_SouthWest_NorthWest.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater3CornerSouthEast_SouthWest_NorthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/TransportWater4CornerNorthSouthEastWest.json b/src/main/resources/assets/imsm/models/block/TransportWater4CornerNorthSouthEastWest.json deleted file mode 100644 index 379ed5bc..00000000 --- a/src/main/resources/assets/imsm/models/block/TransportWater4CornerNorthSouthEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/TransportWater" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearEast.json b/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearEast.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearNorth.json b/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearNorth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearSouth.json b/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearSouth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearWest.json b/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_NuclearWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalEast.json b/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalEast.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalNorth.json b/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalNorth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalSouth.json b/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalSouth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalWest.json b/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_OilCoalWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_SunNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/UtilityPower_SunNorthEastSouthWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_SunNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_WindEast.json b/src/main/resources/assets/imsm/models/block/UtilityPower_WindEast.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_WindEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_WindNorth.json b/src/main/resources/assets/imsm/models/block/UtilityPower_WindNorth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_WindNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_WindSouth.json b/src/main/resources/assets/imsm/models/block/UtilityPower_WindSouth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_WindSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPower_WindWest.json b/src/main/resources/assets/imsm/models/block/UtilityPower_WindWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPower_WindWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPumpjackEastWest.json b/src/main/resources/assets/imsm/models/block/UtilityPumpjackEastWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPumpjackEastWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityPumpjackNorthSouth.json b/src/main/resources/assets/imsm/models/block/UtilityPumpjackNorthSouth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityPumpjackNorthSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningEast.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningEast.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningNorth.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningNorth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningSouth.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningSouth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningWest.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_BurningWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapEast.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapEast.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapNorth.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapNorth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapSouth.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapSouth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapWest.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_HeapWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleEast.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleEast.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleNorth.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleNorth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleSouth.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleSouth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleWest.json b/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityScrap_RecycleWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityWater_PumpEast.json b/src/main/resources/assets/imsm/models/block/UtilityWater_PumpEast.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityWater_PumpEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityWater_PumpNorth.json b/src/main/resources/assets/imsm/models/block/UtilityWater_PumpNorth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityWater_PumpNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityWater_PumpSouth.json b/src/main/resources/assets/imsm/models/block/UtilityWater_PumpSouth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityWater_PumpSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityWater_PumpWest.json b/src/main/resources/assets/imsm/models/block/UtilityWater_PumpWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityWater_PumpWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityWater_TowerNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/block/UtilityWater_TowerNorthEastSouthWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityWater_TowerNorthEastSouthWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentEast.json b/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentEast.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentEast.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentNorth.json b/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentNorth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentNorth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentSouth.json b/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentSouth.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentSouth.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentWest.json b/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentWest.json deleted file mode 100644 index 4fba7cb5..00000000 --- a/src/main/resources/assets/imsm/models/block/UtilityWater_TreatmentWest.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/Utility" - } -} diff --git a/src/main/resources/assets/imsm/models/block/WoodenHouse.json b/src/main/resources/assets/imsm/models/block/WoodenHouse.json deleted file mode 100644 index 81daf13f..00000000 --- a/src/main/resources/assets/imsm/models/block/WoodenHouse.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "imsm:blocks/BlockMegaHouse" - } -} diff --git a/src/main/resources/assets/imsm/models/block/blockairballoon.json b/src/main/resources/assets/imsm/models/block/blockairballoon.json new file mode 100644 index 00000000..00e84744 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockairballoon.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockairballoon"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockairplane.json b/src/main/resources/assets/imsm/models/block/blockairplane.json new file mode 100644 index 00000000..e2daa7a9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockairplane.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockairplane"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockapplepie.json b/src/main/resources/assets/imsm/models/block/blockapplepie.json new file mode 100644 index 00000000..0931c8bf --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockapplepie.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockapplepie"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockarena1.json b/src/main/resources/assets/imsm/models/block/blockarena1.json new file mode 100644 index 00000000..997fc6ae --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockarena1.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockarena1"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockarena2.json b/src/main/resources/assets/imsm/models/block/blockarena2.json new file mode 100644 index 00000000..5e7542a1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockarena2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockarena2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockatlantis.json b/src/main/resources/assets/imsm/models/block/blockatlantis.json new file mode 100644 index 00000000..5ac1819a --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockatlantis.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/wg"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockbigpyramid.json b/src/main/resources/assets/imsm/models/block/blockbigpyramid.json new file mode 100644 index 00000000..b7ee57aa --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockbigpyramid.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockbigpyramid"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockbigworld.json b/src/main/resources/assets/imsm/models/block/blockbigworld.json new file mode 100644 index 00000000..5ac1819a --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockbigworld.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/wg"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockblackrock.json b/src/main/resources/assets/imsm/models/block/blockblackrock.json new file mode 100644 index 00000000..e254200f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockblackrock.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockblackrock"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockboat.json b/src/main/resources/assets/imsm/models/block/blockboat.json new file mode 100644 index 00000000..7078acc6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockboat.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/boat"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockbunker.json b/src/main/resources/assets/imsm/models/block/blockbunker.json new file mode 100644 index 00000000..126f4b2f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockbunker.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockbunker"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockcactus2.json b/src/main/resources/assets/imsm/models/block/blockcactus2.json new file mode 100644 index 00000000..e449f16b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockcactus2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockcactus2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockcake2.json b/src/main/resources/assets/imsm/models/block/blockcake2.json new file mode 100644 index 00000000..76b662de --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockcake2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockcake2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockcastletower.json b/src/main/resources/assets/imsm/models/block/blockcastletower.json new file mode 100644 index 00000000..6dfef9ca --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockcastletower.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockcastletower"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockcave.json b/src/main/resources/assets/imsm/models/block/blockcave.json new file mode 100644 index 00000000..3898bea2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockcave.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockcave"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockchallengeeight.json b/src/main/resources/assets/imsm/models/block/blockchallengeeight.json new file mode 100644 index 00000000..acdadf2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockchallengeeight.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/challenge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockchallengefive.json b/src/main/resources/assets/imsm/models/block/blockchallengefive.json new file mode 100644 index 00000000..acdadf2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockchallengefive.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/challenge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockchallengefour.json b/src/main/resources/assets/imsm/models/block/blockchallengefour.json new file mode 100644 index 00000000..acdadf2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockchallengefour.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/challenge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockchallengenine.json b/src/main/resources/assets/imsm/models/block/blockchallengenine.json new file mode 100644 index 00000000..acdadf2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockchallengenine.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/challenge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockchallengeone.json b/src/main/resources/assets/imsm/models/block/blockchallengeone.json new file mode 100644 index 00000000..acdadf2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockchallengeone.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/challenge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockchallengeseven.json b/src/main/resources/assets/imsm/models/block/blockchallengeseven.json new file mode 100644 index 00000000..acdadf2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockchallengeseven.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/challenge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockchallengesix.json b/src/main/resources/assets/imsm/models/block/blockchallengesix.json new file mode 100644 index 00000000..acdadf2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockchallengesix.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/challenge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockchallengeten.json b/src/main/resources/assets/imsm/models/block/blockchallengeten.json new file mode 100644 index 00000000..acdadf2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockchallengeten.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/challenge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockchallengethree.json b/src/main/resources/assets/imsm/models/block/blockchallengethree.json new file mode 100644 index 00000000..acdadf2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockchallengethree.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/challenge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockchallengetwo.json b/src/main/resources/assets/imsm/models/block/blockchallengetwo.json new file mode 100644 index 00000000..acdadf2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockchallengetwo.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/challenge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockcheckerboard.json b/src/main/resources/assets/imsm/models/block/blockcheckerboard.json new file mode 100644 index 00000000..769e8401 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockcheckerboard.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockcheckerboard"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockcloud.json b/src/main/resources/assets/imsm/models/block/blockcloud.json new file mode 100644 index 00000000..5ac1819a --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockcloud.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/wg"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockcolumn.json b/src/main/resources/assets/imsm/models/block/blockcolumn.json new file mode 100644 index 00000000..9a672b26 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockcolumn.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockcolumn"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockcosyhouse.json b/src/main/resources/assets/imsm/models/block/blockcosyhouse.json new file mode 100644 index 00000000..2502a040 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockcosyhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockcosyhouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockdungeon.json b/src/main/resources/assets/imsm/models/block/blockdungeon.json new file mode 100644 index 00000000..a48908d2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockdungeon.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockdungeon"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockenchantmentroom.json b/src/main/resources/assets/imsm/models/block/blockenchantmentroom.json new file mode 100644 index 00000000..493f04e8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockenchantmentroom.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockenchantmentroom"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockfarm.json b/src/main/resources/assets/imsm/models/block/blockfarm.json new file mode 100644 index 00000000..29a459c7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockfarm.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockfarm"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockfarm2.json b/src/main/resources/assets/imsm/models/block/blockfarm2.json new file mode 100644 index 00000000..489842fe --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockfarm2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockfarm2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockfarm3.json b/src/main/resources/assets/imsm/models/block/blockfarm3.json new file mode 100644 index 00000000..9ba0dbe3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockfarm3.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockfarm3"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockfarm4.json b/src/main/resources/assets/imsm/models/block/blockfarm4.json new file mode 100644 index 00000000..730a9f74 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockfarm4.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockfarm4"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockferriswheel.json b/src/main/resources/assets/imsm/models/block/blockferriswheel.json new file mode 100644 index 00000000..08b0b1f8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockferriswheel.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/fair"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockfloatingsphere.json b/src/main/resources/assets/imsm/models/block/blockfloatingsphere.json new file mode 100644 index 00000000..eaf0b660 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockfloatingsphere.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockfloatingsphere"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockgianttree.json b/src/main/resources/assets/imsm/models/block/blockgianttree.json new file mode 100644 index 00000000..246bef7c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockgianttree.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockgianttree"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockglasshouse.json b/src/main/resources/assets/imsm/models/block/blockglasshouse.json new file mode 100644 index 00000000..eae50c5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockglasshouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockglasshouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockhountedhouse.json b/src/main/resources/assets/imsm/models/block/blockhountedhouse.json new file mode 100644 index 00000000..960c532f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockhountedhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockhountedhouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockhouse.json b/src/main/resources/assets/imsm/models/block/blockhouse.json new file mode 100644 index 00000000..d5671c54 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockhouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockhouse2.json b/src/main/resources/assets/imsm/models/block/blockhouse2.json new file mode 100644 index 00000000..f660e0f6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockhouse2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockhouse2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockhousetrap1.json b/src/main/resources/assets/imsm/models/block/blockhousetrap1.json new file mode 100644 index 00000000..d4029ee0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockhousetrap1.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockhousetrap1"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockhousetrap2.json b/src/main/resources/assets/imsm/models/block/blockhousetrap2.json new file mode 100644 index 00000000..49f58772 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockhousetrap2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockhousetrap2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockleaves2.json b/src/main/resources/assets/imsm/models/block/blockleaves2.json new file mode 100644 index 00000000..70f37f60 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockleaves2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockleaves2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blocklighthouse.json b/src/main/resources/assets/imsm/models/block/blocklighthouse.json new file mode 100644 index 00000000..1fbe2425 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blocklighthouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blocklighthouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockmegahouse.json b/src/main/resources/assets/imsm/models/block/blockmegahouse.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockmegahouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockmegahouse2.json b/src/main/resources/assets/imsm/models/block/blockmegahouse2.json new file mode 100644 index 00000000..6d09918d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockmegahouse2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockmegatower.json b/src/main/resources/assets/imsm/models/block/blockmegatower.json new file mode 100644 index 00000000..398c9f94 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockmegatower.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegatower"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockpeniron.json b/src/main/resources/assets/imsm/models/block/blockpeniron.json new file mode 100644 index 00000000..0281b6a9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockpeniron.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockpeniron"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockpennether.json b/src/main/resources/assets/imsm/models/block/blockpennether.json new file mode 100644 index 00000000..671e73a2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockpennether.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockpennether"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockpenwood.json b/src/main/resources/assets/imsm/models/block/blockpenwood.json new file mode 100644 index 00000000..e9a83a1c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockpenwood.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockpenwood"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockplane.json b/src/main/resources/assets/imsm/models/block/blockplane.json new file mode 100644 index 00000000..1b36f9ea --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockplane.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockplane"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockprison.json b/src/main/resources/assets/imsm/models/block/blockprison.json new file mode 100644 index 00000000..a77baee6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockprison.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockprison"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockprison2.json b/src/main/resources/assets/imsm/models/block/blockprison2.json new file mode 100644 index 00000000..12935c41 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockprison2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockprison2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockpyramid.json b/src/main/resources/assets/imsm/models/block/blockpyramid.json new file mode 100644 index 00000000..3c31b0d2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockpyramid.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockpyramid"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockremoverlast.json b/src/main/resources/assets/imsm/models/block/blockremoverlast.json new file mode 100644 index 00000000..00e84744 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockremoverlast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockairballoon"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockrollercoaster.json b/src/main/resources/assets/imsm/models/block/blockrollercoaster.json new file mode 100644 index 00000000..f11df859 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockrollercoaster.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockrollercoaster"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockrollercoaster2.json b/src/main/resources/assets/imsm/models/block/blockrollercoaster2.json new file mode 100644 index 00000000..e1e9e3fc --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockrollercoaster2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockrollercoaster2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockshelter.json b/src/main/resources/assets/imsm/models/block/blockshelter.json new file mode 100644 index 00000000..a6830a19 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockshelter.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockshelter"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockskyscraper.json b/src/main/resources/assets/imsm/models/block/blockskyscraper.json new file mode 100644 index 00000000..5e57152f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockskyscraper.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockskyscraper"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockskyscraper2.json b/src/main/resources/assets/imsm/models/block/blockskyscraper2.json new file mode 100644 index 00000000..7bc0ac59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockskyscraper2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockskyscraper2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockstadium.json b/src/main/resources/assets/imsm/models/block/blockstadium.json new file mode 100644 index 00000000..7f7bb29e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockstadium.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockstadium"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockstadium2.json b/src/main/resources/assets/imsm/models/block/blockstadium2.json new file mode 100644 index 00000000..8476aad3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockstadium2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockstadium2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockstandardbrickhouse.json b/src/main/resources/assets/imsm/models/block/blockstandardbrickhouse.json new file mode 100644 index 00000000..ccc7d2b4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockstandardbrickhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockstandardbrickhouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockstorehouse.json b/src/main/resources/assets/imsm/models/block/blockstorehouse.json new file mode 100644 index 00000000..c080de86 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockstorehouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockstorehouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockstreet.json b/src/main/resources/assets/imsm/models/block/blockstreet.json new file mode 100644 index 00000000..3cc543c6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockstreet.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blocktorch2.json b/src/main/resources/assets/imsm/models/block/blocktorch2.json new file mode 100644 index 00000000..000ff99a --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blocktorch2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blocktorch2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blocktouchable.json b/src/main/resources/assets/imsm/models/block/blocktouchable.json new file mode 100644 index 00000000..1dba65c5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blocktouchable.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/dead"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blocktower.json b/src/main/resources/assets/imsm/models/block/blocktower.json new file mode 100644 index 00000000..f08fe6d3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blocktower.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blocktower"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockunlimited.json b/src/main/resources/assets/imsm/models/block/blockunlimited.json new file mode 100644 index 00000000..82e62ef2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockunlimited.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockunlimited"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/blockwaterslide.json b/src/main/resources/assets/imsm/models/block/blockwaterslide.json new file mode 100644 index 00000000..7f47fee0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/blockwaterslide.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockwaterslide"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/christmashouse.json b/src/main/resources/assets/imsm/models/block/christmashouse.json new file mode 100644 index 00000000..b38c5259 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/christmashouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/christmas"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/christmashouse2.json b/src/main/resources/assets/imsm/models/block/christmashouse2.json new file mode 100644 index 00000000..b38c5259 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/christmashouse2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/christmas"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/christmashouse3.json b/src/main/resources/assets/imsm/models/block/christmashouse3.json new file mode 100644 index 00000000..b38c5259 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/christmashouse3.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/christmas"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/christmasmarket.json b/src/main/resources/assets/imsm/models/block/christmasmarket.json new file mode 100644 index 00000000..b38c5259 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/christmasmarket.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/christmas"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/christmassleigh.json b/src/main/resources/assets/imsm/models/block/christmassleigh.json new file mode 100644 index 00000000..b38c5259 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/christmassleigh.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/christmas"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/christmassleigh2.json b/src/main/resources/assets/imsm/models/block/christmassleigh2.json new file mode 100644 index 00000000..b38c5259 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/christmassleigh2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/christmas"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/christmassnowman.json b/src/main/resources/assets/imsm/models/block/christmassnowman.json new file mode 100644 index 00000000..b38c5259 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/christmassnowman.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/christmas"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/christmastree.json b/src/main/resources/assets/imsm/models/block/christmastree.json new file mode 100644 index 00000000..b38c5259 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/christmastree.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/christmas"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationgrassnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/decorationgrassnortheastsouthwest.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationgrassnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparkeast.json b/src/main/resources/assets/imsm/models/block/decorationparkeast.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparkeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparkinggarageeast.json b/src/main/resources/assets/imsm/models/block/decorationparkinggarageeast.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparkinggarageeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparkinggaragenorth.json b/src/main/resources/assets/imsm/models/block/decorationparkinggaragenorth.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparkinggaragenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparkinggaragesouth.json b/src/main/resources/assets/imsm/models/block/decorationparkinggaragesouth.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparkinggaragesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparkinggaragewest.json b/src/main/resources/assets/imsm/models/block/decorationparkinggaragewest.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparkinggaragewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparkinglotseast.json b/src/main/resources/assets/imsm/models/block/decorationparkinglotseast.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparkinglotseast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparkinglotsnorth.json b/src/main/resources/assets/imsm/models/block/decorationparkinglotsnorth.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparkinglotsnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparkinglotssouth.json b/src/main/resources/assets/imsm/models/block/decorationparkinglotssouth.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparkinglotssouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparkinglotswest.json b/src/main/resources/assets/imsm/models/block/decorationparkinglotswest.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparkinglotswest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparknorth.json b/src/main/resources/assets/imsm/models/block/decorationparknorth.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparknorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparksouth.json b/src/main/resources/assets/imsm/models/block/decorationparksouth.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparksouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationparkwest.json b/src/main/resources/assets/imsm/models/block/decorationparkwest.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationparkwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationplazafountainnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/decorationplazafountainnortheastsouthwest.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationplazafountainnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationplazanortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/decorationplazanortheastsouthwest.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationplazanortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationsoccerstadiumeastwest.json b/src/main/resources/assets/imsm/models/block/decorationsoccerstadiumeastwest.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationsoccerstadiumeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationsoccerstadiumnorthsouth.json b/src/main/resources/assets/imsm/models/block/decorationsoccerstadiumnorthsouth.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationsoccerstadiumnorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationsquarenortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/decorationsquarenortheastsouthwest.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationsquarenortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationsquaretreeeast.json b/src/main/resources/assets/imsm/models/block/decorationsquaretreeeast.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationsquaretreeeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationsquaretreenorth.json b/src/main/resources/assets/imsm/models/block/decorationsquaretreenorth.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationsquaretreenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationsquaretreesouth.json b/src/main/resources/assets/imsm/models/block/decorationsquaretreesouth.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationsquaretreesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/decorationsquaretreewest.json b/src/main/resources/assets/imsm/models/block/decorationsquaretreewest.json new file mode 100644 index 00000000..bd7c3d98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/decorationsquaretreewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/decoration"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/foodcarrotseastwest.json b/src/main/resources/assets/imsm/models/block/foodcarrotseastwest.json new file mode 100644 index 00000000..01254ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/foodcarrotseastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/food"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/foodcarrotsnorthsouth.json b/src/main/resources/assets/imsm/models/block/foodcarrotsnorthsouth.json new file mode 100644 index 00000000..01254ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/foodcarrotsnorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/food"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/foodfarmeast.json b/src/main/resources/assets/imsm/models/block/foodfarmeast.json new file mode 100644 index 00000000..01254ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/foodfarmeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/food"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/foodfarmnorth.json b/src/main/resources/assets/imsm/models/block/foodfarmnorth.json new file mode 100644 index 00000000..01254ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/foodfarmnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/food"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/foodfarmsouth.json b/src/main/resources/assets/imsm/models/block/foodfarmsouth.json new file mode 100644 index 00000000..01254ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/foodfarmsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/food"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/foodfarmwest.json b/src/main/resources/assets/imsm/models/block/foodfarmwest.json new file mode 100644 index 00000000..01254ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/foodfarmwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/food"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/foodpotatoesnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/foodpotatoesnortheastsouthwest.json new file mode 100644 index 00000000..01254ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/foodpotatoesnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/food"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/foodstableeastwest.json b/src/main/resources/assets/imsm/models/block/foodstableeastwest.json new file mode 100644 index 00000000..01254ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/foodstableeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/food"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/foodstablenorthsouth.json b/src/main/resources/assets/imsm/models/block/foodstablenorthsouth.json new file mode 100644 index 00000000..01254ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/foodstablenorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/food"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/foodwheatnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/foodwheatnortheastsouthwest.json new file mode 100644 index 00000000..01254ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/foodwheatnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/food"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densityblueeast.json b/src/main/resources/assets/imsm/models/block/industryhigh_densityblueeast.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densityblueeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitybluenorth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitybluenorth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitybluenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitybluesouth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitybluesouth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitybluesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitybluewest.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitybluewest.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitybluewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitybrickeast.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitybrickeast.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitybricknorth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitybricknorth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitybricksouth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitybricksouth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitybrickwest.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitybrickwest.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneyeast.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneyeast.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneyeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneynorth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneynorth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneynorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneysouth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneysouth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneysouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneywest.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneywest.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitychimneywest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipeast.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipeast.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipnorth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipnorth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipsouth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipsouth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipwest.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipwest.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitycomputerchipwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitygreeneast.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitygreeneast.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitygreennorth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitygreennorth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitygreensouth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitygreensouth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitygreenwest.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitygreenwest.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitylightblueeast.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitylightblueeast.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitylightblueeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitylightbluenorth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitylightbluenorth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitylightbluenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitylightbluesouth.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitylightbluesouth.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitylightbluesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industryhigh_densitylightbluewest.json b/src/main/resources/assets/imsm/models/block/industryhigh_densitylightbluewest.json new file mode 100644 index 00000000..c68942a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industryhigh_densitylightbluewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industryhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingeast.json b/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingeast.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingnorth.json b/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingnorth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingsouth.json b/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingsouth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingwest.json b/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingwest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_density3dprintingwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densityblueeast.json b/src/main/resources/assets/imsm/models/block/industrylow_densityblueeast.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densityblueeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybluenorth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybluenorth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybluenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybluesouth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybluesouth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybluesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybluewest.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybluewest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybluewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrickeast.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrickeast.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrickeastwest.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrickeastwest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrickeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybricknorth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybricknorth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybricknorthsouth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybricknorthsouth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybricknorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybricksouth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybricksouth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrickwest.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrickwest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrowneast.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrowneast.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrowneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrowneast2.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrowneast2.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrowneast2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrownnorth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownnorth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrownnorth2.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownnorth2.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownnorth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrownsouth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownsouth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrownsouth2.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownsouth2.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownsouth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrownwest.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownwest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitybrownwest2.json b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownwest2.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitybrownwest2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitychimneyeast.json b/src/main/resources/assets/imsm/models/block/industrylow_densitychimneyeast.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitychimneyeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitychimneynorth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitychimneynorth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitychimneynorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitychimneysouth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitychimneysouth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitychimneysouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitychimneywest.json b/src/main/resources/assets/imsm/models/block/industrylow_densitychimneywest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitychimneywest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitygreeneast.json b/src/main/resources/assets/imsm/models/block/industrylow_densitygreeneast.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitygreennorth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitygreennorth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitygreensouth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitygreensouth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitygreenwest.json b/src/main/resources/assets/imsm/models/block/industrylow_densitygreenwest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densityironeast.json b/src/main/resources/assets/imsm/models/block/industrylow_densityironeast.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densityironeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densityironnorth.json b/src/main/resources/assets/imsm/models/block/industrylow_densityironnorth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densityironnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densityironsouth.json b/src/main/resources/assets/imsm/models/block/industrylow_densityironsouth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densityironsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densityironwest.json b/src/main/resources/assets/imsm/models/block/industrylow_densityironwest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densityironwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennaeast.json b/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennaeast.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennaeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennanorth.json b/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennanorth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennanorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennasouth.json b/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennasouth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennasouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennawest.json b/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennawest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densityparabolicantennawest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitytanknortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/industrylow_densitytanknortheastsouthwest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitytanknortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopeeast.json b/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopeeast.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopeeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopenorth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopenorth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopesouth.json b/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopesouth.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopewest.json b/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopewest.json new file mode 100644 index 00000000..494f1b35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrylow_densitytelescopewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrylow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densityblueeast.json b/src/main/resources/assets/imsm/models/block/industrymedium_densityblueeast.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densityblueeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybluenorth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybluenorth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybluenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybluesouth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybluesouth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybluesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybluewest.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybluewest.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybluewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybrickeast.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrickeast.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybricknorth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybricknorth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybricksouth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybricksouth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybrickwest.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrickwest.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybrowneast.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrowneast.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrowneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybrownnorth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrownnorth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrownnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybrownsouth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrownsouth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrownsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitybrownwest.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrownwest.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitybrownwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitychemicalpresseastwest.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitychemicalpresseastwest.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitychemicalpresseastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitychemicalpressnorthsouth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitychemicalpressnorthsouth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitychemicalpressnorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneyeast.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneyeast.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneyeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneynorth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneynorth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneynorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneysouth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneysouth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneysouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneywest.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneywest.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitychimneywest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitygreeneast.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitygreeneast.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitygreennorth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitygreennorth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitygreensouth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitygreensouth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitygreenwest.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitygreenwest.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densityiceeast.json b/src/main/resources/assets/imsm/models/block/industrymedium_densityiceeast.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densityiceeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densityicenorth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densityicenorth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densityicenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densityicesouth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densityicesouth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densityicesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densityicewest.json b/src/main/resources/assets/imsm/models/block/industrymedium_densityicewest.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densityicewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstoneeast.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstoneeast.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstoneeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstonenorth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstonenorth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstonenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstonesouth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstonesouth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstonesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstonewest.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstonewest.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitysandstonewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitytankeast.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitytankeast.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitytankeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitytanknorth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitytanknorth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitytanknorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitytanksouth.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitytanksouth.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitytanksouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/industrymedium_densitytankwest.json b/src/main/resources/assets/imsm/models/block/industrymedium_densitytankwest.json new file mode 100644 index 00000000..8b2dd427 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/industrymedium_densitytankwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/industrymedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/live_bus.json b/src/main/resources/assets/imsm/models/block/live_bus.json new file mode 100644 index 00000000..c2eefdcd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/live_bus.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/bus"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/live_bus2.json b/src/main/resources/assets/imsm/models/block/live_bus2.json new file mode 100644 index 00000000..91732b78 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/live_bus2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/bus2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/live_cinema.json b/src/main/resources/assets/imsm/models/block/live_cinema.json new file mode 100644 index 00000000..2c9aaef3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/live_cinema.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/cinema"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/live_fair_freefall.json b/src/main/resources/assets/imsm/models/block/live_fair_freefall.json new file mode 100644 index 00000000..08b0b1f8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/live_fair_freefall.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/fair"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/live_flying_helicopter.json b/src/main/resources/assets/imsm/models/block/live_flying_helicopter.json new file mode 100644 index 00000000..b458dd3d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/live_flying_helicopter.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/helicopter"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/live_helicopter.json b/src/main/resources/assets/imsm/models/block/live_helicopter.json new file mode 100644 index 00000000..b458dd3d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/live_helicopter.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/helicopter"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/live_mill.json b/src/main/resources/assets/imsm/models/block/live_mill.json new file mode 100644 index 00000000..65b34118 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/live_mill.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/windmill"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/live_power_windmill_east.json b/src/main/resources/assets/imsm/models/block/live_power_windmill_east.json new file mode 100644 index 00000000..0a61f8fe --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/live_power_windmill_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/windmill2"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/live_watermill.json b/src/main/resources/assets/imsm/models/block/live_watermill.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/live_watermill.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/liveairballoon.json b/src/main/resources/assets/imsm/models/block/liveairballoon.json new file mode 100644 index 00000000..2b504c30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/liveairballoon.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportairport"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/liveairplane.json b/src/main/resources/assets/imsm/models/block/liveairplane.json new file mode 100644 index 00000000..2b504c30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/liveairplane.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportairport"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/liveboat.json b/src/main/resources/assets/imsm/models/block/liveboat.json new file mode 100644 index 00000000..7078acc6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/liveboat.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/boat"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/liveflyingship.json b/src/main/resources/assets/imsm/models/block/liveflyingship.json new file mode 100644 index 00000000..2b504c30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/liveflyingship.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportairport"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/liveflyingship2.json b/src/main/resources/assets/imsm/models/block/liveflyingship2.json new file mode 100644 index 00000000..2b504c30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/liveflyingship2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportairport"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/liveplane.json b/src/main/resources/assets/imsm/models/block/liveplane.json new file mode 100644 index 00000000..2b504c30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/liveplane.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportairport"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/livestructureremover.json b/src/main/resources/assets/imsm/models/block/livestructureremover.json new file mode 100644 index 00000000..9a1c8726 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/livestructureremover.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/removerspiraal"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densitybrickeastwest.json b/src/main/resources/assets/imsm/models/block/officehigh_densitybrickeastwest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densitybrickeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densitybricknorthsouth.json b/src/main/resources/assets/imsm/models/block/officehigh_densitybricknorthsouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densitybricknorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densitycyaneast.json b/src/main/resources/assets/imsm/models/block/officehigh_densitycyaneast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densitycyaneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densitycyannorth.json b/src/main/resources/assets/imsm/models/block/officehigh_densitycyannorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densitycyannorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densitycyansouth.json b/src/main/resources/assets/imsm/models/block/officehigh_densitycyansouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densitycyansouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densitycyanwest.json b/src/main/resources/assets/imsm/models/block/officehigh_densitycyanwest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densitycyanwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopeast.json b/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopeast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopnorth.json b/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopnorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopsouth.json b/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopsouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopwest.json b/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopwest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densityholeontopwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densitylightblueeastwest.json b/src/main/resources/assets/imsm/models/block/officehigh_densitylightblueeastwest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densitylightblueeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densitylightbluenorthsouth.json b/src/main/resources/assets/imsm/models/block/officehigh_densitylightbluenorthsouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densitylightbluenorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingeast.json b/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingeast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingnorth.json b/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingnorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingsouth.json b/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingsouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingwest.json b/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingwest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officehigh_densityspirolbuildingwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densityblueeast.json b/src/main/resources/assets/imsm/models/block/officelow_densityblueeast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densityblueeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitybluenorth.json b/src/main/resources/assets/imsm/models/block/officelow_densitybluenorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitybluenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitybluesouth.json b/src/main/resources/assets/imsm/models/block/officelow_densitybluesouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitybluesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitybluewest.json b/src/main/resources/assets/imsm/models/block/officelow_densitybluewest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitybluewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitygreeneast.json b/src/main/resources/assets/imsm/models/block/officelow_densitygreeneast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitygreennorth.json b/src/main/resources/assets/imsm/models/block/officelow_densitygreennorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitygreensouth.json b/src/main/resources/assets/imsm/models/block/officelow_densitygreensouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitygreenwest.json b/src/main/resources/assets/imsm/models/block/officelow_densitygreenwest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitywhiteeast.json b/src/main/resources/assets/imsm/models/block/officelow_densitywhiteeast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitywhiteeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitywhitenorth.json b/src/main/resources/assets/imsm/models/block/officelow_densitywhitenorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitywhitenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitywhitesouth.json b/src/main/resources/assets/imsm/models/block/officelow_densitywhitesouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitywhitesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densitywhitewest.json b/src/main/resources/assets/imsm/models/block/officelow_densitywhitewest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densitywhitewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densityyelloweast.json b/src/main/resources/assets/imsm/models/block/officelow_densityyelloweast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densityyelloweast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densityyellownorth.json b/src/main/resources/assets/imsm/models/block/officelow_densityyellownorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densityyellownorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densityyellowsouth.json b/src/main/resources/assets/imsm/models/block/officelow_densityyellowsouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densityyellowsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officelow_densityyellowwest.json b/src/main/resources/assets/imsm/models/block/officelow_densityyellowwest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officelow_densityyellowwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitycyaneast.json b/src/main/resources/assets/imsm/models/block/officemedium_densitycyaneast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitycyaneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitycyannorth.json b/src/main/resources/assets/imsm/models/block/officemedium_densitycyannorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitycyannorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitycyansouth.json b/src/main/resources/assets/imsm/models/block/officemedium_densitycyansouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitycyansouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitycyanwest.json b/src/main/resources/assets/imsm/models/block/officemedium_densitycyanwest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitycyanwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitylightblueeast.json b/src/main/resources/assets/imsm/models/block/officemedium_densitylightblueeast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitylightblueeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitylightbluenorth.json b/src/main/resources/assets/imsm/models/block/officemedium_densitylightbluenorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitylightbluenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitylightbluesouth.json b/src/main/resources/assets/imsm/models/block/officemedium_densitylightbluesouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitylightbluesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitylightbluewest.json b/src/main/resources/assets/imsm/models/block/officemedium_densitylightbluewest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitylightbluewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitypinkeast.json b/src/main/resources/assets/imsm/models/block/officemedium_densitypinkeast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitypinkeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitypinknorth.json b/src/main/resources/assets/imsm/models/block/officemedium_densitypinknorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitypinknorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitypinksouth.json b/src/main/resources/assets/imsm/models/block/officemedium_densitypinksouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitypinksouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitypinkwest.json b/src/main/resources/assets/imsm/models/block/officemedium_densitypinkwest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitypinkwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitysandstoneeast.json b/src/main/resources/assets/imsm/models/block/officemedium_densitysandstoneeast.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitysandstoneeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitysandstonenorth.json b/src/main/resources/assets/imsm/models/block/officemedium_densitysandstonenorth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitysandstonenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitysandstonesouth.json b/src/main/resources/assets/imsm/models/block/officemedium_densitysandstonesouth.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitysandstonesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/officemedium_densitysandstonewest.json b/src/main/resources/assets/imsm/models/block/officemedium_densitysandstonewest.json new file mode 100644 index 00000000..6929bba0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/officemedium_densitysandstonewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/office"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/otherbrickhouse.json b/src/main/resources/assets/imsm/models/block/otherbrickhouse.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/otherbrickhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/othergrandhouse.json b/src/main/resources/assets/imsm/models/block/othergrandhouse.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/othergrandhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/otherlighthouse.json b/src/main/resources/assets/imsm/models/block/otherlighthouse.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/otherlighthouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/otherstable.json b/src/main/resources/assets/imsm/models/block/otherstable.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/otherstable.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/othersurvivorhouse.json b/src/main/resources/assets/imsm/models/block/othersurvivorhouse.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/othersurvivorhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/othersurvivorhouse2.json b/src/main/resources/assets/imsm/models/block/othersurvivorhouse2.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/othersurvivorhouse2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/othersurvivorhouse3.json b/src/main/resources/assets/imsm/models/block/othersurvivorhouse3.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/othersurvivorhouse3.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/othersurvivorhouse4.json b/src/main/resources/assets/imsm/models/block/othersurvivorhouse4.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/othersurvivorhouse4.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/othersurvivorhouse5.json b/src/main/resources/assets/imsm/models/block/othersurvivorhouse5.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/othersurvivorhouse5.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/othersurvivorhouse6.json b/src/main/resources/assets/imsm/models/block/othersurvivorhouse6.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/othersurvivorhouse6.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/othersurvivorhouse7.json b/src/main/resources/assets/imsm/models/block/othersurvivorhouse7.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/othersurvivorhouse7.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/othersurvivorhouse8.json b/src/main/resources/assets/imsm/models/block/othersurvivorhouse8.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/othersurvivorhouse8.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/othertemple.json b/src/main/resources/assets/imsm/models/block/othertemple.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/othertemple.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicfireservicebigeast.json b/src/main/resources/assets/imsm/models/block/publicfireservicebigeast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicfireservicebigeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicfireservicebignorth.json b/src/main/resources/assets/imsm/models/block/publicfireservicebignorth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicfireservicebignorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicfireservicebigsouth.json b/src/main/resources/assets/imsm/models/block/publicfireservicebigsouth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicfireservicebigsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicfireservicebigwest.json b/src/main/resources/assets/imsm/models/block/publicfireservicebigwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicfireservicebigwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicfireservicesmalleast.json b/src/main/resources/assets/imsm/models/block/publicfireservicesmalleast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicfireservicesmalleast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicfireservicesmallnorth.json b/src/main/resources/assets/imsm/models/block/publicfireservicesmallnorth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicfireservicesmallnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicfireservicesmallsouth.json b/src/main/resources/assets/imsm/models/block/publicfireservicesmallsouth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicfireservicesmallsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicfireservicesmallwest.json b/src/main/resources/assets/imsm/models/block/publicfireservicesmallwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicfireservicesmallwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publichospitalbigeast.json b/src/main/resources/assets/imsm/models/block/publichospitalbigeast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publichospitalbigeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publichospitalbignorth.json b/src/main/resources/assets/imsm/models/block/publichospitalbignorth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publichospitalbignorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publichospitalbigsouth.json b/src/main/resources/assets/imsm/models/block/publichospitalbigsouth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publichospitalbigsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publichospitalbigwest.json b/src/main/resources/assets/imsm/models/block/publichospitalbigwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publichospitalbigwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publichospitalsmalleast.json b/src/main/resources/assets/imsm/models/block/publichospitalsmalleast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publichospitalsmalleast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publichospitalsmallnorth.json b/src/main/resources/assets/imsm/models/block/publichospitalsmallnorth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publichospitalsmallnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publichospitalsmallsouth.json b/src/main/resources/assets/imsm/models/block/publichospitalsmallsouth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publichospitalsmallsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publichospitalsmallwest.json b/src/main/resources/assets/imsm/models/block/publichospitalsmallwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publichospitalsmallwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publiclibraryeastwest.json b/src/main/resources/assets/imsm/models/block/publiclibraryeastwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publiclibraryeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publiclibrarynorthsouth.json b/src/main/resources/assets/imsm/models/block/publiclibrarynorthsouth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publiclibrarynorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicpolicebigeast.json b/src/main/resources/assets/imsm/models/block/publicpolicebigeast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicpolicebigeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicpolicebignorth.json b/src/main/resources/assets/imsm/models/block/publicpolicebignorth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicpolicebignorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicpolicebigsouth.json b/src/main/resources/assets/imsm/models/block/publicpolicebigsouth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicpolicebigsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicpolicebigwest.json b/src/main/resources/assets/imsm/models/block/publicpolicebigwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicpolicebigwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicpolicesmalleast.json b/src/main/resources/assets/imsm/models/block/publicpolicesmalleast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicpolicesmalleast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicpolicesmallnorth.json b/src/main/resources/assets/imsm/models/block/publicpolicesmallnorth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicpolicesmallnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicpolicesmallsouth.json b/src/main/resources/assets/imsm/models/block/publicpolicesmallsouth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicpolicesmallsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicpolicesmallwest.json b/src/main/resources/assets/imsm/models/block/publicpolicesmallwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicpolicesmallwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicschoolbignortheast.json b/src/main/resources/assets/imsm/models/block/publicschoolbignortheast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicschoolbignortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicschoolbignorthwest.json b/src/main/resources/assets/imsm/models/block/publicschoolbignorthwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicschoolbignorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicschoolbigsoutheast.json b/src/main/resources/assets/imsm/models/block/publicschoolbigsoutheast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicschoolbigsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicschoolbigsouthwest.json b/src/main/resources/assets/imsm/models/block/publicschoolbigsouthwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicschoolbigsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicschoolsmallnortheast.json b/src/main/resources/assets/imsm/models/block/publicschoolsmallnortheast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicschoolsmallnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicschoolsmallnorthwest.json b/src/main/resources/assets/imsm/models/block/publicschoolsmallnorthwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicschoolsmallnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicschoolsmallsoutheast.json b/src/main/resources/assets/imsm/models/block/publicschoolsmallsoutheast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicschoolsmallsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicschoolsmallsouthwest.json b/src/main/resources/assets/imsm/models/block/publicschoolsmallsouthwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicschoolsmallsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publictownhallbigeastwest.json b/src/main/resources/assets/imsm/models/block/publictownhallbigeastwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publictownhallbigeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publictownhallbignorthsouth.json b/src/main/resources/assets/imsm/models/block/publictownhallbignorthsouth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publictownhallbignorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publictownhallsmalleast.json b/src/main/resources/assets/imsm/models/block/publictownhallsmalleast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publictownhallsmalleast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publictownhallsmallnorth.json b/src/main/resources/assets/imsm/models/block/publictownhallsmallnorth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publictownhallsmallnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publictownhallsmallsouth.json b/src/main/resources/assets/imsm/models/block/publictownhallsmallsouth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publictownhallsmallsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publictownhallsmallwest.json b/src/main/resources/assets/imsm/models/block/publictownhallsmallwest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publictownhallsmallwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicuniversityeast.json b/src/main/resources/assets/imsm/models/block/publicuniversityeast.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicuniversityeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicuniversitynorth.json b/src/main/resources/assets/imsm/models/block/publicuniversitynorth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicuniversitynorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicuniversitysouth.json b/src/main/resources/assets/imsm/models/block/publicuniversitysouth.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicuniversitysouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/publicuniversitywest.json b/src/main/resources/assets/imsm/models/block/publicuniversitywest.json new file mode 100644 index 00000000..62f50e08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/publicuniversitywest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/public"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomairballoon2.json b/src/main/resources/assets/imsm/models/block/randomairballoon2.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomairballoon2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randombuildingcomplex.json b/src/main/resources/assets/imsm/models/block/randombuildingcomplex.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randombuildingcomplex.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomentrance.json b/src/main/resources/assets/imsm/models/block/randomentrance.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomentrance.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomflyingship.json b/src/main/resources/assets/imsm/models/block/randomflyingship.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomflyingship.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomgreentent.json b/src/main/resources/assets/imsm/models/block/randomgreentent.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomgreentent.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomgreytent.json b/src/main/resources/assets/imsm/models/block/randomgreytent.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomgreytent.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomimmense_buildingcomplex.json b/src/main/resources/assets/imsm/models/block/randomimmense_buildingcomplex.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomimmense_buildingcomplex.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomimmense_greenroof.json b/src/main/resources/assets/imsm/models/block/randomimmense_greenroof.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomimmense_greenroof.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomimmense_white_house.json b/src/main/resources/assets/imsm/models/block/randomimmense_white_house.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomimmense_white_house.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomimmense_workingbuilding.json b/src/main/resources/assets/imsm/models/block/randomimmense_workingbuilding.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomimmense_workingbuilding.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomlighthouse.json b/src/main/resources/assets/imsm/models/block/randomlighthouse.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomlighthouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomlittlepalace.json b/src/main/resources/assets/imsm/models/block/randomlittlepalace.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomlittlepalace.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomlittlewoodencabin.json b/src/main/resources/assets/imsm/models/block/randomlittlewoodencabin.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomlittlewoodencabin.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomminertent.json b/src/main/resources/assets/imsm/models/block/randomminertent.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomminertent.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomnetherentrancesurvival.json b/src/main/resources/assets/imsm/models/block/randomnetherentrancesurvival.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomnetherentrancesurvival.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomrandombrickhouse.json b/src/main/resources/assets/imsm/models/block/randomrandombrickhouse.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomrandombrickhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomsandstonebuilding.json b/src/main/resources/assets/imsm/models/block/randomsandstonebuilding.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomsandstonebuilding.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomsandstonechurch.json b/src/main/resources/assets/imsm/models/block/randomsandstonechurch.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomsandstonechurch.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomsandstonewithfarm.json b/src/main/resources/assets/imsm/models/block/randomsandstonewithfarm.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomsandstonewithfarm.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomsimplesandstone.json b/src/main/resources/assets/imsm/models/block/randomsimplesandstone.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomsimplesandstone.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomspawnhouseprod.json b/src/main/resources/assets/imsm/models/block/randomspawnhouseprod.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomspawnhouseprod.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomsurvivalhouse1.json b/src/main/resources/assets/imsm/models/block/randomsurvivalhouse1.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomsurvivalhouse1.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomsurvivalhousesandstone.json b/src/main/resources/assets/imsm/models/block/randomsurvivalhousesandstone.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomsurvivalhousesandstone.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomtentcamp.json b/src/main/resources/assets/imsm/models/block/randomtentcamp.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomtentcamp.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomwoodenhouse.json b/src/main/resources/assets/imsm/models/block/randomwoodenhouse.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomwoodenhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/randomwoodenstonebrickhouse.json b/src/main/resources/assets/imsm/models/block/randomwoodenstonebrickhouse.json new file mode 100644 index 00000000..b0559628 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/randomwoodenstonebrickhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/random"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover16.json b/src/main/resources/assets/imsm/models/block/remover16.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover16.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover16256.json b/src/main/resources/assets/imsm/models/block/remover16256.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover16256.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover1632.json b/src/main/resources/assets/imsm/models/block/remover1632.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover1632.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover168.json b/src/main/resources/assets/imsm/models/block/remover168.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover168.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover32.json b/src/main/resources/assets/imsm/models/block/remover32.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover32.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover3216.json b/src/main/resources/assets/imsm/models/block/remover3216.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover3216.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover32256.json b/src/main/resources/assets/imsm/models/block/remover32256.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover32256.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover328.json b/src/main/resources/assets/imsm/models/block/remover328.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover328.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover64.json b/src/main/resources/assets/imsm/models/block/remover64.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover64.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover64256.json b/src/main/resources/assets/imsm/models/block/remover64256.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover64256.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover8.json b/src/main/resources/assets/imsm/models/block/remover8.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover8.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover816.json b/src/main/resources/assets/imsm/models/block/remover816.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover816.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover8256.json b/src/main/resources/assets/imsm/models/block/remover8256.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover8256.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/remover832.json b/src/main/resources/assets/imsm/models/block/remover832.json new file mode 100644 index 00000000..5cf41b5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/remover832.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/remover"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/removerlast.json b/src/main/resources/assets/imsm/models/block/removerlast.json new file mode 100644 index 00000000..93f92450 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/removerlast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/removerarrow"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densityblocknortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densityblocknortheastsouthwest.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densityblocknortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbigeast.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbigeast.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbigeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbignorth.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbignorth.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbignorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbigsouth.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbigsouth.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbigsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbigwest.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbigwest.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitybrickbigwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitybricksmallnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitybricksmallnortheastsouthwest.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitybricksmallnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreyeast.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreyeast.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreyeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreynorth.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreynorth.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreynorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreysouth.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreysouth.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreysouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreywest.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreywest.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitygreywest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitymoderneast.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitymoderneast.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitymoderneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitymodernnorth.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitymodernnorth.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitymodernnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitymodernsouth.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitymodernsouth.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitymodernsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitymodernwest.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitymodernwest.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitymodernwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densityredeastwest.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densityredeastwest.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densityredeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densityrednorthsouth.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densityrednorthsouth.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densityrednorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densityroundnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densityroundnortheastsouthwest.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densityroundnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitystoneeast.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystoneeast.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystoneeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitystoneeast2.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystoneeast2.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystoneeast2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonenorth.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonenorth.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonenorth2.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonenorth2.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonenorth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonesouth.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonesouth.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonesouth2.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonesouth2.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonesouth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonewest.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonewest.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonewest2.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonewest2.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densitystonewest2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalenormous_densityyellownortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/residentalenormous_densityyellownortheastsouthwest.json new file mode 100644 index 00000000..27d9464f --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalenormous_densityyellownortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalenormous_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityblueeast.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityblueeast.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityblueeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityblueeastwest.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityblueeastwest.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityblueeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluenorth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluenorth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluenorthsouth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluenorthsouth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluenorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluesouth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluesouth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluewest.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluewest.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybluewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitybrickeast.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybrickeast.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitybrickeastwest.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybrickeastwest.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybrickeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitybricknorth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybricknorth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitybricknorthsouth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybricknorthsouth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybricknorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitybricksouth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybricksouth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitybrickwest.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybrickwest.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreyeast.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreyeast.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreyeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreynorth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreynorth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreynorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreysouth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreysouth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreysouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreywest.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreywest.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitygreengreywest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornernortheast.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornernortheast.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornernortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornernorthwest.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornernorthwest.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornernorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornersoutheast.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornersoutheast.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornersoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornersouthwest.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornersouthwest.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredcornersouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyelloweast.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyelloweast.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyelloweast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyellownorth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyellownorth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyellownorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyellowsouth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyellowsouth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyellowsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyellowwest.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyellowwest.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityredyellowwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitystoneeast.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystoneeast.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystoneeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitystoneeast2.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystoneeast2.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystoneeast2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonenorth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonenorth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonenorth2.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonenorth2.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonenorth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonesouth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonesouth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonesouth2.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonesouth2.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonesouth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonewest.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonewest.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonewest2.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonewest2.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densitystonewest2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityyelloweast.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityyelloweast.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityyelloweast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityyellownorth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityyellownorth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityyellownorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityyellowsouth.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityyellowsouth.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityyellowsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalhigh_densityyellowwest.json b/src/main/resources/assets/imsm/models/block/residentalhigh_densityyellowwest.json new file mode 100644 index 00000000..95734adb --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalhigh_densityyellowwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalhigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitybeigeeast.json b/src/main/resources/assets/imsm/models/block/residentallow_densitybeigeeast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitybeigeeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitybeigenorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitybeigenorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitybeigenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitybeigesouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitybeigesouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitybeigesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitybeigewest.json b/src/main/resources/assets/imsm/models/block/residentallow_densitybeigewest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitybeigewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitycyaneast.json b/src/main/resources/assets/imsm/models/block/residentallow_densitycyaneast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitycyaneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitycyannorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitycyannorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitycyannorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitycyansouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitycyansouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitycyansouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitycyanwest.json b/src/main/resources/assets/imsm/models/block/residentallow_densitycyanwest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitycyanwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitygreeneast.json b/src/main/resources/assets/imsm/models/block/residentallow_densitygreeneast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitygreeneast2.json b/src/main/resources/assets/imsm/models/block/residentallow_densitygreeneast2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitygreeneast2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitygreennorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitygreennorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitygreennorth2.json b/src/main/resources/assets/imsm/models/block/residentallow_densitygreennorth2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitygreennorth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitygreensouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitygreensouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitygreensouth2.json b/src/main/resources/assets/imsm/models/block/residentallow_densitygreensouth2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitygreensouth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitygreenwest.json b/src/main/resources/assets/imsm/models/block/residentallow_densitygreenwest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitygreenwest2.json b/src/main/resources/assets/imsm/models/block/residentallow_densitygreenwest2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitygreenwest2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightblueeast.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightblueeast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightblueeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightblueeast2.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightblueeast2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightblueeast2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluenorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluenorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluenorth2.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluenorth2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluenorth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluesouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluesouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluesouth2.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluesouth2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluesouth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluewest.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluewest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluewest2.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluewest2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightbluewest2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreyeast.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreyeast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreyeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreynorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreynorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreynorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreysouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreysouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreysouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreywest.json b/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreywest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitylightgreywest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitymoderneast.json b/src/main/resources/assets/imsm/models/block/residentallow_densitymoderneast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitymoderneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitymodernnorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitymodernnorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitymodernnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitymodernsouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitymodernsouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitymodernsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitymodernwest.json b/src/main/resources/assets/imsm/models/block/residentallow_densitymodernwest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitymodernwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityorangeeast.json b/src/main/resources/assets/imsm/models/block/residentallow_densityorangeeast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityorangeeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityorangenorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densityorangenorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityorangenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityorangesouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densityorangesouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityorangesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityorangewest.json b/src/main/resources/assets/imsm/models/block/residentallow_densityorangewest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityorangewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityredeast.json b/src/main/resources/assets/imsm/models/block/residentallow_densityredeast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityredeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityrednorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densityrednorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityrednorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityredsouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densityredsouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityredsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityredwest.json b/src/main/resources/assets/imsm/models/block/residentallow_densityredwest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityredwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitystoneeast.json b/src/main/resources/assets/imsm/models/block/residentallow_densitystoneeast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitystoneeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitystonenorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitystonenorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitystonenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitystonesouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitystonesouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitystonesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitystonewest.json b/src/main/resources/assets/imsm/models/block/residentallow_densitystonewest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitystonewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitywhiteeast.json b/src/main/resources/assets/imsm/models/block/residentallow_densitywhiteeast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitywhiteeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitywhitenorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitywhitenorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitywhitenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitywhitesouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitywhitesouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitywhitesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitywhitewest.json b/src/main/resources/assets/imsm/models/block/residentallow_densitywhitewest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitywhitewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitywoodeast.json b/src/main/resources/assets/imsm/models/block/residentallow_densitywoodeast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitywoodeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitywoodnorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitywoodnorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitywoodnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitywoodsouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densitywoodsouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitywoodsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densitywoodwest.json b/src/main/resources/assets/imsm/models/block/residentallow_densitywoodwest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densitywoodwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityyelloweast.json b/src/main/resources/assets/imsm/models/block/residentallow_densityyelloweast.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityyelloweast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityyelloweast2.json b/src/main/resources/assets/imsm/models/block/residentallow_densityyelloweast2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityyelloweast2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityyellownorth.json b/src/main/resources/assets/imsm/models/block/residentallow_densityyellownorth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityyellownorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityyellownorth2.json b/src/main/resources/assets/imsm/models/block/residentallow_densityyellownorth2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityyellownorth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityyellowsouth.json b/src/main/resources/assets/imsm/models/block/residentallow_densityyellowsouth.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityyellowsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityyellowsouth2.json b/src/main/resources/assets/imsm/models/block/residentallow_densityyellowsouth2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityyellowsouth2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityyellowwest.json b/src/main/resources/assets/imsm/models/block/residentallow_densityyellowwest.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityyellowwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentallow_densityyellowwest2.json b/src/main/resources/assets/imsm/models/block/residentallow_densityyellowwest2.json new file mode 100644 index 00000000..177e897d --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentallow_densityyellowwest2.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentallow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreeneast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreeneast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreeneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreennorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreennorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreennorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreensouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreensouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreensouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreenwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreenwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluegreenwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityblueredeast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityblueredeast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityblueredeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluerednorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluerednorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybluerednorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityblueredsouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityblueredsouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityblueredsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityblueredwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityblueredwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityblueredwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitybrickeast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybrickeast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitybricknorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybricknorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitybricksouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybricksouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitybrickwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybrickwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontaleast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontaleast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontaleast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontalnorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontalnorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontalnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontalsouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontalsouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontalsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontalwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontalwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityhorizontalwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreeneast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreeneast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreeneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreennorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreennorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreennorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreensouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreensouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreensouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreenwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreenwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityorangegreenwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartzeast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartzeast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartzeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartznorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartznorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartznorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartzsouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartzsouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartzsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartzwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartzwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityquartzwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreeneast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreeneast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreeneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreennorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreennorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreennorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreensouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreensouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreensouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreenwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreenwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityredgreenwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofeast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofeast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofnorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofnorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofsouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofsouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityroofwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone1eastwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone1eastwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone1northsouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone1northsouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone2eastwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone2eastwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone2eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone2northsouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone2northsouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystone2northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornernortheast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornernortheast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornernortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornernorthwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornernorthwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornernorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornersoutheast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornersoutheast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornersoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornersouthwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornersouthwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonecornersouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneeast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneeast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendnortheastwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendnortheastwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendnortheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendnorthsoutheast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendnorthsoutheast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendnorthsouthwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendnorthsouthwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendsoutheastwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendsoutheastwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystoneendsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonenorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonenorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonesouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonesouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonewest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonewest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densitystonewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticaleast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticaleast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticaleast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticalnorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticalnorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticalnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticalsouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticalsouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticalsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticalwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticalwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityverticalwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowredeast.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowredeast.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowredeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowrednorth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowrednorth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowrednorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowredsouth.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowredsouth.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowredsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowredwest.json b/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowredwest.json new file mode 100644 index 00000000..5bf63f7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/residentalmedium_densityyellowredwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/residentalmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinghigh_densityquartzeastwest.json b/src/main/resources/assets/imsm/models/block/shoppinghigh_densityquartzeastwest.json new file mode 100644 index 00000000..b4fc7bfd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinghigh_densityquartzeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinghigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinghigh_densityquartznorthsouth.json b/src/main/resources/assets/imsm/models/block/shoppinghigh_densityquartznorthsouth.json new file mode 100644 index 00000000..b4fc7bfd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinghigh_densityquartznorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinghigh_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitybrickeast.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitybrickeast.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitybricknorth.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitybricknorth.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitybricksouth.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitybricksouth.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitybrickwest.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitybrickwest.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreeneast.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreeneast.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreennorth.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreennorth.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreensouth.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreensouth.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreenwest.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreenwest.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangeeast.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangeeast.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangeeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangenorth.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangenorth.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangesouth.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangesouth.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangewest.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangewest.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densityorangewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinkeast.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinkeast.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinkeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinknorth.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinknorth.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinknorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinksouth.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinksouth.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinksouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinkwest.json b/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinkwest.json new file mode 100644 index 00000000..e1ecba8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppinglow_densitypinkwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppinglow_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymoderneast.json b/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymoderneast.json new file mode 100644 index 00000000..b00226f9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymoderneast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppingmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymodernnorth.json b/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymodernnorth.json new file mode 100644 index 00000000..b00226f9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymodernnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppingmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymodernsouth.json b/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymodernsouth.json new file mode 100644 index 00000000..b00226f9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymodernsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppingmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymodernwest.json b/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymodernwest.json new file mode 100644 index 00000000..b00226f9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppingmedium_densitymodernwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppingmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartzeast.json b/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartzeast.json new file mode 100644 index 00000000..b00226f9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartzeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppingmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartznorth.json b/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartznorth.json new file mode 100644 index 00000000..b00226f9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartznorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppingmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartzsouth.json b/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartzsouth.json new file mode 100644 index 00000000..b00226f9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartzsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppingmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartzwest.json b/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartzwest.json new file mode 100644 index 00000000..b00226f9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/shoppingmedium_densityquartzwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/shoppingmedium_density"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/survivalsmallbuilding.json b/src/main/resources/assets/imsm/models/block/survivalsmallbuilding.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/survivalsmallbuilding.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/survivalwoodenhouse.json b/src/main/resources/assets/imsm/models/block/survivalwoodenhouse.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/survivalwoodenhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportairportrunway_eastwestbuilding_north.json b/src/main/resources/assets/imsm/models/block/transportairportrunway_eastwestbuilding_north.json new file mode 100644 index 00000000..2b504c30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportairportrunway_eastwestbuilding_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportairport"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportairportrunway_eastwestbuilding_south.json b/src/main/resources/assets/imsm/models/block/transportairportrunway_eastwestbuilding_south.json new file mode 100644 index 00000000..2b504c30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportairportrunway_eastwestbuilding_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportairport"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportairportrunway_northsouthbuilding_east.json b/src/main/resources/assets/imsm/models/block/transportairportrunway_northsouthbuilding_east.json new file mode 100644 index 00000000..2b504c30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportairportrunway_northsouthbuilding_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportairport"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportairportrunway_northsouthbuilding_west.json b/src/main/resources/assets/imsm/models/block/transportairportrunway_northsouthbuilding_west.json new file mode 100644 index 00000000..2b504c30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportairportrunway_northsouthbuilding_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportairport"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenue1eastwest.json b/src/main/resources/assets/imsm/models/block/transportavenue1eastwest.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenue1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenue1northsouth.json b/src/main/resources/assets/imsm/models/block/transportavenue1northsouth.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenue1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenue2eastwest.json b/src/main/resources/assets/imsm/models/block/transportavenue2eastwest.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenue2eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenue2northsouth.json b/src/main/resources/assets/imsm/models/block/transportavenue2northsouth.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenue2northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenueeeast.json b/src/main/resources/assets/imsm/models/block/transportavenueeeast.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenueeeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenueenorth.json b/src/main/resources/assets/imsm/models/block/transportavenueenorth.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenueenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenueesouth.json b/src/main/resources/assets/imsm/models/block/transportavenueesouth.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenueesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenueewest.json b/src/main/resources/assets/imsm/models/block/transportavenueewest.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenueewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenuelnortheast.json b/src/main/resources/assets/imsm/models/block/transportavenuelnortheast.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenuelnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenuelnorthwest.json b/src/main/resources/assets/imsm/models/block/transportavenuelnorthwest.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenuelnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenuelsoutheast.json b/src/main/resources/assets/imsm/models/block/transportavenuelsoutheast.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenuelsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenuelsouthwest.json b/src/main/resources/assets/imsm/models/block/transportavenuelsouthwest.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenuelsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenuetnortheastwest.json b/src/main/resources/assets/imsm/models/block/transportavenuetnortheastwest.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenuetnortheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenuetnorthsoutheast.json b/src/main/resources/assets/imsm/models/block/transportavenuetnorthsoutheast.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenuetnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenuetnorthsouthwest.json b/src/main/resources/assets/imsm/models/block/transportavenuetnorthsouthwest.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenuetnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenuetsoutheastwest.json b/src/main/resources/assets/imsm/models/block/transportavenuetsoutheastwest.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenuetsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportavenuexnorthsoutheastwest.json b/src/main/resources/assets/imsm/models/block/transportavenuexnorthsoutheastwest.json new file mode 100644 index 00000000..96881f22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportavenuexnorthsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportavenue"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenue1eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenue1eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenue1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenue1northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenue1northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenue1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenue2northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenue2northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenue2northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenue2southwest.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenue2southwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenue2southwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenue3eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenue3eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenue3eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenue3northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenue3northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenue3northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenue4eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenue4eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenue4eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenue4northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenue4northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenue4northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenuelnortheast.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenuelnortheast.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenuelnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenuelnorthwest.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenuelnorthwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenuelnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenuelsoutheast.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenuelsoutheast.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenuelsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeavenuelsouthwest.json b/src/main/resources/assets/imsm/models/block/transportbridgeavenuelsouthwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeavenuelsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighway1eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgehighway1eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighway1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighway1northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgehighway1northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighway1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighway2eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgehighway2eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighway2eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighway2northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgehighway2northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighway2northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighway3eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgehighway3eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighway3eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighway3northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgehighway3northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighway3northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighway4eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgehighway4eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighway4eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighway4northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgehighway4northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighway4northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighwaylnortheast.json b/src/main/resources/assets/imsm/models/block/transportbridgehighwaylnortheast.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighwaylnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighwaylnorthwest.json b/src/main/resources/assets/imsm/models/block/transportbridgehighwaylnorthwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighwaylnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighwaylsoutheast.json b/src/main/resources/assets/imsm/models/block/transportbridgehighwaylsoutheast.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighwaylsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgehighwaylsouthwest.json b/src/main/resources/assets/imsm/models/block/transportbridgehighwaylsouthwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgehighwaylsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeroad1eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgeroad1eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeroad1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeroad1northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgeroad1northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeroad1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeroad2eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgeroad2eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeroad2eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeroad2northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgeroad2northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeroad2northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeroadlnortheast.json b/src/main/resources/assets/imsm/models/block/transportbridgeroadlnortheast.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeroadlnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeroadlnorthwest.json b/src/main/resources/assets/imsm/models/block/transportbridgeroadlnorthwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeroadlnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeroadlsoutheast.json b/src/main/resources/assets/imsm/models/block/transportbridgeroadlsoutheast.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeroadlsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgeroadlsouthwest.json b/src/main/resources/assets/imsm/models/block/transportbridgeroadlsouthwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgeroadlsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgestreet1eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgestreet1eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgestreet1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgestreet1northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgestreet1northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgestreet1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgestreet2eastwest.json b/src/main/resources/assets/imsm/models/block/transportbridgestreet2eastwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgestreet2eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgestreet2northsouth.json b/src/main/resources/assets/imsm/models/block/transportbridgestreet2northsouth.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgestreet2northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgestreetlnortheast.json b/src/main/resources/assets/imsm/models/block/transportbridgestreetlnortheast.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgestreetlnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgestreetlnorthwest.json b/src/main/resources/assets/imsm/models/block/transportbridgestreetlnorthwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgestreetlnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgestreetlsoutheast.json b/src/main/resources/assets/imsm/models/block/transportbridgestreetlsoutheast.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgestreetlsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportbridgestreetlsouthwest.json b/src/main/resources/assets/imsm/models/block/transportbridgestreetlsouthwest.json new file mode 100644 index 00000000..814eb9d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportbridgestreetlsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportbridge"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_eaststreet_northwestside.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_eaststreet_northwestside.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_eaststreet_northwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_eaststreet_southwestside.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_eaststreet_southwestside.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_eaststreet_southwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_northstreet_southeastside.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_northstreet_southeastside.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_northstreet_southeastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_northstreet_southwestside.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_northstreet_southwestside.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_northstreet_southwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_southstreet_northeastside.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_southstreet_northeastside.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_southstreet_northeastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_southstreet_northwestside.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_southstreet_northwestside.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_southstreet_northwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_weststreet_northeastside.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_weststreet_northeastside.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_weststreet_northeastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_weststreet_southeastside.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_weststreet_southeastside.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_street1avenue_weststreet_southeastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_eaststreet_north.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_eaststreet_north.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_eaststreet_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_eaststreet_south.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_eaststreet_south.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_eaststreet_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_northstreet_east.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_northstreet_east.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_northstreet_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_northstreet_west.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_northstreet_west.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_northstreet_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_southstreet_east.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_southstreet_east.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_southstreet_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_southstreet_west.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_southstreet_west.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_southstreet_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_weststreet_north.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_weststreet_north.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_weststreet_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_weststreet_south.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_weststreet_south.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetlavenue_weststreet_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_eaststreet_northsouth.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_eaststreet_northsouth.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_eaststreet_northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_eastweststreet_north.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_eastweststreet_north.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_eastweststreet_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_eastweststreet_south.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_eastweststreet_south.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_eastweststreet_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_northsouthstreet_east.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_northsouthstreet_east.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_northsouthstreet_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_northsouthstreet_west.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_northsouthstreet_west.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_northsouthstreet_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_northstreet_eastwest.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_northstreet_eastwest.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_northstreet_eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_southstreet_eastwest.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_southstreet_eastwest.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_southstreet_eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_weststreet_northsouth.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_weststreet_northsouth.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streettavenue_weststreet_northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetxavenue_eastweststreet_northsouth.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetxavenue_eastweststreet_northsouth.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetxavenue_eastweststreet_northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest.json b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_eastavenue_west.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_eastavenue_west.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_eastavenue_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_northavenue_south.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_northavenue_south.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_northavenue_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_southavenue_north.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_southavenue_north.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_southavenue_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_westavenue_east.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_westavenue_east.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_avenuebridge_westavenue_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_eastroad_west.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_eastroad_west.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_eastroad_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_northroad_south.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_northroad_south.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_northroad_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_southroad_north.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_southroad_north.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_southroad_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_westroad_east.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_westroad_east.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_roadbridge_westroad_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_eaststreet_west.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_eaststreet_west.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_eaststreet_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_northstreet_south.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_northstreet_south.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_northstreet_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_southstreet_north.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_southstreet_north.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_southstreet_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_weststreet_east.json b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_weststreet_east.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorbridge_streetbridge_weststreet_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_eastavenue_west.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_eastavenue_west.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_eastavenue_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_northavenue_south.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_northavenue_south.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_northavenue_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_southavenue_north.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_southavenue_north.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_southavenue_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_westavenue_east.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_westavenue_east.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_avenuehighway_westavenue_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east.json b/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east.json new file mode 100644 index 00000000..62832e59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportconnector"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourbigeast.json b/src/main/resources/assets/imsm/models/block/transportharbourbigeast.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourbigeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourbignorth.json b/src/main/resources/assets/imsm/models/block/transportharbourbignorth.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourbignorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourbigsouth.json b/src/main/resources/assets/imsm/models/block/transportharbourbigsouth.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourbigsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourbigwest.json b/src/main/resources/assets/imsm/models/block/transportharbourbigwest.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourbigwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside1cornernortheast.json b/src/main/resources/assets/imsm/models/block/transportharbourside1cornernortheast.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside1cornernortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside1cornernorthwest.json b/src/main/resources/assets/imsm/models/block/transportharbourside1cornernorthwest.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside1cornernorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside1cornersoutheast.json b/src/main/resources/assets/imsm/models/block/transportharbourside1cornersoutheast.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside1cornersoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside1cornersouthwest.json b/src/main/resources/assets/imsm/models/block/transportharbourside1cornersouthwest.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside1cornersouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside2cornercraneeast.json b/src/main/resources/assets/imsm/models/block/transportharbourside2cornercraneeast.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside2cornercraneeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside2cornercranenorth.json b/src/main/resources/assets/imsm/models/block/transportharbourside2cornercranenorth.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside2cornercranenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside2cornercranesouth.json b/src/main/resources/assets/imsm/models/block/transportharbourside2cornercranesouth.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside2cornercranesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside2cornercranewest.json b/src/main/resources/assets/imsm/models/block/transportharbourside2cornercranewest.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside2cornercranewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside2cornereast.json b/src/main/resources/assets/imsm/models/block/transportharbourside2cornereast.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside2cornereast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside2cornernorth.json b/src/main/resources/assets/imsm/models/block/transportharbourside2cornernorth.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside2cornernorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside2cornersouth.json b/src/main/resources/assets/imsm/models/block/transportharbourside2cornersouth.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside2cornersouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside2cornerwest.json b/src/main/resources/assets/imsm/models/block/transportharbourside2cornerwest.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside2cornerwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside3cornernortheast_northwest_southeast.json b/src/main/resources/assets/imsm/models/block/transportharbourside3cornernortheast_northwest_southeast.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside3cornernortheast_northwest_southeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside3cornernortheast_northwest_southwest.json b/src/main/resources/assets/imsm/models/block/transportharbourside3cornernortheast_northwest_southwest.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside3cornernortheast_northwest_southwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside3cornernortheast_southeast_southwest.json b/src/main/resources/assets/imsm/models/block/transportharbourside3cornernortheast_southeast_southwest.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside3cornernortheast_southeast_southwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharbourside3cornernorthwest_southeast_southwest.json b/src/main/resources/assets/imsm/models/block/transportharbourside3cornernorthwest_southeast_southwest.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharbourside3cornernorthwest_southeast_southwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharboursmalleast.json b/src/main/resources/assets/imsm/models/block/transportharboursmalleast.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharboursmalleast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharboursmallnorth.json b/src/main/resources/assets/imsm/models/block/transportharboursmallnorth.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharboursmallnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharboursmallsouth.json b/src/main/resources/assets/imsm/models/block/transportharboursmallsouth.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharboursmallsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportharboursmallwest.json b/src/main/resources/assets/imsm/models/block/transportharboursmallwest.json new file mode 100644 index 00000000..b34812fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportharboursmallwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportharbour"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighway05eastwestnorthside.json b/src/main/resources/assets/imsm/models/block/transporthighway05eastwestnorthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighway05eastwestnorthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighway05eastwestsouthside.json b/src/main/resources/assets/imsm/models/block/transporthighway05eastwestsouthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighway05eastwestsouthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighway05northsoutheastside.json b/src/main/resources/assets/imsm/models/block/transporthighway05northsoutheastside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighway05northsoutheastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighway05northsouthwestside.json b/src/main/resources/assets/imsm/models/block/transporthighway05northsouthwestside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighway05northsouthwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighway1eastwest.json b/src/main/resources/assets/imsm/models/block/transporthighway1eastwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighway1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighway1northsouth.json b/src/main/resources/assets/imsm/models/block/transporthighway1northsouth.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighway1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighway2eastwest.json b/src/main/resources/assets/imsm/models/block/transporthighway2eastwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighway2eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighway2northsouth.json b/src/main/resources/assets/imsm/models/block/transporthighway2northsouth.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighway2northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayeastwesteastside.json b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayeastwesteastside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayeastwesteastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayeastwestwestside.json b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayeastwestwestside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayeastwestwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexiteastwesteastside.json b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexiteastwesteastside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexiteastwesteastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexiteastwestwestside.json b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexiteastwestwestside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexiteastwestwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexitnorthsouthnorthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexitnorthsouthsouthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewayexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaydrivewaynorthsouthnorthside.json b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewaynorthsouthnorthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewaynorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaydrivewaynorthsouthsouthside.json b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewaynorthsouthsouthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaydrivewaynorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayexiteastwesteastside.json b/src/main/resources/assets/imsm/models/block/transporthighwayexiteastwesteastside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayexiteastwesteastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayexiteastwestwestside.json b/src/main/resources/assets/imsm/models/block/transporthighwayexiteastwestwestside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayexiteastwestwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/models/block/transporthighwayexitnorthsouthnorthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/models/block/transporthighwayexitnorthsouthsouthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloor05eastwestnorthside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloor05eastwestnorthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloor05eastwestnorthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloor05eastwestsouthside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloor05eastwestsouthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloor05eastwestsouthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloor05northsoutheastside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloor05northsoutheastside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloor05northsoutheastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloor05northsouthwestside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloor05northsouthwestside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloor05northsouthwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloor1eastwest.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloor1eastwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloor1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloor1northsouth.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloor1northsouth.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloor1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloor2eastwest.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloor2eastwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloor2eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloor2northsouth.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloor2northsouth.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloor2northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayeastwesteastside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayeastwesteastside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayeastwesteastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayeastwestwestside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayeastwestwestside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayeastwestwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexiteastwesteastside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexiteastwesteastside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexiteastwesteastside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexiteastwestwestside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexiteastwestwestside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexiteastwestwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexitnorthsouthnorthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexitnorthsouthsouthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewayexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewaynorthsouthnorthside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewaynorthsouthnorthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewaynorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewaynorthsouthsouthside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewaynorthsouthsouthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloordrivewaynorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloorexiteastwesteast.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloorexiteastwesteast.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloorexiteastwesteast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloorexiteastwestwestside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloorexiteastwestwestside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloorexiteastwestwestside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloorexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloorexitnorthsouthnorthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloorexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloorexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloorexitnorthsouthsouthside.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloorexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloorlnortheast.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloorlnortheast.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloorlnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloorlnorthwest.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloorlnorthwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloorlnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloorlsoutheast.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloorlsoutheast.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloorlsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloorlsouthwest.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloorlsouthwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloorlsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloortnortheastwest.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloortnortheastwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloortnortheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloortnorthsoutheast.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloortnorthsoutheast.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloortnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloortnorthsouthwest.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloortnorthsouthwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloortnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloortsoutheastwest.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloortsoutheastwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloortsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayfloorxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/transporthighwayfloorxnortheastsouthwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayfloorxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaylnortheast.json b/src/main/resources/assets/imsm/models/block/transporthighwaylnortheast.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaylnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaylnorthwest.json b/src/main/resources/assets/imsm/models/block/transporthighwaylnorthwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaylnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaylsoutheast.json b/src/main/resources/assets/imsm/models/block/transporthighwaylsoutheast.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaylsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaylsouthwest.json b/src/main/resources/assets/imsm/models/block/transporthighwaylsouthwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaylsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaytnortheastwest.json b/src/main/resources/assets/imsm/models/block/transporthighwaytnortheastwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaytnortheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaytnorthsoutheast.json b/src/main/resources/assets/imsm/models/block/transporthighwaytnorthsoutheast.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaytnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaytnorthsouthwest.json b/src/main/resources/assets/imsm/models/block/transporthighwaytnorthsouthwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaytnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwaytsoutheastwest.json b/src/main/resources/assets/imsm/models/block/transporthighwaytsoutheastwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwaytsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transporthighwayxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/transporthighwayxnortheastsouthwest.json new file mode 100644 index 00000000..765ba965 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transporthighwayxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transporthighway"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_easttram_west.json b/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_easttram_west.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_easttram_west.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_northtram_south.json b/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_northtram_south.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_northtram_south.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_southtram_north.json b/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_southtram_north.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_southtram_north.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_westtram_east.json b/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_westtram_east.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublicconnectorhightram_tramhightram_westtram_east.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightram1eastwest.json b/src/main/resources/assets/imsm/models/block/transportpublichightram1eastwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightram1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightram1northsouth.json b/src/main/resources/assets/imsm/models/block/transportpublichightram1northsouth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightram1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightrameeast.json b/src/main/resources/assets/imsm/models/block/transportpublichightrameeast.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightrameeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightramenorth.json b/src/main/resources/assets/imsm/models/block/transportpublichightramenorth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightramenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightramesouth.json b/src/main/resources/assets/imsm/models/block/transportpublichightramesouth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightramesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightramewest.json b/src/main/resources/assets/imsm/models/block/transportpublichightramewest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightramewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightramlnortheast.json b/src/main/resources/assets/imsm/models/block/transportpublichightramlnortheast.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightramlnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightramlnorthwest.json b/src/main/resources/assets/imsm/models/block/transportpublichightramlnorthwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightramlnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightramlsoutheast.json b/src/main/resources/assets/imsm/models/block/transportpublichightramlsoutheast.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightramlsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightramlsouthwest.json b/src/main/resources/assets/imsm/models/block/transportpublichightramlsouthwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightramlsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightramstationeastwest.json b/src/main/resources/assets/imsm/models/block/transportpublichightramstationeastwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightramstationeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightramstationnorthsouth.json b/src/main/resources/assets/imsm/models/block/transportpublichightramstationnorthsouth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightramstationnorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublichightramxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/transportpublichightramxnortheastsouthwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublichightramxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram1eastwest.json b/src/main/resources/assets/imsm/models/block/transportpublictram1eastwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram1northsouth.json b/src/main/resources/assets/imsm/models/block/transportpublictram1northsouth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram_on_road1eastwest.json b/src/main/resources/assets/imsm/models/block/transportpublictram_on_road1eastwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram_on_road1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram_on_road1northsouth.json b/src/main/resources/assets/imsm/models/block/transportpublictram_on_road1northsouth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram_on_road1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadeeast.json b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadeeast.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadeeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadenorth.json b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadenorth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadesouth.json b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadesouth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadewest.json b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadewest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlnortheast.json b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlnortheast.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlnorthwest.json b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlnorthwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlsoutheast.json b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlsoutheast.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlsouthwest.json b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlsouthwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictram_on_roadlsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictrameeast.json b/src/main/resources/assets/imsm/models/block/transportpublictrameeast.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictrameeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictramenorth.json b/src/main/resources/assets/imsm/models/block/transportpublictramenorth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictramenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictramesouth.json b/src/main/resources/assets/imsm/models/block/transportpublictramesouth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictramesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictramewest.json b/src/main/resources/assets/imsm/models/block/transportpublictramewest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictramewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictramlnortheast.json b/src/main/resources/assets/imsm/models/block/transportpublictramlnortheast.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictramlnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictramlnorthwest.json b/src/main/resources/assets/imsm/models/block/transportpublictramlnorthwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictramlnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictramlsoutheast.json b/src/main/resources/assets/imsm/models/block/transportpublictramlsoutheast.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictramlsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictramlsouthwest.json b/src/main/resources/assets/imsm/models/block/transportpublictramlsouthwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictramlsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictramstationeastwest.json b/src/main/resources/assets/imsm/models/block/transportpublictramstationeastwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictramstationeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictramstationnorthsouth.json b/src/main/resources/assets/imsm/models/block/transportpublictramstationnorthsouth.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictramstationnorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportpublictramxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/transportpublictramxnortheastsouthwest.json new file mode 100644 index 00000000..607044e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportpublictramxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportpublic"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroad1eastwest.json b/src/main/resources/assets/imsm/models/block/transportroad1eastwest.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroad1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroad1northsouth.json b/src/main/resources/assets/imsm/models/block/transportroad1northsouth.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroad1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadeeast.json b/src/main/resources/assets/imsm/models/block/transportroadeeast.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadeeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadenorth.json b/src/main/resources/assets/imsm/models/block/transportroadenorth.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadesouth.json b/src/main/resources/assets/imsm/models/block/transportroadesouth.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadewest.json b/src/main/resources/assets/imsm/models/block/transportroadewest.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadlnortheast.json b/src/main/resources/assets/imsm/models/block/transportroadlnortheast.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadlnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadlnorthwest.json b/src/main/resources/assets/imsm/models/block/transportroadlnorthwest.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadlnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadlsoutheast.json b/src/main/resources/assets/imsm/models/block/transportroadlsoutheast.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadlsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadlsouthwest.json b/src/main/resources/assets/imsm/models/block/transportroadlsouthwest.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadlsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadtnortheastwest.json b/src/main/resources/assets/imsm/models/block/transportroadtnortheastwest.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadtnortheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadtnorthsoutheast.json b/src/main/resources/assets/imsm/models/block/transportroadtnorthsoutheast.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadtnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadtnorthsouthwest.json b/src/main/resources/assets/imsm/models/block/transportroadtnorthsouthwest.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadtnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadtsoutheastwest.json b/src/main/resources/assets/imsm/models/block/transportroadtsoutheastwest.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadtsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportroadxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/transportroadxnortheastsouthwest.json new file mode 100644 index 00000000..cce206b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportroadxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportroad"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreet1eastwest.json b/src/main/resources/assets/imsm/models/block/transportstreet1eastwest.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreet1eastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreet1northsouth.json b/src/main/resources/assets/imsm/models/block/transportstreet1northsouth.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreet1northsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreeteeast.json b/src/main/resources/assets/imsm/models/block/transportstreeteeast.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreeteeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreetenorth.json b/src/main/resources/assets/imsm/models/block/transportstreetenorth.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreetenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreetesouth.json b/src/main/resources/assets/imsm/models/block/transportstreetesouth.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreetesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreetewest.json b/src/main/resources/assets/imsm/models/block/transportstreetewest.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreetewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreetlnortheast.json b/src/main/resources/assets/imsm/models/block/transportstreetlnortheast.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreetlnortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreetlnorthwest.json b/src/main/resources/assets/imsm/models/block/transportstreetlnorthwest.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreetlnorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreetlsoutheast.json b/src/main/resources/assets/imsm/models/block/transportstreetlsoutheast.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreetlsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreetlsouthwest.json b/src/main/resources/assets/imsm/models/block/transportstreetlsouthwest.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreetlsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreetroundaboutnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/transportstreetroundaboutnortheastsouthwest.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreetroundaboutnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreettnortheastwest.json b/src/main/resources/assets/imsm/models/block/transportstreettnortheastwest.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreettnortheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreettnorthsoutheast.json b/src/main/resources/assets/imsm/models/block/transportstreettnorthsoutheast.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreettnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreettnorthsouthwest.json b/src/main/resources/assets/imsm/models/block/transportstreettnorthsouthwest.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreettnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreettsoutheastwest.json b/src/main/resources/assets/imsm/models/block/transportstreettsoutheastwest.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreettsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportstreetxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/transportstreetxnortheastsouthwest.json new file mode 100644 index 00000000..0d87a1f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportstreetxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportstreet"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater1cornernortheast.json b/src/main/resources/assets/imsm/models/block/transportwater1cornernortheast.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater1cornernortheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater1cornernorthwest.json b/src/main/resources/assets/imsm/models/block/transportwater1cornernorthwest.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater1cornernorthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater1cornersoutheast.json b/src/main/resources/assets/imsm/models/block/transportwater1cornersoutheast.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater1cornersoutheast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater1cornersouthwest.json b/src/main/resources/assets/imsm/models/block/transportwater1cornersouthwest.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater1cornersouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater2cornereast.json b/src/main/resources/assets/imsm/models/block/transportwater2cornereast.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater2cornereast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater2cornernorth.json b/src/main/resources/assets/imsm/models/block/transportwater2cornernorth.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater2cornernorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater2cornersouth.json b/src/main/resources/assets/imsm/models/block/transportwater2cornersouth.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater2cornersouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater2cornerwest.json b/src/main/resources/assets/imsm/models/block/transportwater2cornerwest.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater2cornerwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater3cornernortheast_northwest_southeast.json b/src/main/resources/assets/imsm/models/block/transportwater3cornernortheast_northwest_southeast.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater3cornernortheast_northwest_southeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater3cornernortheast_northwest_southwest.json b/src/main/resources/assets/imsm/models/block/transportwater3cornernortheast_northwest_southwest.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater3cornernortheast_northwest_southwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater3cornersoutheast_southwest_northeast.json b/src/main/resources/assets/imsm/models/block/transportwater3cornersoutheast_southwest_northeast.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater3cornersoutheast_southwest_northeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater3cornersoutheast_southwest_northwest.json b/src/main/resources/assets/imsm/models/block/transportwater3cornersoutheast_southwest_northwest.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater3cornersoutheast_southwest_northwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/transportwater4cornernorthsoutheastwest.json b/src/main/resources/assets/imsm/models/block/transportwater4cornernorthsoutheastwest.json new file mode 100644 index 00000000..fbe532ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/transportwater4cornernorthsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/transportwater"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded0.json b/src/main/resources/assets/imsm/models/block/useradded0.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded0.json +++ b/src/main/resources/assets/imsm/models/block/useradded0.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1.json b/src/main/resources/assets/imsm/models/block/useradded1.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1.json +++ b/src/main/resources/assets/imsm/models/block/useradded1.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded10.json b/src/main/resources/assets/imsm/models/block/useradded10.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded10.json +++ b/src/main/resources/assets/imsm/models/block/useradded10.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded100.json b/src/main/resources/assets/imsm/models/block/useradded100.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded100.json +++ b/src/main/resources/assets/imsm/models/block/useradded100.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1000.json b/src/main/resources/assets/imsm/models/block/useradded1000.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1000.json +++ b/src/main/resources/assets/imsm/models/block/useradded1000.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1001.json b/src/main/resources/assets/imsm/models/block/useradded1001.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1001.json +++ b/src/main/resources/assets/imsm/models/block/useradded1001.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1002.json b/src/main/resources/assets/imsm/models/block/useradded1002.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1002.json +++ b/src/main/resources/assets/imsm/models/block/useradded1002.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1003.json b/src/main/resources/assets/imsm/models/block/useradded1003.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1003.json +++ b/src/main/resources/assets/imsm/models/block/useradded1003.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1004.json b/src/main/resources/assets/imsm/models/block/useradded1004.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1004.json +++ b/src/main/resources/assets/imsm/models/block/useradded1004.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1005.json b/src/main/resources/assets/imsm/models/block/useradded1005.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1005.json +++ b/src/main/resources/assets/imsm/models/block/useradded1005.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1006.json b/src/main/resources/assets/imsm/models/block/useradded1006.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1006.json +++ b/src/main/resources/assets/imsm/models/block/useradded1006.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1007.json b/src/main/resources/assets/imsm/models/block/useradded1007.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1007.json +++ b/src/main/resources/assets/imsm/models/block/useradded1007.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1008.json b/src/main/resources/assets/imsm/models/block/useradded1008.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1008.json +++ b/src/main/resources/assets/imsm/models/block/useradded1008.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1009.json b/src/main/resources/assets/imsm/models/block/useradded1009.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1009.json +++ b/src/main/resources/assets/imsm/models/block/useradded1009.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded101.json b/src/main/resources/assets/imsm/models/block/useradded101.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded101.json +++ b/src/main/resources/assets/imsm/models/block/useradded101.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1010.json b/src/main/resources/assets/imsm/models/block/useradded1010.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1010.json +++ b/src/main/resources/assets/imsm/models/block/useradded1010.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1011.json b/src/main/resources/assets/imsm/models/block/useradded1011.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1011.json +++ b/src/main/resources/assets/imsm/models/block/useradded1011.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1012.json b/src/main/resources/assets/imsm/models/block/useradded1012.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1012.json +++ b/src/main/resources/assets/imsm/models/block/useradded1012.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1013.json b/src/main/resources/assets/imsm/models/block/useradded1013.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1013.json +++ b/src/main/resources/assets/imsm/models/block/useradded1013.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1014.json b/src/main/resources/assets/imsm/models/block/useradded1014.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1014.json +++ b/src/main/resources/assets/imsm/models/block/useradded1014.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1015.json b/src/main/resources/assets/imsm/models/block/useradded1015.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1015.json +++ b/src/main/resources/assets/imsm/models/block/useradded1015.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1016.json b/src/main/resources/assets/imsm/models/block/useradded1016.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1016.json +++ b/src/main/resources/assets/imsm/models/block/useradded1016.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1017.json b/src/main/resources/assets/imsm/models/block/useradded1017.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1017.json +++ b/src/main/resources/assets/imsm/models/block/useradded1017.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1018.json b/src/main/resources/assets/imsm/models/block/useradded1018.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1018.json +++ b/src/main/resources/assets/imsm/models/block/useradded1018.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1019.json b/src/main/resources/assets/imsm/models/block/useradded1019.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1019.json +++ b/src/main/resources/assets/imsm/models/block/useradded1019.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded102.json b/src/main/resources/assets/imsm/models/block/useradded102.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded102.json +++ b/src/main/resources/assets/imsm/models/block/useradded102.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1020.json b/src/main/resources/assets/imsm/models/block/useradded1020.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1020.json +++ b/src/main/resources/assets/imsm/models/block/useradded1020.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1021.json b/src/main/resources/assets/imsm/models/block/useradded1021.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1021.json +++ b/src/main/resources/assets/imsm/models/block/useradded1021.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1022.json b/src/main/resources/assets/imsm/models/block/useradded1022.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1022.json +++ b/src/main/resources/assets/imsm/models/block/useradded1022.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1023.json b/src/main/resources/assets/imsm/models/block/useradded1023.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1023.json +++ b/src/main/resources/assets/imsm/models/block/useradded1023.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1024.json b/src/main/resources/assets/imsm/models/block/useradded1024.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1024.json +++ b/src/main/resources/assets/imsm/models/block/useradded1024.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1025.json b/src/main/resources/assets/imsm/models/block/useradded1025.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1025.json +++ b/src/main/resources/assets/imsm/models/block/useradded1025.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1026.json b/src/main/resources/assets/imsm/models/block/useradded1026.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1026.json +++ b/src/main/resources/assets/imsm/models/block/useradded1026.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1027.json b/src/main/resources/assets/imsm/models/block/useradded1027.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1027.json +++ b/src/main/resources/assets/imsm/models/block/useradded1027.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1028.json b/src/main/resources/assets/imsm/models/block/useradded1028.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1028.json +++ b/src/main/resources/assets/imsm/models/block/useradded1028.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1029.json b/src/main/resources/assets/imsm/models/block/useradded1029.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1029.json +++ b/src/main/resources/assets/imsm/models/block/useradded1029.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded103.json b/src/main/resources/assets/imsm/models/block/useradded103.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded103.json +++ b/src/main/resources/assets/imsm/models/block/useradded103.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1030.json b/src/main/resources/assets/imsm/models/block/useradded1030.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1030.json +++ b/src/main/resources/assets/imsm/models/block/useradded1030.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1031.json b/src/main/resources/assets/imsm/models/block/useradded1031.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1031.json +++ b/src/main/resources/assets/imsm/models/block/useradded1031.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1032.json b/src/main/resources/assets/imsm/models/block/useradded1032.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1032.json +++ b/src/main/resources/assets/imsm/models/block/useradded1032.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1033.json b/src/main/resources/assets/imsm/models/block/useradded1033.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1033.json +++ b/src/main/resources/assets/imsm/models/block/useradded1033.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1034.json b/src/main/resources/assets/imsm/models/block/useradded1034.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1034.json +++ b/src/main/resources/assets/imsm/models/block/useradded1034.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1035.json b/src/main/resources/assets/imsm/models/block/useradded1035.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1035.json +++ b/src/main/resources/assets/imsm/models/block/useradded1035.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1036.json b/src/main/resources/assets/imsm/models/block/useradded1036.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1036.json +++ b/src/main/resources/assets/imsm/models/block/useradded1036.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1037.json b/src/main/resources/assets/imsm/models/block/useradded1037.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1037.json +++ b/src/main/resources/assets/imsm/models/block/useradded1037.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1038.json b/src/main/resources/assets/imsm/models/block/useradded1038.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1038.json +++ b/src/main/resources/assets/imsm/models/block/useradded1038.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1039.json b/src/main/resources/assets/imsm/models/block/useradded1039.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1039.json +++ b/src/main/resources/assets/imsm/models/block/useradded1039.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded104.json b/src/main/resources/assets/imsm/models/block/useradded104.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded104.json +++ b/src/main/resources/assets/imsm/models/block/useradded104.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1040.json b/src/main/resources/assets/imsm/models/block/useradded1040.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1040.json +++ b/src/main/resources/assets/imsm/models/block/useradded1040.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1041.json b/src/main/resources/assets/imsm/models/block/useradded1041.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1041.json +++ b/src/main/resources/assets/imsm/models/block/useradded1041.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1042.json b/src/main/resources/assets/imsm/models/block/useradded1042.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1042.json +++ b/src/main/resources/assets/imsm/models/block/useradded1042.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1043.json b/src/main/resources/assets/imsm/models/block/useradded1043.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1043.json +++ b/src/main/resources/assets/imsm/models/block/useradded1043.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1044.json b/src/main/resources/assets/imsm/models/block/useradded1044.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1044.json +++ b/src/main/resources/assets/imsm/models/block/useradded1044.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1045.json b/src/main/resources/assets/imsm/models/block/useradded1045.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1045.json +++ b/src/main/resources/assets/imsm/models/block/useradded1045.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1046.json b/src/main/resources/assets/imsm/models/block/useradded1046.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1046.json +++ b/src/main/resources/assets/imsm/models/block/useradded1046.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1047.json b/src/main/resources/assets/imsm/models/block/useradded1047.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1047.json +++ b/src/main/resources/assets/imsm/models/block/useradded1047.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1048.json b/src/main/resources/assets/imsm/models/block/useradded1048.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1048.json +++ b/src/main/resources/assets/imsm/models/block/useradded1048.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1049.json b/src/main/resources/assets/imsm/models/block/useradded1049.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1049.json +++ b/src/main/resources/assets/imsm/models/block/useradded1049.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded105.json b/src/main/resources/assets/imsm/models/block/useradded105.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded105.json +++ b/src/main/resources/assets/imsm/models/block/useradded105.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1050.json b/src/main/resources/assets/imsm/models/block/useradded1050.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1050.json +++ b/src/main/resources/assets/imsm/models/block/useradded1050.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1051.json b/src/main/resources/assets/imsm/models/block/useradded1051.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1051.json +++ b/src/main/resources/assets/imsm/models/block/useradded1051.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1052.json b/src/main/resources/assets/imsm/models/block/useradded1052.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1052.json +++ b/src/main/resources/assets/imsm/models/block/useradded1052.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1053.json b/src/main/resources/assets/imsm/models/block/useradded1053.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1053.json +++ b/src/main/resources/assets/imsm/models/block/useradded1053.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1054.json b/src/main/resources/assets/imsm/models/block/useradded1054.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1054.json +++ b/src/main/resources/assets/imsm/models/block/useradded1054.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1055.json b/src/main/resources/assets/imsm/models/block/useradded1055.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1055.json +++ b/src/main/resources/assets/imsm/models/block/useradded1055.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1056.json b/src/main/resources/assets/imsm/models/block/useradded1056.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1056.json +++ b/src/main/resources/assets/imsm/models/block/useradded1056.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1057.json b/src/main/resources/assets/imsm/models/block/useradded1057.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1057.json +++ b/src/main/resources/assets/imsm/models/block/useradded1057.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1058.json b/src/main/resources/assets/imsm/models/block/useradded1058.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1058.json +++ b/src/main/resources/assets/imsm/models/block/useradded1058.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1059.json b/src/main/resources/assets/imsm/models/block/useradded1059.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1059.json +++ b/src/main/resources/assets/imsm/models/block/useradded1059.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded106.json b/src/main/resources/assets/imsm/models/block/useradded106.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded106.json +++ b/src/main/resources/assets/imsm/models/block/useradded106.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1060.json b/src/main/resources/assets/imsm/models/block/useradded1060.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1060.json +++ b/src/main/resources/assets/imsm/models/block/useradded1060.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1061.json b/src/main/resources/assets/imsm/models/block/useradded1061.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1061.json +++ b/src/main/resources/assets/imsm/models/block/useradded1061.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1062.json b/src/main/resources/assets/imsm/models/block/useradded1062.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1062.json +++ b/src/main/resources/assets/imsm/models/block/useradded1062.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1063.json b/src/main/resources/assets/imsm/models/block/useradded1063.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1063.json +++ b/src/main/resources/assets/imsm/models/block/useradded1063.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1064.json b/src/main/resources/assets/imsm/models/block/useradded1064.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1064.json +++ b/src/main/resources/assets/imsm/models/block/useradded1064.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1065.json b/src/main/resources/assets/imsm/models/block/useradded1065.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1065.json +++ b/src/main/resources/assets/imsm/models/block/useradded1065.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1066.json b/src/main/resources/assets/imsm/models/block/useradded1066.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1066.json +++ b/src/main/resources/assets/imsm/models/block/useradded1066.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1067.json b/src/main/resources/assets/imsm/models/block/useradded1067.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1067.json +++ b/src/main/resources/assets/imsm/models/block/useradded1067.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1068.json b/src/main/resources/assets/imsm/models/block/useradded1068.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1068.json +++ b/src/main/resources/assets/imsm/models/block/useradded1068.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1069.json b/src/main/resources/assets/imsm/models/block/useradded1069.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1069.json +++ b/src/main/resources/assets/imsm/models/block/useradded1069.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded107.json b/src/main/resources/assets/imsm/models/block/useradded107.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded107.json +++ b/src/main/resources/assets/imsm/models/block/useradded107.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1070.json b/src/main/resources/assets/imsm/models/block/useradded1070.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1070.json +++ b/src/main/resources/assets/imsm/models/block/useradded1070.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1071.json b/src/main/resources/assets/imsm/models/block/useradded1071.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1071.json +++ b/src/main/resources/assets/imsm/models/block/useradded1071.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1072.json b/src/main/resources/assets/imsm/models/block/useradded1072.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1072.json +++ b/src/main/resources/assets/imsm/models/block/useradded1072.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1073.json b/src/main/resources/assets/imsm/models/block/useradded1073.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1073.json +++ b/src/main/resources/assets/imsm/models/block/useradded1073.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1074.json b/src/main/resources/assets/imsm/models/block/useradded1074.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1074.json +++ b/src/main/resources/assets/imsm/models/block/useradded1074.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1075.json b/src/main/resources/assets/imsm/models/block/useradded1075.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1075.json +++ b/src/main/resources/assets/imsm/models/block/useradded1075.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1076.json b/src/main/resources/assets/imsm/models/block/useradded1076.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1076.json +++ b/src/main/resources/assets/imsm/models/block/useradded1076.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1077.json b/src/main/resources/assets/imsm/models/block/useradded1077.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1077.json +++ b/src/main/resources/assets/imsm/models/block/useradded1077.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1078.json b/src/main/resources/assets/imsm/models/block/useradded1078.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1078.json +++ b/src/main/resources/assets/imsm/models/block/useradded1078.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1079.json b/src/main/resources/assets/imsm/models/block/useradded1079.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1079.json +++ b/src/main/resources/assets/imsm/models/block/useradded1079.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded108.json b/src/main/resources/assets/imsm/models/block/useradded108.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded108.json +++ b/src/main/resources/assets/imsm/models/block/useradded108.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1080.json b/src/main/resources/assets/imsm/models/block/useradded1080.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1080.json +++ b/src/main/resources/assets/imsm/models/block/useradded1080.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1081.json b/src/main/resources/assets/imsm/models/block/useradded1081.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1081.json +++ b/src/main/resources/assets/imsm/models/block/useradded1081.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1082.json b/src/main/resources/assets/imsm/models/block/useradded1082.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1082.json +++ b/src/main/resources/assets/imsm/models/block/useradded1082.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1083.json b/src/main/resources/assets/imsm/models/block/useradded1083.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1083.json +++ b/src/main/resources/assets/imsm/models/block/useradded1083.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1084.json b/src/main/resources/assets/imsm/models/block/useradded1084.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1084.json +++ b/src/main/resources/assets/imsm/models/block/useradded1084.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1085.json b/src/main/resources/assets/imsm/models/block/useradded1085.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1085.json +++ b/src/main/resources/assets/imsm/models/block/useradded1085.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1086.json b/src/main/resources/assets/imsm/models/block/useradded1086.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1086.json +++ b/src/main/resources/assets/imsm/models/block/useradded1086.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1087.json b/src/main/resources/assets/imsm/models/block/useradded1087.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1087.json +++ b/src/main/resources/assets/imsm/models/block/useradded1087.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1088.json b/src/main/resources/assets/imsm/models/block/useradded1088.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1088.json +++ b/src/main/resources/assets/imsm/models/block/useradded1088.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1089.json b/src/main/resources/assets/imsm/models/block/useradded1089.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1089.json +++ b/src/main/resources/assets/imsm/models/block/useradded1089.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded109.json b/src/main/resources/assets/imsm/models/block/useradded109.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded109.json +++ b/src/main/resources/assets/imsm/models/block/useradded109.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1090.json b/src/main/resources/assets/imsm/models/block/useradded1090.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1090.json +++ b/src/main/resources/assets/imsm/models/block/useradded1090.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1091.json b/src/main/resources/assets/imsm/models/block/useradded1091.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1091.json +++ b/src/main/resources/assets/imsm/models/block/useradded1091.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1092.json b/src/main/resources/assets/imsm/models/block/useradded1092.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1092.json +++ b/src/main/resources/assets/imsm/models/block/useradded1092.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1093.json b/src/main/resources/assets/imsm/models/block/useradded1093.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1093.json +++ b/src/main/resources/assets/imsm/models/block/useradded1093.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1094.json b/src/main/resources/assets/imsm/models/block/useradded1094.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1094.json +++ b/src/main/resources/assets/imsm/models/block/useradded1094.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1095.json b/src/main/resources/assets/imsm/models/block/useradded1095.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1095.json +++ b/src/main/resources/assets/imsm/models/block/useradded1095.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1096.json b/src/main/resources/assets/imsm/models/block/useradded1096.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1096.json +++ b/src/main/resources/assets/imsm/models/block/useradded1096.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1097.json b/src/main/resources/assets/imsm/models/block/useradded1097.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1097.json +++ b/src/main/resources/assets/imsm/models/block/useradded1097.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1098.json b/src/main/resources/assets/imsm/models/block/useradded1098.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1098.json +++ b/src/main/resources/assets/imsm/models/block/useradded1098.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1099.json b/src/main/resources/assets/imsm/models/block/useradded1099.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1099.json +++ b/src/main/resources/assets/imsm/models/block/useradded1099.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded11.json b/src/main/resources/assets/imsm/models/block/useradded11.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded11.json +++ b/src/main/resources/assets/imsm/models/block/useradded11.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded110.json b/src/main/resources/assets/imsm/models/block/useradded110.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded110.json +++ b/src/main/resources/assets/imsm/models/block/useradded110.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1100.json b/src/main/resources/assets/imsm/models/block/useradded1100.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1100.json +++ b/src/main/resources/assets/imsm/models/block/useradded1100.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1101.json b/src/main/resources/assets/imsm/models/block/useradded1101.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1101.json +++ b/src/main/resources/assets/imsm/models/block/useradded1101.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1102.json b/src/main/resources/assets/imsm/models/block/useradded1102.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1102.json +++ b/src/main/resources/assets/imsm/models/block/useradded1102.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1103.json b/src/main/resources/assets/imsm/models/block/useradded1103.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1103.json +++ b/src/main/resources/assets/imsm/models/block/useradded1103.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1104.json b/src/main/resources/assets/imsm/models/block/useradded1104.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1104.json +++ b/src/main/resources/assets/imsm/models/block/useradded1104.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1105.json b/src/main/resources/assets/imsm/models/block/useradded1105.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1105.json +++ b/src/main/resources/assets/imsm/models/block/useradded1105.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1106.json b/src/main/resources/assets/imsm/models/block/useradded1106.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1106.json +++ b/src/main/resources/assets/imsm/models/block/useradded1106.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1107.json b/src/main/resources/assets/imsm/models/block/useradded1107.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1107.json +++ b/src/main/resources/assets/imsm/models/block/useradded1107.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1108.json b/src/main/resources/assets/imsm/models/block/useradded1108.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1108.json +++ b/src/main/resources/assets/imsm/models/block/useradded1108.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1109.json b/src/main/resources/assets/imsm/models/block/useradded1109.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1109.json +++ b/src/main/resources/assets/imsm/models/block/useradded1109.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded111.json b/src/main/resources/assets/imsm/models/block/useradded111.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded111.json +++ b/src/main/resources/assets/imsm/models/block/useradded111.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1110.json b/src/main/resources/assets/imsm/models/block/useradded1110.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1110.json +++ b/src/main/resources/assets/imsm/models/block/useradded1110.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1111.json b/src/main/resources/assets/imsm/models/block/useradded1111.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1111.json +++ b/src/main/resources/assets/imsm/models/block/useradded1111.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1112.json b/src/main/resources/assets/imsm/models/block/useradded1112.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1112.json +++ b/src/main/resources/assets/imsm/models/block/useradded1112.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1113.json b/src/main/resources/assets/imsm/models/block/useradded1113.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1113.json +++ b/src/main/resources/assets/imsm/models/block/useradded1113.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1114.json b/src/main/resources/assets/imsm/models/block/useradded1114.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1114.json +++ b/src/main/resources/assets/imsm/models/block/useradded1114.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1115.json b/src/main/resources/assets/imsm/models/block/useradded1115.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1115.json +++ b/src/main/resources/assets/imsm/models/block/useradded1115.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1116.json b/src/main/resources/assets/imsm/models/block/useradded1116.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1116.json +++ b/src/main/resources/assets/imsm/models/block/useradded1116.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1117.json b/src/main/resources/assets/imsm/models/block/useradded1117.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1117.json +++ b/src/main/resources/assets/imsm/models/block/useradded1117.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1118.json b/src/main/resources/assets/imsm/models/block/useradded1118.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1118.json +++ b/src/main/resources/assets/imsm/models/block/useradded1118.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1119.json b/src/main/resources/assets/imsm/models/block/useradded1119.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1119.json +++ b/src/main/resources/assets/imsm/models/block/useradded1119.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded112.json b/src/main/resources/assets/imsm/models/block/useradded112.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded112.json +++ b/src/main/resources/assets/imsm/models/block/useradded112.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1120.json b/src/main/resources/assets/imsm/models/block/useradded1120.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1120.json +++ b/src/main/resources/assets/imsm/models/block/useradded1120.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1121.json b/src/main/resources/assets/imsm/models/block/useradded1121.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1121.json +++ b/src/main/resources/assets/imsm/models/block/useradded1121.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1122.json b/src/main/resources/assets/imsm/models/block/useradded1122.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1122.json +++ b/src/main/resources/assets/imsm/models/block/useradded1122.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1123.json b/src/main/resources/assets/imsm/models/block/useradded1123.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1123.json +++ b/src/main/resources/assets/imsm/models/block/useradded1123.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1124.json b/src/main/resources/assets/imsm/models/block/useradded1124.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1124.json +++ b/src/main/resources/assets/imsm/models/block/useradded1124.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1125.json b/src/main/resources/assets/imsm/models/block/useradded1125.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1125.json +++ b/src/main/resources/assets/imsm/models/block/useradded1125.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1126.json b/src/main/resources/assets/imsm/models/block/useradded1126.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1126.json +++ b/src/main/resources/assets/imsm/models/block/useradded1126.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1127.json b/src/main/resources/assets/imsm/models/block/useradded1127.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1127.json +++ b/src/main/resources/assets/imsm/models/block/useradded1127.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1128.json b/src/main/resources/assets/imsm/models/block/useradded1128.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1128.json +++ b/src/main/resources/assets/imsm/models/block/useradded1128.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1129.json b/src/main/resources/assets/imsm/models/block/useradded1129.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1129.json +++ b/src/main/resources/assets/imsm/models/block/useradded1129.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded113.json b/src/main/resources/assets/imsm/models/block/useradded113.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded113.json +++ b/src/main/resources/assets/imsm/models/block/useradded113.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1130.json b/src/main/resources/assets/imsm/models/block/useradded1130.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1130.json +++ b/src/main/resources/assets/imsm/models/block/useradded1130.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1131.json b/src/main/resources/assets/imsm/models/block/useradded1131.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1131.json +++ b/src/main/resources/assets/imsm/models/block/useradded1131.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1132.json b/src/main/resources/assets/imsm/models/block/useradded1132.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1132.json +++ b/src/main/resources/assets/imsm/models/block/useradded1132.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1133.json b/src/main/resources/assets/imsm/models/block/useradded1133.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1133.json +++ b/src/main/resources/assets/imsm/models/block/useradded1133.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1134.json b/src/main/resources/assets/imsm/models/block/useradded1134.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1134.json +++ b/src/main/resources/assets/imsm/models/block/useradded1134.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1135.json b/src/main/resources/assets/imsm/models/block/useradded1135.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1135.json +++ b/src/main/resources/assets/imsm/models/block/useradded1135.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1136.json b/src/main/resources/assets/imsm/models/block/useradded1136.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1136.json +++ b/src/main/resources/assets/imsm/models/block/useradded1136.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1137.json b/src/main/resources/assets/imsm/models/block/useradded1137.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1137.json +++ b/src/main/resources/assets/imsm/models/block/useradded1137.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1138.json b/src/main/resources/assets/imsm/models/block/useradded1138.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1138.json +++ b/src/main/resources/assets/imsm/models/block/useradded1138.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1139.json b/src/main/resources/assets/imsm/models/block/useradded1139.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1139.json +++ b/src/main/resources/assets/imsm/models/block/useradded1139.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded114.json b/src/main/resources/assets/imsm/models/block/useradded114.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded114.json +++ b/src/main/resources/assets/imsm/models/block/useradded114.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1140.json b/src/main/resources/assets/imsm/models/block/useradded1140.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1140.json +++ b/src/main/resources/assets/imsm/models/block/useradded1140.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1141.json b/src/main/resources/assets/imsm/models/block/useradded1141.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1141.json +++ b/src/main/resources/assets/imsm/models/block/useradded1141.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1142.json b/src/main/resources/assets/imsm/models/block/useradded1142.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1142.json +++ b/src/main/resources/assets/imsm/models/block/useradded1142.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1143.json b/src/main/resources/assets/imsm/models/block/useradded1143.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1143.json +++ b/src/main/resources/assets/imsm/models/block/useradded1143.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1144.json b/src/main/resources/assets/imsm/models/block/useradded1144.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1144.json +++ b/src/main/resources/assets/imsm/models/block/useradded1144.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1145.json b/src/main/resources/assets/imsm/models/block/useradded1145.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1145.json +++ b/src/main/resources/assets/imsm/models/block/useradded1145.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1146.json b/src/main/resources/assets/imsm/models/block/useradded1146.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1146.json +++ b/src/main/resources/assets/imsm/models/block/useradded1146.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1147.json b/src/main/resources/assets/imsm/models/block/useradded1147.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1147.json +++ b/src/main/resources/assets/imsm/models/block/useradded1147.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1148.json b/src/main/resources/assets/imsm/models/block/useradded1148.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1148.json +++ b/src/main/resources/assets/imsm/models/block/useradded1148.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1149.json b/src/main/resources/assets/imsm/models/block/useradded1149.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1149.json +++ b/src/main/resources/assets/imsm/models/block/useradded1149.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded115.json b/src/main/resources/assets/imsm/models/block/useradded115.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded115.json +++ b/src/main/resources/assets/imsm/models/block/useradded115.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1150.json b/src/main/resources/assets/imsm/models/block/useradded1150.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1150.json +++ b/src/main/resources/assets/imsm/models/block/useradded1150.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1151.json b/src/main/resources/assets/imsm/models/block/useradded1151.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1151.json +++ b/src/main/resources/assets/imsm/models/block/useradded1151.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1152.json b/src/main/resources/assets/imsm/models/block/useradded1152.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1152.json +++ b/src/main/resources/assets/imsm/models/block/useradded1152.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1153.json b/src/main/resources/assets/imsm/models/block/useradded1153.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1153.json +++ b/src/main/resources/assets/imsm/models/block/useradded1153.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1154.json b/src/main/resources/assets/imsm/models/block/useradded1154.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1154.json +++ b/src/main/resources/assets/imsm/models/block/useradded1154.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1155.json b/src/main/resources/assets/imsm/models/block/useradded1155.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1155.json +++ b/src/main/resources/assets/imsm/models/block/useradded1155.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1156.json b/src/main/resources/assets/imsm/models/block/useradded1156.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1156.json +++ b/src/main/resources/assets/imsm/models/block/useradded1156.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1157.json b/src/main/resources/assets/imsm/models/block/useradded1157.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1157.json +++ b/src/main/resources/assets/imsm/models/block/useradded1157.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1158.json b/src/main/resources/assets/imsm/models/block/useradded1158.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1158.json +++ b/src/main/resources/assets/imsm/models/block/useradded1158.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1159.json b/src/main/resources/assets/imsm/models/block/useradded1159.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1159.json +++ b/src/main/resources/assets/imsm/models/block/useradded1159.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded116.json b/src/main/resources/assets/imsm/models/block/useradded116.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded116.json +++ b/src/main/resources/assets/imsm/models/block/useradded116.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1160.json b/src/main/resources/assets/imsm/models/block/useradded1160.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1160.json +++ b/src/main/resources/assets/imsm/models/block/useradded1160.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1161.json b/src/main/resources/assets/imsm/models/block/useradded1161.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1161.json +++ b/src/main/resources/assets/imsm/models/block/useradded1161.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1162.json b/src/main/resources/assets/imsm/models/block/useradded1162.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1162.json +++ b/src/main/resources/assets/imsm/models/block/useradded1162.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1163.json b/src/main/resources/assets/imsm/models/block/useradded1163.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1163.json +++ b/src/main/resources/assets/imsm/models/block/useradded1163.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1164.json b/src/main/resources/assets/imsm/models/block/useradded1164.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1164.json +++ b/src/main/resources/assets/imsm/models/block/useradded1164.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1165.json b/src/main/resources/assets/imsm/models/block/useradded1165.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1165.json +++ b/src/main/resources/assets/imsm/models/block/useradded1165.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1166.json b/src/main/resources/assets/imsm/models/block/useradded1166.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1166.json +++ b/src/main/resources/assets/imsm/models/block/useradded1166.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1167.json b/src/main/resources/assets/imsm/models/block/useradded1167.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1167.json +++ b/src/main/resources/assets/imsm/models/block/useradded1167.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1168.json b/src/main/resources/assets/imsm/models/block/useradded1168.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1168.json +++ b/src/main/resources/assets/imsm/models/block/useradded1168.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1169.json b/src/main/resources/assets/imsm/models/block/useradded1169.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1169.json +++ b/src/main/resources/assets/imsm/models/block/useradded1169.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded117.json b/src/main/resources/assets/imsm/models/block/useradded117.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded117.json +++ b/src/main/resources/assets/imsm/models/block/useradded117.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1170.json b/src/main/resources/assets/imsm/models/block/useradded1170.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1170.json +++ b/src/main/resources/assets/imsm/models/block/useradded1170.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1171.json b/src/main/resources/assets/imsm/models/block/useradded1171.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1171.json +++ b/src/main/resources/assets/imsm/models/block/useradded1171.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1172.json b/src/main/resources/assets/imsm/models/block/useradded1172.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1172.json +++ b/src/main/resources/assets/imsm/models/block/useradded1172.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1173.json b/src/main/resources/assets/imsm/models/block/useradded1173.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1173.json +++ b/src/main/resources/assets/imsm/models/block/useradded1173.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1174.json b/src/main/resources/assets/imsm/models/block/useradded1174.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1174.json +++ b/src/main/resources/assets/imsm/models/block/useradded1174.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1175.json b/src/main/resources/assets/imsm/models/block/useradded1175.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1175.json +++ b/src/main/resources/assets/imsm/models/block/useradded1175.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1176.json b/src/main/resources/assets/imsm/models/block/useradded1176.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1176.json +++ b/src/main/resources/assets/imsm/models/block/useradded1176.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1177.json b/src/main/resources/assets/imsm/models/block/useradded1177.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1177.json +++ b/src/main/resources/assets/imsm/models/block/useradded1177.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1178.json b/src/main/resources/assets/imsm/models/block/useradded1178.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1178.json +++ b/src/main/resources/assets/imsm/models/block/useradded1178.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1179.json b/src/main/resources/assets/imsm/models/block/useradded1179.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1179.json +++ b/src/main/resources/assets/imsm/models/block/useradded1179.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded118.json b/src/main/resources/assets/imsm/models/block/useradded118.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded118.json +++ b/src/main/resources/assets/imsm/models/block/useradded118.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1180.json b/src/main/resources/assets/imsm/models/block/useradded1180.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1180.json +++ b/src/main/resources/assets/imsm/models/block/useradded1180.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1181.json b/src/main/resources/assets/imsm/models/block/useradded1181.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1181.json +++ b/src/main/resources/assets/imsm/models/block/useradded1181.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1182.json b/src/main/resources/assets/imsm/models/block/useradded1182.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1182.json +++ b/src/main/resources/assets/imsm/models/block/useradded1182.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1183.json b/src/main/resources/assets/imsm/models/block/useradded1183.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1183.json +++ b/src/main/resources/assets/imsm/models/block/useradded1183.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1184.json b/src/main/resources/assets/imsm/models/block/useradded1184.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1184.json +++ b/src/main/resources/assets/imsm/models/block/useradded1184.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1185.json b/src/main/resources/assets/imsm/models/block/useradded1185.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1185.json +++ b/src/main/resources/assets/imsm/models/block/useradded1185.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1186.json b/src/main/resources/assets/imsm/models/block/useradded1186.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1186.json +++ b/src/main/resources/assets/imsm/models/block/useradded1186.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1187.json b/src/main/resources/assets/imsm/models/block/useradded1187.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1187.json +++ b/src/main/resources/assets/imsm/models/block/useradded1187.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1188.json b/src/main/resources/assets/imsm/models/block/useradded1188.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1188.json +++ b/src/main/resources/assets/imsm/models/block/useradded1188.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1189.json b/src/main/resources/assets/imsm/models/block/useradded1189.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1189.json +++ b/src/main/resources/assets/imsm/models/block/useradded1189.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded119.json b/src/main/resources/assets/imsm/models/block/useradded119.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded119.json +++ b/src/main/resources/assets/imsm/models/block/useradded119.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1190.json b/src/main/resources/assets/imsm/models/block/useradded1190.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1190.json +++ b/src/main/resources/assets/imsm/models/block/useradded1190.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1191.json b/src/main/resources/assets/imsm/models/block/useradded1191.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1191.json +++ b/src/main/resources/assets/imsm/models/block/useradded1191.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1192.json b/src/main/resources/assets/imsm/models/block/useradded1192.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1192.json +++ b/src/main/resources/assets/imsm/models/block/useradded1192.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1193.json b/src/main/resources/assets/imsm/models/block/useradded1193.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1193.json +++ b/src/main/resources/assets/imsm/models/block/useradded1193.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1194.json b/src/main/resources/assets/imsm/models/block/useradded1194.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1194.json +++ b/src/main/resources/assets/imsm/models/block/useradded1194.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1195.json b/src/main/resources/assets/imsm/models/block/useradded1195.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1195.json +++ b/src/main/resources/assets/imsm/models/block/useradded1195.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1196.json b/src/main/resources/assets/imsm/models/block/useradded1196.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1196.json +++ b/src/main/resources/assets/imsm/models/block/useradded1196.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1197.json b/src/main/resources/assets/imsm/models/block/useradded1197.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1197.json +++ b/src/main/resources/assets/imsm/models/block/useradded1197.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1198.json b/src/main/resources/assets/imsm/models/block/useradded1198.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1198.json +++ b/src/main/resources/assets/imsm/models/block/useradded1198.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1199.json b/src/main/resources/assets/imsm/models/block/useradded1199.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1199.json +++ b/src/main/resources/assets/imsm/models/block/useradded1199.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded12.json b/src/main/resources/assets/imsm/models/block/useradded12.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded12.json +++ b/src/main/resources/assets/imsm/models/block/useradded12.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded120.json b/src/main/resources/assets/imsm/models/block/useradded120.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded120.json +++ b/src/main/resources/assets/imsm/models/block/useradded120.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1200.json b/src/main/resources/assets/imsm/models/block/useradded1200.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1200.json +++ b/src/main/resources/assets/imsm/models/block/useradded1200.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1201.json b/src/main/resources/assets/imsm/models/block/useradded1201.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1201.json +++ b/src/main/resources/assets/imsm/models/block/useradded1201.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1202.json b/src/main/resources/assets/imsm/models/block/useradded1202.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1202.json +++ b/src/main/resources/assets/imsm/models/block/useradded1202.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1203.json b/src/main/resources/assets/imsm/models/block/useradded1203.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1203.json +++ b/src/main/resources/assets/imsm/models/block/useradded1203.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1204.json b/src/main/resources/assets/imsm/models/block/useradded1204.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1204.json +++ b/src/main/resources/assets/imsm/models/block/useradded1204.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1205.json b/src/main/resources/assets/imsm/models/block/useradded1205.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1205.json +++ b/src/main/resources/assets/imsm/models/block/useradded1205.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1206.json b/src/main/resources/assets/imsm/models/block/useradded1206.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1206.json +++ b/src/main/resources/assets/imsm/models/block/useradded1206.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1207.json b/src/main/resources/assets/imsm/models/block/useradded1207.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1207.json +++ b/src/main/resources/assets/imsm/models/block/useradded1207.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1208.json b/src/main/resources/assets/imsm/models/block/useradded1208.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1208.json +++ b/src/main/resources/assets/imsm/models/block/useradded1208.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1209.json b/src/main/resources/assets/imsm/models/block/useradded1209.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1209.json +++ b/src/main/resources/assets/imsm/models/block/useradded1209.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded121.json b/src/main/resources/assets/imsm/models/block/useradded121.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded121.json +++ b/src/main/resources/assets/imsm/models/block/useradded121.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1210.json b/src/main/resources/assets/imsm/models/block/useradded1210.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1210.json +++ b/src/main/resources/assets/imsm/models/block/useradded1210.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1211.json b/src/main/resources/assets/imsm/models/block/useradded1211.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1211.json +++ b/src/main/resources/assets/imsm/models/block/useradded1211.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1212.json b/src/main/resources/assets/imsm/models/block/useradded1212.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1212.json +++ b/src/main/resources/assets/imsm/models/block/useradded1212.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1213.json b/src/main/resources/assets/imsm/models/block/useradded1213.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1213.json +++ b/src/main/resources/assets/imsm/models/block/useradded1213.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1214.json b/src/main/resources/assets/imsm/models/block/useradded1214.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1214.json +++ b/src/main/resources/assets/imsm/models/block/useradded1214.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1215.json b/src/main/resources/assets/imsm/models/block/useradded1215.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1215.json +++ b/src/main/resources/assets/imsm/models/block/useradded1215.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1216.json b/src/main/resources/assets/imsm/models/block/useradded1216.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1216.json +++ b/src/main/resources/assets/imsm/models/block/useradded1216.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1217.json b/src/main/resources/assets/imsm/models/block/useradded1217.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1217.json +++ b/src/main/resources/assets/imsm/models/block/useradded1217.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1218.json b/src/main/resources/assets/imsm/models/block/useradded1218.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1218.json +++ b/src/main/resources/assets/imsm/models/block/useradded1218.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1219.json b/src/main/resources/assets/imsm/models/block/useradded1219.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1219.json +++ b/src/main/resources/assets/imsm/models/block/useradded1219.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded122.json b/src/main/resources/assets/imsm/models/block/useradded122.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded122.json +++ b/src/main/resources/assets/imsm/models/block/useradded122.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1220.json b/src/main/resources/assets/imsm/models/block/useradded1220.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1220.json +++ b/src/main/resources/assets/imsm/models/block/useradded1220.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1221.json b/src/main/resources/assets/imsm/models/block/useradded1221.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1221.json +++ b/src/main/resources/assets/imsm/models/block/useradded1221.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1222.json b/src/main/resources/assets/imsm/models/block/useradded1222.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1222.json +++ b/src/main/resources/assets/imsm/models/block/useradded1222.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1223.json b/src/main/resources/assets/imsm/models/block/useradded1223.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1223.json +++ b/src/main/resources/assets/imsm/models/block/useradded1223.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1224.json b/src/main/resources/assets/imsm/models/block/useradded1224.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1224.json +++ b/src/main/resources/assets/imsm/models/block/useradded1224.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1225.json b/src/main/resources/assets/imsm/models/block/useradded1225.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1225.json +++ b/src/main/resources/assets/imsm/models/block/useradded1225.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1226.json b/src/main/resources/assets/imsm/models/block/useradded1226.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1226.json +++ b/src/main/resources/assets/imsm/models/block/useradded1226.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1227.json b/src/main/resources/assets/imsm/models/block/useradded1227.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1227.json +++ b/src/main/resources/assets/imsm/models/block/useradded1227.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1228.json b/src/main/resources/assets/imsm/models/block/useradded1228.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1228.json +++ b/src/main/resources/assets/imsm/models/block/useradded1228.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1229.json b/src/main/resources/assets/imsm/models/block/useradded1229.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1229.json +++ b/src/main/resources/assets/imsm/models/block/useradded1229.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded123.json b/src/main/resources/assets/imsm/models/block/useradded123.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded123.json +++ b/src/main/resources/assets/imsm/models/block/useradded123.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1230.json b/src/main/resources/assets/imsm/models/block/useradded1230.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1230.json +++ b/src/main/resources/assets/imsm/models/block/useradded1230.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1231.json b/src/main/resources/assets/imsm/models/block/useradded1231.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1231.json +++ b/src/main/resources/assets/imsm/models/block/useradded1231.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1232.json b/src/main/resources/assets/imsm/models/block/useradded1232.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1232.json +++ b/src/main/resources/assets/imsm/models/block/useradded1232.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1233.json b/src/main/resources/assets/imsm/models/block/useradded1233.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1233.json +++ b/src/main/resources/assets/imsm/models/block/useradded1233.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1234.json b/src/main/resources/assets/imsm/models/block/useradded1234.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1234.json +++ b/src/main/resources/assets/imsm/models/block/useradded1234.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1235.json b/src/main/resources/assets/imsm/models/block/useradded1235.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1235.json +++ b/src/main/resources/assets/imsm/models/block/useradded1235.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1236.json b/src/main/resources/assets/imsm/models/block/useradded1236.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1236.json +++ b/src/main/resources/assets/imsm/models/block/useradded1236.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1237.json b/src/main/resources/assets/imsm/models/block/useradded1237.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1237.json +++ b/src/main/resources/assets/imsm/models/block/useradded1237.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1238.json b/src/main/resources/assets/imsm/models/block/useradded1238.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1238.json +++ b/src/main/resources/assets/imsm/models/block/useradded1238.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1239.json b/src/main/resources/assets/imsm/models/block/useradded1239.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1239.json +++ b/src/main/resources/assets/imsm/models/block/useradded1239.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded124.json b/src/main/resources/assets/imsm/models/block/useradded124.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded124.json +++ b/src/main/resources/assets/imsm/models/block/useradded124.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1240.json b/src/main/resources/assets/imsm/models/block/useradded1240.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1240.json +++ b/src/main/resources/assets/imsm/models/block/useradded1240.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1241.json b/src/main/resources/assets/imsm/models/block/useradded1241.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1241.json +++ b/src/main/resources/assets/imsm/models/block/useradded1241.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1242.json b/src/main/resources/assets/imsm/models/block/useradded1242.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1242.json +++ b/src/main/resources/assets/imsm/models/block/useradded1242.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1243.json b/src/main/resources/assets/imsm/models/block/useradded1243.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1243.json +++ b/src/main/resources/assets/imsm/models/block/useradded1243.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1244.json b/src/main/resources/assets/imsm/models/block/useradded1244.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1244.json +++ b/src/main/resources/assets/imsm/models/block/useradded1244.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1245.json b/src/main/resources/assets/imsm/models/block/useradded1245.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1245.json +++ b/src/main/resources/assets/imsm/models/block/useradded1245.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1246.json b/src/main/resources/assets/imsm/models/block/useradded1246.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1246.json +++ b/src/main/resources/assets/imsm/models/block/useradded1246.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1247.json b/src/main/resources/assets/imsm/models/block/useradded1247.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1247.json +++ b/src/main/resources/assets/imsm/models/block/useradded1247.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1248.json b/src/main/resources/assets/imsm/models/block/useradded1248.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1248.json +++ b/src/main/resources/assets/imsm/models/block/useradded1248.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1249.json b/src/main/resources/assets/imsm/models/block/useradded1249.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1249.json +++ b/src/main/resources/assets/imsm/models/block/useradded1249.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded125.json b/src/main/resources/assets/imsm/models/block/useradded125.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded125.json +++ b/src/main/resources/assets/imsm/models/block/useradded125.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1250.json b/src/main/resources/assets/imsm/models/block/useradded1250.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1250.json +++ b/src/main/resources/assets/imsm/models/block/useradded1250.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1251.json b/src/main/resources/assets/imsm/models/block/useradded1251.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1251.json +++ b/src/main/resources/assets/imsm/models/block/useradded1251.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1252.json b/src/main/resources/assets/imsm/models/block/useradded1252.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1252.json +++ b/src/main/resources/assets/imsm/models/block/useradded1252.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1253.json b/src/main/resources/assets/imsm/models/block/useradded1253.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1253.json +++ b/src/main/resources/assets/imsm/models/block/useradded1253.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1254.json b/src/main/resources/assets/imsm/models/block/useradded1254.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1254.json +++ b/src/main/resources/assets/imsm/models/block/useradded1254.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1255.json b/src/main/resources/assets/imsm/models/block/useradded1255.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1255.json +++ b/src/main/resources/assets/imsm/models/block/useradded1255.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1256.json b/src/main/resources/assets/imsm/models/block/useradded1256.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1256.json +++ b/src/main/resources/assets/imsm/models/block/useradded1256.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1257.json b/src/main/resources/assets/imsm/models/block/useradded1257.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1257.json +++ b/src/main/resources/assets/imsm/models/block/useradded1257.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1258.json b/src/main/resources/assets/imsm/models/block/useradded1258.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1258.json +++ b/src/main/resources/assets/imsm/models/block/useradded1258.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1259.json b/src/main/resources/assets/imsm/models/block/useradded1259.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1259.json +++ b/src/main/resources/assets/imsm/models/block/useradded1259.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded126.json b/src/main/resources/assets/imsm/models/block/useradded126.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded126.json +++ b/src/main/resources/assets/imsm/models/block/useradded126.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1260.json b/src/main/resources/assets/imsm/models/block/useradded1260.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1260.json +++ b/src/main/resources/assets/imsm/models/block/useradded1260.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1261.json b/src/main/resources/assets/imsm/models/block/useradded1261.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1261.json +++ b/src/main/resources/assets/imsm/models/block/useradded1261.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1262.json b/src/main/resources/assets/imsm/models/block/useradded1262.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1262.json +++ b/src/main/resources/assets/imsm/models/block/useradded1262.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1263.json b/src/main/resources/assets/imsm/models/block/useradded1263.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1263.json +++ b/src/main/resources/assets/imsm/models/block/useradded1263.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1264.json b/src/main/resources/assets/imsm/models/block/useradded1264.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1264.json +++ b/src/main/resources/assets/imsm/models/block/useradded1264.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1265.json b/src/main/resources/assets/imsm/models/block/useradded1265.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1265.json +++ b/src/main/resources/assets/imsm/models/block/useradded1265.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1266.json b/src/main/resources/assets/imsm/models/block/useradded1266.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1266.json +++ b/src/main/resources/assets/imsm/models/block/useradded1266.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1267.json b/src/main/resources/assets/imsm/models/block/useradded1267.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1267.json +++ b/src/main/resources/assets/imsm/models/block/useradded1267.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1268.json b/src/main/resources/assets/imsm/models/block/useradded1268.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1268.json +++ b/src/main/resources/assets/imsm/models/block/useradded1268.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1269.json b/src/main/resources/assets/imsm/models/block/useradded1269.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1269.json +++ b/src/main/resources/assets/imsm/models/block/useradded1269.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded127.json b/src/main/resources/assets/imsm/models/block/useradded127.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded127.json +++ b/src/main/resources/assets/imsm/models/block/useradded127.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1270.json b/src/main/resources/assets/imsm/models/block/useradded1270.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1270.json +++ b/src/main/resources/assets/imsm/models/block/useradded1270.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1271.json b/src/main/resources/assets/imsm/models/block/useradded1271.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1271.json +++ b/src/main/resources/assets/imsm/models/block/useradded1271.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1272.json b/src/main/resources/assets/imsm/models/block/useradded1272.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1272.json +++ b/src/main/resources/assets/imsm/models/block/useradded1272.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1273.json b/src/main/resources/assets/imsm/models/block/useradded1273.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1273.json +++ b/src/main/resources/assets/imsm/models/block/useradded1273.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1274.json b/src/main/resources/assets/imsm/models/block/useradded1274.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1274.json +++ b/src/main/resources/assets/imsm/models/block/useradded1274.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1275.json b/src/main/resources/assets/imsm/models/block/useradded1275.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1275.json +++ b/src/main/resources/assets/imsm/models/block/useradded1275.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1276.json b/src/main/resources/assets/imsm/models/block/useradded1276.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1276.json +++ b/src/main/resources/assets/imsm/models/block/useradded1276.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1277.json b/src/main/resources/assets/imsm/models/block/useradded1277.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1277.json +++ b/src/main/resources/assets/imsm/models/block/useradded1277.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1278.json b/src/main/resources/assets/imsm/models/block/useradded1278.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1278.json +++ b/src/main/resources/assets/imsm/models/block/useradded1278.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1279.json b/src/main/resources/assets/imsm/models/block/useradded1279.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1279.json +++ b/src/main/resources/assets/imsm/models/block/useradded1279.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded128.json b/src/main/resources/assets/imsm/models/block/useradded128.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded128.json +++ b/src/main/resources/assets/imsm/models/block/useradded128.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1280.json b/src/main/resources/assets/imsm/models/block/useradded1280.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1280.json +++ b/src/main/resources/assets/imsm/models/block/useradded1280.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1281.json b/src/main/resources/assets/imsm/models/block/useradded1281.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1281.json +++ b/src/main/resources/assets/imsm/models/block/useradded1281.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1282.json b/src/main/resources/assets/imsm/models/block/useradded1282.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1282.json +++ b/src/main/resources/assets/imsm/models/block/useradded1282.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1283.json b/src/main/resources/assets/imsm/models/block/useradded1283.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1283.json +++ b/src/main/resources/assets/imsm/models/block/useradded1283.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1284.json b/src/main/resources/assets/imsm/models/block/useradded1284.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1284.json +++ b/src/main/resources/assets/imsm/models/block/useradded1284.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1285.json b/src/main/resources/assets/imsm/models/block/useradded1285.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1285.json +++ b/src/main/resources/assets/imsm/models/block/useradded1285.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1286.json b/src/main/resources/assets/imsm/models/block/useradded1286.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1286.json +++ b/src/main/resources/assets/imsm/models/block/useradded1286.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1287.json b/src/main/resources/assets/imsm/models/block/useradded1287.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1287.json +++ b/src/main/resources/assets/imsm/models/block/useradded1287.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1288.json b/src/main/resources/assets/imsm/models/block/useradded1288.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1288.json +++ b/src/main/resources/assets/imsm/models/block/useradded1288.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1289.json b/src/main/resources/assets/imsm/models/block/useradded1289.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1289.json +++ b/src/main/resources/assets/imsm/models/block/useradded1289.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded129.json b/src/main/resources/assets/imsm/models/block/useradded129.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded129.json +++ b/src/main/resources/assets/imsm/models/block/useradded129.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1290.json b/src/main/resources/assets/imsm/models/block/useradded1290.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1290.json +++ b/src/main/resources/assets/imsm/models/block/useradded1290.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1291.json b/src/main/resources/assets/imsm/models/block/useradded1291.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1291.json +++ b/src/main/resources/assets/imsm/models/block/useradded1291.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1292.json b/src/main/resources/assets/imsm/models/block/useradded1292.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1292.json +++ b/src/main/resources/assets/imsm/models/block/useradded1292.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1293.json b/src/main/resources/assets/imsm/models/block/useradded1293.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1293.json +++ b/src/main/resources/assets/imsm/models/block/useradded1293.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1294.json b/src/main/resources/assets/imsm/models/block/useradded1294.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1294.json +++ b/src/main/resources/assets/imsm/models/block/useradded1294.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1295.json b/src/main/resources/assets/imsm/models/block/useradded1295.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1295.json +++ b/src/main/resources/assets/imsm/models/block/useradded1295.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1296.json b/src/main/resources/assets/imsm/models/block/useradded1296.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1296.json +++ b/src/main/resources/assets/imsm/models/block/useradded1296.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1297.json b/src/main/resources/assets/imsm/models/block/useradded1297.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1297.json +++ b/src/main/resources/assets/imsm/models/block/useradded1297.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1298.json b/src/main/resources/assets/imsm/models/block/useradded1298.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1298.json +++ b/src/main/resources/assets/imsm/models/block/useradded1298.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1299.json b/src/main/resources/assets/imsm/models/block/useradded1299.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1299.json +++ b/src/main/resources/assets/imsm/models/block/useradded1299.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded13.json b/src/main/resources/assets/imsm/models/block/useradded13.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded13.json +++ b/src/main/resources/assets/imsm/models/block/useradded13.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded130.json b/src/main/resources/assets/imsm/models/block/useradded130.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded130.json +++ b/src/main/resources/assets/imsm/models/block/useradded130.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1300.json b/src/main/resources/assets/imsm/models/block/useradded1300.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1300.json +++ b/src/main/resources/assets/imsm/models/block/useradded1300.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1301.json b/src/main/resources/assets/imsm/models/block/useradded1301.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1301.json +++ b/src/main/resources/assets/imsm/models/block/useradded1301.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1302.json b/src/main/resources/assets/imsm/models/block/useradded1302.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1302.json +++ b/src/main/resources/assets/imsm/models/block/useradded1302.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1303.json b/src/main/resources/assets/imsm/models/block/useradded1303.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1303.json +++ b/src/main/resources/assets/imsm/models/block/useradded1303.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1304.json b/src/main/resources/assets/imsm/models/block/useradded1304.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1304.json +++ b/src/main/resources/assets/imsm/models/block/useradded1304.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1305.json b/src/main/resources/assets/imsm/models/block/useradded1305.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1305.json +++ b/src/main/resources/assets/imsm/models/block/useradded1305.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1306.json b/src/main/resources/assets/imsm/models/block/useradded1306.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1306.json +++ b/src/main/resources/assets/imsm/models/block/useradded1306.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1307.json b/src/main/resources/assets/imsm/models/block/useradded1307.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1307.json +++ b/src/main/resources/assets/imsm/models/block/useradded1307.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1308.json b/src/main/resources/assets/imsm/models/block/useradded1308.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1308.json +++ b/src/main/resources/assets/imsm/models/block/useradded1308.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1309.json b/src/main/resources/assets/imsm/models/block/useradded1309.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1309.json +++ b/src/main/resources/assets/imsm/models/block/useradded1309.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded131.json b/src/main/resources/assets/imsm/models/block/useradded131.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded131.json +++ b/src/main/resources/assets/imsm/models/block/useradded131.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1310.json b/src/main/resources/assets/imsm/models/block/useradded1310.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1310.json +++ b/src/main/resources/assets/imsm/models/block/useradded1310.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1311.json b/src/main/resources/assets/imsm/models/block/useradded1311.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1311.json +++ b/src/main/resources/assets/imsm/models/block/useradded1311.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1312.json b/src/main/resources/assets/imsm/models/block/useradded1312.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1312.json +++ b/src/main/resources/assets/imsm/models/block/useradded1312.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1313.json b/src/main/resources/assets/imsm/models/block/useradded1313.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1313.json +++ b/src/main/resources/assets/imsm/models/block/useradded1313.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1314.json b/src/main/resources/assets/imsm/models/block/useradded1314.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1314.json +++ b/src/main/resources/assets/imsm/models/block/useradded1314.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1315.json b/src/main/resources/assets/imsm/models/block/useradded1315.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1315.json +++ b/src/main/resources/assets/imsm/models/block/useradded1315.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1316.json b/src/main/resources/assets/imsm/models/block/useradded1316.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1316.json +++ b/src/main/resources/assets/imsm/models/block/useradded1316.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1317.json b/src/main/resources/assets/imsm/models/block/useradded1317.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1317.json +++ b/src/main/resources/assets/imsm/models/block/useradded1317.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1318.json b/src/main/resources/assets/imsm/models/block/useradded1318.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1318.json +++ b/src/main/resources/assets/imsm/models/block/useradded1318.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1319.json b/src/main/resources/assets/imsm/models/block/useradded1319.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1319.json +++ b/src/main/resources/assets/imsm/models/block/useradded1319.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded132.json b/src/main/resources/assets/imsm/models/block/useradded132.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded132.json +++ b/src/main/resources/assets/imsm/models/block/useradded132.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1320.json b/src/main/resources/assets/imsm/models/block/useradded1320.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1320.json +++ b/src/main/resources/assets/imsm/models/block/useradded1320.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1321.json b/src/main/resources/assets/imsm/models/block/useradded1321.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1321.json +++ b/src/main/resources/assets/imsm/models/block/useradded1321.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1322.json b/src/main/resources/assets/imsm/models/block/useradded1322.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1322.json +++ b/src/main/resources/assets/imsm/models/block/useradded1322.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1323.json b/src/main/resources/assets/imsm/models/block/useradded1323.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1323.json +++ b/src/main/resources/assets/imsm/models/block/useradded1323.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1324.json b/src/main/resources/assets/imsm/models/block/useradded1324.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1324.json +++ b/src/main/resources/assets/imsm/models/block/useradded1324.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1325.json b/src/main/resources/assets/imsm/models/block/useradded1325.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1325.json +++ b/src/main/resources/assets/imsm/models/block/useradded1325.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1326.json b/src/main/resources/assets/imsm/models/block/useradded1326.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1326.json +++ b/src/main/resources/assets/imsm/models/block/useradded1326.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1327.json b/src/main/resources/assets/imsm/models/block/useradded1327.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1327.json +++ b/src/main/resources/assets/imsm/models/block/useradded1327.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1328.json b/src/main/resources/assets/imsm/models/block/useradded1328.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1328.json +++ b/src/main/resources/assets/imsm/models/block/useradded1328.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1329.json b/src/main/resources/assets/imsm/models/block/useradded1329.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1329.json +++ b/src/main/resources/assets/imsm/models/block/useradded1329.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded133.json b/src/main/resources/assets/imsm/models/block/useradded133.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded133.json +++ b/src/main/resources/assets/imsm/models/block/useradded133.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1330.json b/src/main/resources/assets/imsm/models/block/useradded1330.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1330.json +++ b/src/main/resources/assets/imsm/models/block/useradded1330.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1331.json b/src/main/resources/assets/imsm/models/block/useradded1331.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1331.json +++ b/src/main/resources/assets/imsm/models/block/useradded1331.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1332.json b/src/main/resources/assets/imsm/models/block/useradded1332.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1332.json +++ b/src/main/resources/assets/imsm/models/block/useradded1332.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1333.json b/src/main/resources/assets/imsm/models/block/useradded1333.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1333.json +++ b/src/main/resources/assets/imsm/models/block/useradded1333.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1334.json b/src/main/resources/assets/imsm/models/block/useradded1334.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1334.json +++ b/src/main/resources/assets/imsm/models/block/useradded1334.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1335.json b/src/main/resources/assets/imsm/models/block/useradded1335.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1335.json +++ b/src/main/resources/assets/imsm/models/block/useradded1335.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1336.json b/src/main/resources/assets/imsm/models/block/useradded1336.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1336.json +++ b/src/main/resources/assets/imsm/models/block/useradded1336.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1337.json b/src/main/resources/assets/imsm/models/block/useradded1337.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1337.json +++ b/src/main/resources/assets/imsm/models/block/useradded1337.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1338.json b/src/main/resources/assets/imsm/models/block/useradded1338.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1338.json +++ b/src/main/resources/assets/imsm/models/block/useradded1338.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1339.json b/src/main/resources/assets/imsm/models/block/useradded1339.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1339.json +++ b/src/main/resources/assets/imsm/models/block/useradded1339.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded134.json b/src/main/resources/assets/imsm/models/block/useradded134.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded134.json +++ b/src/main/resources/assets/imsm/models/block/useradded134.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1340.json b/src/main/resources/assets/imsm/models/block/useradded1340.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1340.json +++ b/src/main/resources/assets/imsm/models/block/useradded1340.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1341.json b/src/main/resources/assets/imsm/models/block/useradded1341.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1341.json +++ b/src/main/resources/assets/imsm/models/block/useradded1341.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1342.json b/src/main/resources/assets/imsm/models/block/useradded1342.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1342.json +++ b/src/main/resources/assets/imsm/models/block/useradded1342.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1343.json b/src/main/resources/assets/imsm/models/block/useradded1343.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1343.json +++ b/src/main/resources/assets/imsm/models/block/useradded1343.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1344.json b/src/main/resources/assets/imsm/models/block/useradded1344.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1344.json +++ b/src/main/resources/assets/imsm/models/block/useradded1344.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1345.json b/src/main/resources/assets/imsm/models/block/useradded1345.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1345.json +++ b/src/main/resources/assets/imsm/models/block/useradded1345.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1346.json b/src/main/resources/assets/imsm/models/block/useradded1346.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1346.json +++ b/src/main/resources/assets/imsm/models/block/useradded1346.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1347.json b/src/main/resources/assets/imsm/models/block/useradded1347.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1347.json +++ b/src/main/resources/assets/imsm/models/block/useradded1347.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1348.json b/src/main/resources/assets/imsm/models/block/useradded1348.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1348.json +++ b/src/main/resources/assets/imsm/models/block/useradded1348.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1349.json b/src/main/resources/assets/imsm/models/block/useradded1349.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1349.json +++ b/src/main/resources/assets/imsm/models/block/useradded1349.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded135.json b/src/main/resources/assets/imsm/models/block/useradded135.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded135.json +++ b/src/main/resources/assets/imsm/models/block/useradded135.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1350.json b/src/main/resources/assets/imsm/models/block/useradded1350.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1350.json +++ b/src/main/resources/assets/imsm/models/block/useradded1350.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1351.json b/src/main/resources/assets/imsm/models/block/useradded1351.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1351.json +++ b/src/main/resources/assets/imsm/models/block/useradded1351.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1352.json b/src/main/resources/assets/imsm/models/block/useradded1352.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1352.json +++ b/src/main/resources/assets/imsm/models/block/useradded1352.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1353.json b/src/main/resources/assets/imsm/models/block/useradded1353.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1353.json +++ b/src/main/resources/assets/imsm/models/block/useradded1353.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1354.json b/src/main/resources/assets/imsm/models/block/useradded1354.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1354.json +++ b/src/main/resources/assets/imsm/models/block/useradded1354.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1355.json b/src/main/resources/assets/imsm/models/block/useradded1355.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1355.json +++ b/src/main/resources/assets/imsm/models/block/useradded1355.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1356.json b/src/main/resources/assets/imsm/models/block/useradded1356.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1356.json +++ b/src/main/resources/assets/imsm/models/block/useradded1356.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1357.json b/src/main/resources/assets/imsm/models/block/useradded1357.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1357.json +++ b/src/main/resources/assets/imsm/models/block/useradded1357.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1358.json b/src/main/resources/assets/imsm/models/block/useradded1358.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1358.json +++ b/src/main/resources/assets/imsm/models/block/useradded1358.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1359.json b/src/main/resources/assets/imsm/models/block/useradded1359.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1359.json +++ b/src/main/resources/assets/imsm/models/block/useradded1359.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded136.json b/src/main/resources/assets/imsm/models/block/useradded136.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded136.json +++ b/src/main/resources/assets/imsm/models/block/useradded136.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1360.json b/src/main/resources/assets/imsm/models/block/useradded1360.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1360.json +++ b/src/main/resources/assets/imsm/models/block/useradded1360.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1361.json b/src/main/resources/assets/imsm/models/block/useradded1361.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1361.json +++ b/src/main/resources/assets/imsm/models/block/useradded1361.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1362.json b/src/main/resources/assets/imsm/models/block/useradded1362.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1362.json +++ b/src/main/resources/assets/imsm/models/block/useradded1362.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1363.json b/src/main/resources/assets/imsm/models/block/useradded1363.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1363.json +++ b/src/main/resources/assets/imsm/models/block/useradded1363.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1364.json b/src/main/resources/assets/imsm/models/block/useradded1364.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1364.json +++ b/src/main/resources/assets/imsm/models/block/useradded1364.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1365.json b/src/main/resources/assets/imsm/models/block/useradded1365.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1365.json +++ b/src/main/resources/assets/imsm/models/block/useradded1365.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1366.json b/src/main/resources/assets/imsm/models/block/useradded1366.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1366.json +++ b/src/main/resources/assets/imsm/models/block/useradded1366.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1367.json b/src/main/resources/assets/imsm/models/block/useradded1367.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1367.json +++ b/src/main/resources/assets/imsm/models/block/useradded1367.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1368.json b/src/main/resources/assets/imsm/models/block/useradded1368.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1368.json +++ b/src/main/resources/assets/imsm/models/block/useradded1368.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1369.json b/src/main/resources/assets/imsm/models/block/useradded1369.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1369.json +++ b/src/main/resources/assets/imsm/models/block/useradded1369.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded137.json b/src/main/resources/assets/imsm/models/block/useradded137.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded137.json +++ b/src/main/resources/assets/imsm/models/block/useradded137.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1370.json b/src/main/resources/assets/imsm/models/block/useradded1370.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1370.json +++ b/src/main/resources/assets/imsm/models/block/useradded1370.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1371.json b/src/main/resources/assets/imsm/models/block/useradded1371.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1371.json +++ b/src/main/resources/assets/imsm/models/block/useradded1371.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1372.json b/src/main/resources/assets/imsm/models/block/useradded1372.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1372.json +++ b/src/main/resources/assets/imsm/models/block/useradded1372.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1373.json b/src/main/resources/assets/imsm/models/block/useradded1373.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1373.json +++ b/src/main/resources/assets/imsm/models/block/useradded1373.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1374.json b/src/main/resources/assets/imsm/models/block/useradded1374.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1374.json +++ b/src/main/resources/assets/imsm/models/block/useradded1374.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1375.json b/src/main/resources/assets/imsm/models/block/useradded1375.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1375.json +++ b/src/main/resources/assets/imsm/models/block/useradded1375.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1376.json b/src/main/resources/assets/imsm/models/block/useradded1376.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1376.json +++ b/src/main/resources/assets/imsm/models/block/useradded1376.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1377.json b/src/main/resources/assets/imsm/models/block/useradded1377.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1377.json +++ b/src/main/resources/assets/imsm/models/block/useradded1377.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1378.json b/src/main/resources/assets/imsm/models/block/useradded1378.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1378.json +++ b/src/main/resources/assets/imsm/models/block/useradded1378.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1379.json b/src/main/resources/assets/imsm/models/block/useradded1379.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1379.json +++ b/src/main/resources/assets/imsm/models/block/useradded1379.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded138.json b/src/main/resources/assets/imsm/models/block/useradded138.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded138.json +++ b/src/main/resources/assets/imsm/models/block/useradded138.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1380.json b/src/main/resources/assets/imsm/models/block/useradded1380.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1380.json +++ b/src/main/resources/assets/imsm/models/block/useradded1380.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1381.json b/src/main/resources/assets/imsm/models/block/useradded1381.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1381.json +++ b/src/main/resources/assets/imsm/models/block/useradded1381.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1382.json b/src/main/resources/assets/imsm/models/block/useradded1382.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1382.json +++ b/src/main/resources/assets/imsm/models/block/useradded1382.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1383.json b/src/main/resources/assets/imsm/models/block/useradded1383.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1383.json +++ b/src/main/resources/assets/imsm/models/block/useradded1383.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1384.json b/src/main/resources/assets/imsm/models/block/useradded1384.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1384.json +++ b/src/main/resources/assets/imsm/models/block/useradded1384.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1385.json b/src/main/resources/assets/imsm/models/block/useradded1385.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1385.json +++ b/src/main/resources/assets/imsm/models/block/useradded1385.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1386.json b/src/main/resources/assets/imsm/models/block/useradded1386.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1386.json +++ b/src/main/resources/assets/imsm/models/block/useradded1386.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1387.json b/src/main/resources/assets/imsm/models/block/useradded1387.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1387.json +++ b/src/main/resources/assets/imsm/models/block/useradded1387.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1388.json b/src/main/resources/assets/imsm/models/block/useradded1388.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1388.json +++ b/src/main/resources/assets/imsm/models/block/useradded1388.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1389.json b/src/main/resources/assets/imsm/models/block/useradded1389.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1389.json +++ b/src/main/resources/assets/imsm/models/block/useradded1389.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded139.json b/src/main/resources/assets/imsm/models/block/useradded139.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded139.json +++ b/src/main/resources/assets/imsm/models/block/useradded139.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1390.json b/src/main/resources/assets/imsm/models/block/useradded1390.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1390.json +++ b/src/main/resources/assets/imsm/models/block/useradded1390.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1391.json b/src/main/resources/assets/imsm/models/block/useradded1391.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1391.json +++ b/src/main/resources/assets/imsm/models/block/useradded1391.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1392.json b/src/main/resources/assets/imsm/models/block/useradded1392.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1392.json +++ b/src/main/resources/assets/imsm/models/block/useradded1392.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1393.json b/src/main/resources/assets/imsm/models/block/useradded1393.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1393.json +++ b/src/main/resources/assets/imsm/models/block/useradded1393.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1394.json b/src/main/resources/assets/imsm/models/block/useradded1394.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1394.json +++ b/src/main/resources/assets/imsm/models/block/useradded1394.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1395.json b/src/main/resources/assets/imsm/models/block/useradded1395.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1395.json +++ b/src/main/resources/assets/imsm/models/block/useradded1395.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1396.json b/src/main/resources/assets/imsm/models/block/useradded1396.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1396.json +++ b/src/main/resources/assets/imsm/models/block/useradded1396.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1397.json b/src/main/resources/assets/imsm/models/block/useradded1397.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1397.json +++ b/src/main/resources/assets/imsm/models/block/useradded1397.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1398.json b/src/main/resources/assets/imsm/models/block/useradded1398.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1398.json +++ b/src/main/resources/assets/imsm/models/block/useradded1398.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1399.json b/src/main/resources/assets/imsm/models/block/useradded1399.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1399.json +++ b/src/main/resources/assets/imsm/models/block/useradded1399.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded14.json b/src/main/resources/assets/imsm/models/block/useradded14.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded14.json +++ b/src/main/resources/assets/imsm/models/block/useradded14.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded140.json b/src/main/resources/assets/imsm/models/block/useradded140.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded140.json +++ b/src/main/resources/assets/imsm/models/block/useradded140.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1400.json b/src/main/resources/assets/imsm/models/block/useradded1400.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1400.json +++ b/src/main/resources/assets/imsm/models/block/useradded1400.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1401.json b/src/main/resources/assets/imsm/models/block/useradded1401.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1401.json +++ b/src/main/resources/assets/imsm/models/block/useradded1401.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1402.json b/src/main/resources/assets/imsm/models/block/useradded1402.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1402.json +++ b/src/main/resources/assets/imsm/models/block/useradded1402.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1403.json b/src/main/resources/assets/imsm/models/block/useradded1403.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1403.json +++ b/src/main/resources/assets/imsm/models/block/useradded1403.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1404.json b/src/main/resources/assets/imsm/models/block/useradded1404.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1404.json +++ b/src/main/resources/assets/imsm/models/block/useradded1404.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1405.json b/src/main/resources/assets/imsm/models/block/useradded1405.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1405.json +++ b/src/main/resources/assets/imsm/models/block/useradded1405.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1406.json b/src/main/resources/assets/imsm/models/block/useradded1406.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1406.json +++ b/src/main/resources/assets/imsm/models/block/useradded1406.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1407.json b/src/main/resources/assets/imsm/models/block/useradded1407.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1407.json +++ b/src/main/resources/assets/imsm/models/block/useradded1407.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1408.json b/src/main/resources/assets/imsm/models/block/useradded1408.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1408.json +++ b/src/main/resources/assets/imsm/models/block/useradded1408.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1409.json b/src/main/resources/assets/imsm/models/block/useradded1409.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1409.json +++ b/src/main/resources/assets/imsm/models/block/useradded1409.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded141.json b/src/main/resources/assets/imsm/models/block/useradded141.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded141.json +++ b/src/main/resources/assets/imsm/models/block/useradded141.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1410.json b/src/main/resources/assets/imsm/models/block/useradded1410.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1410.json +++ b/src/main/resources/assets/imsm/models/block/useradded1410.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1411.json b/src/main/resources/assets/imsm/models/block/useradded1411.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1411.json +++ b/src/main/resources/assets/imsm/models/block/useradded1411.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1412.json b/src/main/resources/assets/imsm/models/block/useradded1412.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1412.json +++ b/src/main/resources/assets/imsm/models/block/useradded1412.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1413.json b/src/main/resources/assets/imsm/models/block/useradded1413.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1413.json +++ b/src/main/resources/assets/imsm/models/block/useradded1413.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1414.json b/src/main/resources/assets/imsm/models/block/useradded1414.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1414.json +++ b/src/main/resources/assets/imsm/models/block/useradded1414.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1415.json b/src/main/resources/assets/imsm/models/block/useradded1415.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1415.json +++ b/src/main/resources/assets/imsm/models/block/useradded1415.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1416.json b/src/main/resources/assets/imsm/models/block/useradded1416.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1416.json +++ b/src/main/resources/assets/imsm/models/block/useradded1416.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1417.json b/src/main/resources/assets/imsm/models/block/useradded1417.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1417.json +++ b/src/main/resources/assets/imsm/models/block/useradded1417.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1418.json b/src/main/resources/assets/imsm/models/block/useradded1418.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1418.json +++ b/src/main/resources/assets/imsm/models/block/useradded1418.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1419.json b/src/main/resources/assets/imsm/models/block/useradded1419.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1419.json +++ b/src/main/resources/assets/imsm/models/block/useradded1419.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded142.json b/src/main/resources/assets/imsm/models/block/useradded142.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded142.json +++ b/src/main/resources/assets/imsm/models/block/useradded142.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1420.json b/src/main/resources/assets/imsm/models/block/useradded1420.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1420.json +++ b/src/main/resources/assets/imsm/models/block/useradded1420.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1421.json b/src/main/resources/assets/imsm/models/block/useradded1421.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1421.json +++ b/src/main/resources/assets/imsm/models/block/useradded1421.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1422.json b/src/main/resources/assets/imsm/models/block/useradded1422.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1422.json +++ b/src/main/resources/assets/imsm/models/block/useradded1422.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1423.json b/src/main/resources/assets/imsm/models/block/useradded1423.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1423.json +++ b/src/main/resources/assets/imsm/models/block/useradded1423.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1424.json b/src/main/resources/assets/imsm/models/block/useradded1424.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1424.json +++ b/src/main/resources/assets/imsm/models/block/useradded1424.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1425.json b/src/main/resources/assets/imsm/models/block/useradded1425.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1425.json +++ b/src/main/resources/assets/imsm/models/block/useradded1425.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1426.json b/src/main/resources/assets/imsm/models/block/useradded1426.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1426.json +++ b/src/main/resources/assets/imsm/models/block/useradded1426.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1427.json b/src/main/resources/assets/imsm/models/block/useradded1427.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1427.json +++ b/src/main/resources/assets/imsm/models/block/useradded1427.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1428.json b/src/main/resources/assets/imsm/models/block/useradded1428.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1428.json +++ b/src/main/resources/assets/imsm/models/block/useradded1428.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1429.json b/src/main/resources/assets/imsm/models/block/useradded1429.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1429.json +++ b/src/main/resources/assets/imsm/models/block/useradded1429.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded143.json b/src/main/resources/assets/imsm/models/block/useradded143.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded143.json +++ b/src/main/resources/assets/imsm/models/block/useradded143.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1430.json b/src/main/resources/assets/imsm/models/block/useradded1430.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1430.json +++ b/src/main/resources/assets/imsm/models/block/useradded1430.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1431.json b/src/main/resources/assets/imsm/models/block/useradded1431.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1431.json +++ b/src/main/resources/assets/imsm/models/block/useradded1431.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1432.json b/src/main/resources/assets/imsm/models/block/useradded1432.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1432.json +++ b/src/main/resources/assets/imsm/models/block/useradded1432.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1433.json b/src/main/resources/assets/imsm/models/block/useradded1433.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1433.json +++ b/src/main/resources/assets/imsm/models/block/useradded1433.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1434.json b/src/main/resources/assets/imsm/models/block/useradded1434.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1434.json +++ b/src/main/resources/assets/imsm/models/block/useradded1434.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1435.json b/src/main/resources/assets/imsm/models/block/useradded1435.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1435.json +++ b/src/main/resources/assets/imsm/models/block/useradded1435.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1436.json b/src/main/resources/assets/imsm/models/block/useradded1436.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1436.json +++ b/src/main/resources/assets/imsm/models/block/useradded1436.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1437.json b/src/main/resources/assets/imsm/models/block/useradded1437.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1437.json +++ b/src/main/resources/assets/imsm/models/block/useradded1437.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1438.json b/src/main/resources/assets/imsm/models/block/useradded1438.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1438.json +++ b/src/main/resources/assets/imsm/models/block/useradded1438.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1439.json b/src/main/resources/assets/imsm/models/block/useradded1439.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1439.json +++ b/src/main/resources/assets/imsm/models/block/useradded1439.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded144.json b/src/main/resources/assets/imsm/models/block/useradded144.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded144.json +++ b/src/main/resources/assets/imsm/models/block/useradded144.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1440.json b/src/main/resources/assets/imsm/models/block/useradded1440.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1440.json +++ b/src/main/resources/assets/imsm/models/block/useradded1440.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1441.json b/src/main/resources/assets/imsm/models/block/useradded1441.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1441.json +++ b/src/main/resources/assets/imsm/models/block/useradded1441.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1442.json b/src/main/resources/assets/imsm/models/block/useradded1442.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1442.json +++ b/src/main/resources/assets/imsm/models/block/useradded1442.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1443.json b/src/main/resources/assets/imsm/models/block/useradded1443.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1443.json +++ b/src/main/resources/assets/imsm/models/block/useradded1443.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1444.json b/src/main/resources/assets/imsm/models/block/useradded1444.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1444.json +++ b/src/main/resources/assets/imsm/models/block/useradded1444.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1445.json b/src/main/resources/assets/imsm/models/block/useradded1445.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1445.json +++ b/src/main/resources/assets/imsm/models/block/useradded1445.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1446.json b/src/main/resources/assets/imsm/models/block/useradded1446.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1446.json +++ b/src/main/resources/assets/imsm/models/block/useradded1446.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1447.json b/src/main/resources/assets/imsm/models/block/useradded1447.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1447.json +++ b/src/main/resources/assets/imsm/models/block/useradded1447.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1448.json b/src/main/resources/assets/imsm/models/block/useradded1448.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1448.json +++ b/src/main/resources/assets/imsm/models/block/useradded1448.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1449.json b/src/main/resources/assets/imsm/models/block/useradded1449.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1449.json +++ b/src/main/resources/assets/imsm/models/block/useradded1449.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded145.json b/src/main/resources/assets/imsm/models/block/useradded145.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded145.json +++ b/src/main/resources/assets/imsm/models/block/useradded145.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1450.json b/src/main/resources/assets/imsm/models/block/useradded1450.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1450.json +++ b/src/main/resources/assets/imsm/models/block/useradded1450.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1451.json b/src/main/resources/assets/imsm/models/block/useradded1451.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1451.json +++ b/src/main/resources/assets/imsm/models/block/useradded1451.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1452.json b/src/main/resources/assets/imsm/models/block/useradded1452.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1452.json +++ b/src/main/resources/assets/imsm/models/block/useradded1452.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1453.json b/src/main/resources/assets/imsm/models/block/useradded1453.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1453.json +++ b/src/main/resources/assets/imsm/models/block/useradded1453.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1454.json b/src/main/resources/assets/imsm/models/block/useradded1454.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1454.json +++ b/src/main/resources/assets/imsm/models/block/useradded1454.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1455.json b/src/main/resources/assets/imsm/models/block/useradded1455.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1455.json +++ b/src/main/resources/assets/imsm/models/block/useradded1455.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1456.json b/src/main/resources/assets/imsm/models/block/useradded1456.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1456.json +++ b/src/main/resources/assets/imsm/models/block/useradded1456.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1457.json b/src/main/resources/assets/imsm/models/block/useradded1457.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1457.json +++ b/src/main/resources/assets/imsm/models/block/useradded1457.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1458.json b/src/main/resources/assets/imsm/models/block/useradded1458.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1458.json +++ b/src/main/resources/assets/imsm/models/block/useradded1458.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1459.json b/src/main/resources/assets/imsm/models/block/useradded1459.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1459.json +++ b/src/main/resources/assets/imsm/models/block/useradded1459.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded146.json b/src/main/resources/assets/imsm/models/block/useradded146.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded146.json +++ b/src/main/resources/assets/imsm/models/block/useradded146.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1460.json b/src/main/resources/assets/imsm/models/block/useradded1460.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1460.json +++ b/src/main/resources/assets/imsm/models/block/useradded1460.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1461.json b/src/main/resources/assets/imsm/models/block/useradded1461.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1461.json +++ b/src/main/resources/assets/imsm/models/block/useradded1461.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1462.json b/src/main/resources/assets/imsm/models/block/useradded1462.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1462.json +++ b/src/main/resources/assets/imsm/models/block/useradded1462.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1463.json b/src/main/resources/assets/imsm/models/block/useradded1463.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1463.json +++ b/src/main/resources/assets/imsm/models/block/useradded1463.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1464.json b/src/main/resources/assets/imsm/models/block/useradded1464.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1464.json +++ b/src/main/resources/assets/imsm/models/block/useradded1464.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1465.json b/src/main/resources/assets/imsm/models/block/useradded1465.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1465.json +++ b/src/main/resources/assets/imsm/models/block/useradded1465.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1466.json b/src/main/resources/assets/imsm/models/block/useradded1466.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1466.json +++ b/src/main/resources/assets/imsm/models/block/useradded1466.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1467.json b/src/main/resources/assets/imsm/models/block/useradded1467.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1467.json +++ b/src/main/resources/assets/imsm/models/block/useradded1467.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1468.json b/src/main/resources/assets/imsm/models/block/useradded1468.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1468.json +++ b/src/main/resources/assets/imsm/models/block/useradded1468.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1469.json b/src/main/resources/assets/imsm/models/block/useradded1469.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1469.json +++ b/src/main/resources/assets/imsm/models/block/useradded1469.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded147.json b/src/main/resources/assets/imsm/models/block/useradded147.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded147.json +++ b/src/main/resources/assets/imsm/models/block/useradded147.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1470.json b/src/main/resources/assets/imsm/models/block/useradded1470.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1470.json +++ b/src/main/resources/assets/imsm/models/block/useradded1470.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1471.json b/src/main/resources/assets/imsm/models/block/useradded1471.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1471.json +++ b/src/main/resources/assets/imsm/models/block/useradded1471.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1472.json b/src/main/resources/assets/imsm/models/block/useradded1472.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1472.json +++ b/src/main/resources/assets/imsm/models/block/useradded1472.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1473.json b/src/main/resources/assets/imsm/models/block/useradded1473.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1473.json +++ b/src/main/resources/assets/imsm/models/block/useradded1473.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1474.json b/src/main/resources/assets/imsm/models/block/useradded1474.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1474.json +++ b/src/main/resources/assets/imsm/models/block/useradded1474.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1475.json b/src/main/resources/assets/imsm/models/block/useradded1475.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1475.json +++ b/src/main/resources/assets/imsm/models/block/useradded1475.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1476.json b/src/main/resources/assets/imsm/models/block/useradded1476.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1476.json +++ b/src/main/resources/assets/imsm/models/block/useradded1476.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1477.json b/src/main/resources/assets/imsm/models/block/useradded1477.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1477.json +++ b/src/main/resources/assets/imsm/models/block/useradded1477.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1478.json b/src/main/resources/assets/imsm/models/block/useradded1478.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1478.json +++ b/src/main/resources/assets/imsm/models/block/useradded1478.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1479.json b/src/main/resources/assets/imsm/models/block/useradded1479.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1479.json +++ b/src/main/resources/assets/imsm/models/block/useradded1479.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded148.json b/src/main/resources/assets/imsm/models/block/useradded148.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded148.json +++ b/src/main/resources/assets/imsm/models/block/useradded148.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1480.json b/src/main/resources/assets/imsm/models/block/useradded1480.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1480.json +++ b/src/main/resources/assets/imsm/models/block/useradded1480.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1481.json b/src/main/resources/assets/imsm/models/block/useradded1481.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1481.json +++ b/src/main/resources/assets/imsm/models/block/useradded1481.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1482.json b/src/main/resources/assets/imsm/models/block/useradded1482.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1482.json +++ b/src/main/resources/assets/imsm/models/block/useradded1482.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1483.json b/src/main/resources/assets/imsm/models/block/useradded1483.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1483.json +++ b/src/main/resources/assets/imsm/models/block/useradded1483.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1484.json b/src/main/resources/assets/imsm/models/block/useradded1484.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1484.json +++ b/src/main/resources/assets/imsm/models/block/useradded1484.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1485.json b/src/main/resources/assets/imsm/models/block/useradded1485.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1485.json +++ b/src/main/resources/assets/imsm/models/block/useradded1485.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1486.json b/src/main/resources/assets/imsm/models/block/useradded1486.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1486.json +++ b/src/main/resources/assets/imsm/models/block/useradded1486.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1487.json b/src/main/resources/assets/imsm/models/block/useradded1487.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1487.json +++ b/src/main/resources/assets/imsm/models/block/useradded1487.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1488.json b/src/main/resources/assets/imsm/models/block/useradded1488.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1488.json +++ b/src/main/resources/assets/imsm/models/block/useradded1488.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1489.json b/src/main/resources/assets/imsm/models/block/useradded1489.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1489.json +++ b/src/main/resources/assets/imsm/models/block/useradded1489.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded149.json b/src/main/resources/assets/imsm/models/block/useradded149.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded149.json +++ b/src/main/resources/assets/imsm/models/block/useradded149.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1490.json b/src/main/resources/assets/imsm/models/block/useradded1490.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1490.json +++ b/src/main/resources/assets/imsm/models/block/useradded1490.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1491.json b/src/main/resources/assets/imsm/models/block/useradded1491.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1491.json +++ b/src/main/resources/assets/imsm/models/block/useradded1491.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1492.json b/src/main/resources/assets/imsm/models/block/useradded1492.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1492.json +++ b/src/main/resources/assets/imsm/models/block/useradded1492.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1493.json b/src/main/resources/assets/imsm/models/block/useradded1493.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1493.json +++ b/src/main/resources/assets/imsm/models/block/useradded1493.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1494.json b/src/main/resources/assets/imsm/models/block/useradded1494.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1494.json +++ b/src/main/resources/assets/imsm/models/block/useradded1494.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1495.json b/src/main/resources/assets/imsm/models/block/useradded1495.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1495.json +++ b/src/main/resources/assets/imsm/models/block/useradded1495.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1496.json b/src/main/resources/assets/imsm/models/block/useradded1496.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1496.json +++ b/src/main/resources/assets/imsm/models/block/useradded1496.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1497.json b/src/main/resources/assets/imsm/models/block/useradded1497.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1497.json +++ b/src/main/resources/assets/imsm/models/block/useradded1497.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1498.json b/src/main/resources/assets/imsm/models/block/useradded1498.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1498.json +++ b/src/main/resources/assets/imsm/models/block/useradded1498.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1499.json b/src/main/resources/assets/imsm/models/block/useradded1499.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1499.json +++ b/src/main/resources/assets/imsm/models/block/useradded1499.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded15.json b/src/main/resources/assets/imsm/models/block/useradded15.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded15.json +++ b/src/main/resources/assets/imsm/models/block/useradded15.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded150.json b/src/main/resources/assets/imsm/models/block/useradded150.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded150.json +++ b/src/main/resources/assets/imsm/models/block/useradded150.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1500.json b/src/main/resources/assets/imsm/models/block/useradded1500.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1500.json +++ b/src/main/resources/assets/imsm/models/block/useradded1500.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1501.json b/src/main/resources/assets/imsm/models/block/useradded1501.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1501.json +++ b/src/main/resources/assets/imsm/models/block/useradded1501.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1502.json b/src/main/resources/assets/imsm/models/block/useradded1502.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1502.json +++ b/src/main/resources/assets/imsm/models/block/useradded1502.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1503.json b/src/main/resources/assets/imsm/models/block/useradded1503.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1503.json +++ b/src/main/resources/assets/imsm/models/block/useradded1503.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1504.json b/src/main/resources/assets/imsm/models/block/useradded1504.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1504.json +++ b/src/main/resources/assets/imsm/models/block/useradded1504.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1505.json b/src/main/resources/assets/imsm/models/block/useradded1505.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1505.json +++ b/src/main/resources/assets/imsm/models/block/useradded1505.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1506.json b/src/main/resources/assets/imsm/models/block/useradded1506.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1506.json +++ b/src/main/resources/assets/imsm/models/block/useradded1506.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1507.json b/src/main/resources/assets/imsm/models/block/useradded1507.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1507.json +++ b/src/main/resources/assets/imsm/models/block/useradded1507.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1508.json b/src/main/resources/assets/imsm/models/block/useradded1508.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1508.json +++ b/src/main/resources/assets/imsm/models/block/useradded1508.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1509.json b/src/main/resources/assets/imsm/models/block/useradded1509.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1509.json +++ b/src/main/resources/assets/imsm/models/block/useradded1509.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded151.json b/src/main/resources/assets/imsm/models/block/useradded151.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded151.json +++ b/src/main/resources/assets/imsm/models/block/useradded151.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1510.json b/src/main/resources/assets/imsm/models/block/useradded1510.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1510.json +++ b/src/main/resources/assets/imsm/models/block/useradded1510.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1511.json b/src/main/resources/assets/imsm/models/block/useradded1511.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1511.json +++ b/src/main/resources/assets/imsm/models/block/useradded1511.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1512.json b/src/main/resources/assets/imsm/models/block/useradded1512.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1512.json +++ b/src/main/resources/assets/imsm/models/block/useradded1512.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1513.json b/src/main/resources/assets/imsm/models/block/useradded1513.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1513.json +++ b/src/main/resources/assets/imsm/models/block/useradded1513.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1514.json b/src/main/resources/assets/imsm/models/block/useradded1514.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1514.json +++ b/src/main/resources/assets/imsm/models/block/useradded1514.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1515.json b/src/main/resources/assets/imsm/models/block/useradded1515.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1515.json +++ b/src/main/resources/assets/imsm/models/block/useradded1515.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1516.json b/src/main/resources/assets/imsm/models/block/useradded1516.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1516.json +++ b/src/main/resources/assets/imsm/models/block/useradded1516.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1517.json b/src/main/resources/assets/imsm/models/block/useradded1517.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1517.json +++ b/src/main/resources/assets/imsm/models/block/useradded1517.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1518.json b/src/main/resources/assets/imsm/models/block/useradded1518.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1518.json +++ b/src/main/resources/assets/imsm/models/block/useradded1518.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1519.json b/src/main/resources/assets/imsm/models/block/useradded1519.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1519.json +++ b/src/main/resources/assets/imsm/models/block/useradded1519.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded152.json b/src/main/resources/assets/imsm/models/block/useradded152.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded152.json +++ b/src/main/resources/assets/imsm/models/block/useradded152.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1520.json b/src/main/resources/assets/imsm/models/block/useradded1520.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1520.json +++ b/src/main/resources/assets/imsm/models/block/useradded1520.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1521.json b/src/main/resources/assets/imsm/models/block/useradded1521.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1521.json +++ b/src/main/resources/assets/imsm/models/block/useradded1521.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1522.json b/src/main/resources/assets/imsm/models/block/useradded1522.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1522.json +++ b/src/main/resources/assets/imsm/models/block/useradded1522.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1523.json b/src/main/resources/assets/imsm/models/block/useradded1523.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1523.json +++ b/src/main/resources/assets/imsm/models/block/useradded1523.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1524.json b/src/main/resources/assets/imsm/models/block/useradded1524.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1524.json +++ b/src/main/resources/assets/imsm/models/block/useradded1524.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1525.json b/src/main/resources/assets/imsm/models/block/useradded1525.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1525.json +++ b/src/main/resources/assets/imsm/models/block/useradded1525.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1526.json b/src/main/resources/assets/imsm/models/block/useradded1526.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1526.json +++ b/src/main/resources/assets/imsm/models/block/useradded1526.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1527.json b/src/main/resources/assets/imsm/models/block/useradded1527.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1527.json +++ b/src/main/resources/assets/imsm/models/block/useradded1527.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1528.json b/src/main/resources/assets/imsm/models/block/useradded1528.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1528.json +++ b/src/main/resources/assets/imsm/models/block/useradded1528.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1529.json b/src/main/resources/assets/imsm/models/block/useradded1529.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1529.json +++ b/src/main/resources/assets/imsm/models/block/useradded1529.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded153.json b/src/main/resources/assets/imsm/models/block/useradded153.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded153.json +++ b/src/main/resources/assets/imsm/models/block/useradded153.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1530.json b/src/main/resources/assets/imsm/models/block/useradded1530.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1530.json +++ b/src/main/resources/assets/imsm/models/block/useradded1530.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1531.json b/src/main/resources/assets/imsm/models/block/useradded1531.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1531.json +++ b/src/main/resources/assets/imsm/models/block/useradded1531.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1532.json b/src/main/resources/assets/imsm/models/block/useradded1532.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1532.json +++ b/src/main/resources/assets/imsm/models/block/useradded1532.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1533.json b/src/main/resources/assets/imsm/models/block/useradded1533.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1533.json +++ b/src/main/resources/assets/imsm/models/block/useradded1533.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1534.json b/src/main/resources/assets/imsm/models/block/useradded1534.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1534.json +++ b/src/main/resources/assets/imsm/models/block/useradded1534.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1535.json b/src/main/resources/assets/imsm/models/block/useradded1535.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1535.json +++ b/src/main/resources/assets/imsm/models/block/useradded1535.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1536.json b/src/main/resources/assets/imsm/models/block/useradded1536.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1536.json +++ b/src/main/resources/assets/imsm/models/block/useradded1536.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1537.json b/src/main/resources/assets/imsm/models/block/useradded1537.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1537.json +++ b/src/main/resources/assets/imsm/models/block/useradded1537.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1538.json b/src/main/resources/assets/imsm/models/block/useradded1538.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1538.json +++ b/src/main/resources/assets/imsm/models/block/useradded1538.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1539.json b/src/main/resources/assets/imsm/models/block/useradded1539.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1539.json +++ b/src/main/resources/assets/imsm/models/block/useradded1539.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded154.json b/src/main/resources/assets/imsm/models/block/useradded154.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded154.json +++ b/src/main/resources/assets/imsm/models/block/useradded154.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1540.json b/src/main/resources/assets/imsm/models/block/useradded1540.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1540.json +++ b/src/main/resources/assets/imsm/models/block/useradded1540.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1541.json b/src/main/resources/assets/imsm/models/block/useradded1541.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1541.json +++ b/src/main/resources/assets/imsm/models/block/useradded1541.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1542.json b/src/main/resources/assets/imsm/models/block/useradded1542.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1542.json +++ b/src/main/resources/assets/imsm/models/block/useradded1542.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1543.json b/src/main/resources/assets/imsm/models/block/useradded1543.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1543.json +++ b/src/main/resources/assets/imsm/models/block/useradded1543.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1544.json b/src/main/resources/assets/imsm/models/block/useradded1544.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1544.json +++ b/src/main/resources/assets/imsm/models/block/useradded1544.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1545.json b/src/main/resources/assets/imsm/models/block/useradded1545.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1545.json +++ b/src/main/resources/assets/imsm/models/block/useradded1545.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1546.json b/src/main/resources/assets/imsm/models/block/useradded1546.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1546.json +++ b/src/main/resources/assets/imsm/models/block/useradded1546.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1547.json b/src/main/resources/assets/imsm/models/block/useradded1547.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1547.json +++ b/src/main/resources/assets/imsm/models/block/useradded1547.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1548.json b/src/main/resources/assets/imsm/models/block/useradded1548.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1548.json +++ b/src/main/resources/assets/imsm/models/block/useradded1548.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1549.json b/src/main/resources/assets/imsm/models/block/useradded1549.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1549.json +++ b/src/main/resources/assets/imsm/models/block/useradded1549.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded155.json b/src/main/resources/assets/imsm/models/block/useradded155.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded155.json +++ b/src/main/resources/assets/imsm/models/block/useradded155.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1550.json b/src/main/resources/assets/imsm/models/block/useradded1550.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1550.json +++ b/src/main/resources/assets/imsm/models/block/useradded1550.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1551.json b/src/main/resources/assets/imsm/models/block/useradded1551.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1551.json +++ b/src/main/resources/assets/imsm/models/block/useradded1551.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1552.json b/src/main/resources/assets/imsm/models/block/useradded1552.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1552.json +++ b/src/main/resources/assets/imsm/models/block/useradded1552.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1553.json b/src/main/resources/assets/imsm/models/block/useradded1553.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1553.json +++ b/src/main/resources/assets/imsm/models/block/useradded1553.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1554.json b/src/main/resources/assets/imsm/models/block/useradded1554.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1554.json +++ b/src/main/resources/assets/imsm/models/block/useradded1554.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1555.json b/src/main/resources/assets/imsm/models/block/useradded1555.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1555.json +++ b/src/main/resources/assets/imsm/models/block/useradded1555.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1556.json b/src/main/resources/assets/imsm/models/block/useradded1556.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1556.json +++ b/src/main/resources/assets/imsm/models/block/useradded1556.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1557.json b/src/main/resources/assets/imsm/models/block/useradded1557.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1557.json +++ b/src/main/resources/assets/imsm/models/block/useradded1557.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1558.json b/src/main/resources/assets/imsm/models/block/useradded1558.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1558.json +++ b/src/main/resources/assets/imsm/models/block/useradded1558.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1559.json b/src/main/resources/assets/imsm/models/block/useradded1559.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1559.json +++ b/src/main/resources/assets/imsm/models/block/useradded1559.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded156.json b/src/main/resources/assets/imsm/models/block/useradded156.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded156.json +++ b/src/main/resources/assets/imsm/models/block/useradded156.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1560.json b/src/main/resources/assets/imsm/models/block/useradded1560.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1560.json +++ b/src/main/resources/assets/imsm/models/block/useradded1560.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1561.json b/src/main/resources/assets/imsm/models/block/useradded1561.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1561.json +++ b/src/main/resources/assets/imsm/models/block/useradded1561.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1562.json b/src/main/resources/assets/imsm/models/block/useradded1562.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1562.json +++ b/src/main/resources/assets/imsm/models/block/useradded1562.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1563.json b/src/main/resources/assets/imsm/models/block/useradded1563.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1563.json +++ b/src/main/resources/assets/imsm/models/block/useradded1563.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1564.json b/src/main/resources/assets/imsm/models/block/useradded1564.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1564.json +++ b/src/main/resources/assets/imsm/models/block/useradded1564.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1565.json b/src/main/resources/assets/imsm/models/block/useradded1565.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1565.json +++ b/src/main/resources/assets/imsm/models/block/useradded1565.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1566.json b/src/main/resources/assets/imsm/models/block/useradded1566.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1566.json +++ b/src/main/resources/assets/imsm/models/block/useradded1566.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1567.json b/src/main/resources/assets/imsm/models/block/useradded1567.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1567.json +++ b/src/main/resources/assets/imsm/models/block/useradded1567.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1568.json b/src/main/resources/assets/imsm/models/block/useradded1568.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1568.json +++ b/src/main/resources/assets/imsm/models/block/useradded1568.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1569.json b/src/main/resources/assets/imsm/models/block/useradded1569.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1569.json +++ b/src/main/resources/assets/imsm/models/block/useradded1569.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded157.json b/src/main/resources/assets/imsm/models/block/useradded157.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded157.json +++ b/src/main/resources/assets/imsm/models/block/useradded157.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1570.json b/src/main/resources/assets/imsm/models/block/useradded1570.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1570.json +++ b/src/main/resources/assets/imsm/models/block/useradded1570.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1571.json b/src/main/resources/assets/imsm/models/block/useradded1571.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1571.json +++ b/src/main/resources/assets/imsm/models/block/useradded1571.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1572.json b/src/main/resources/assets/imsm/models/block/useradded1572.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1572.json +++ b/src/main/resources/assets/imsm/models/block/useradded1572.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1573.json b/src/main/resources/assets/imsm/models/block/useradded1573.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1573.json +++ b/src/main/resources/assets/imsm/models/block/useradded1573.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1574.json b/src/main/resources/assets/imsm/models/block/useradded1574.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1574.json +++ b/src/main/resources/assets/imsm/models/block/useradded1574.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1575.json b/src/main/resources/assets/imsm/models/block/useradded1575.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1575.json +++ b/src/main/resources/assets/imsm/models/block/useradded1575.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1576.json b/src/main/resources/assets/imsm/models/block/useradded1576.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1576.json +++ b/src/main/resources/assets/imsm/models/block/useradded1576.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1577.json b/src/main/resources/assets/imsm/models/block/useradded1577.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1577.json +++ b/src/main/resources/assets/imsm/models/block/useradded1577.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1578.json b/src/main/resources/assets/imsm/models/block/useradded1578.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1578.json +++ b/src/main/resources/assets/imsm/models/block/useradded1578.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1579.json b/src/main/resources/assets/imsm/models/block/useradded1579.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1579.json +++ b/src/main/resources/assets/imsm/models/block/useradded1579.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded158.json b/src/main/resources/assets/imsm/models/block/useradded158.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded158.json +++ b/src/main/resources/assets/imsm/models/block/useradded158.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1580.json b/src/main/resources/assets/imsm/models/block/useradded1580.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1580.json +++ b/src/main/resources/assets/imsm/models/block/useradded1580.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1581.json b/src/main/resources/assets/imsm/models/block/useradded1581.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1581.json +++ b/src/main/resources/assets/imsm/models/block/useradded1581.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1582.json b/src/main/resources/assets/imsm/models/block/useradded1582.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1582.json +++ b/src/main/resources/assets/imsm/models/block/useradded1582.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1583.json b/src/main/resources/assets/imsm/models/block/useradded1583.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1583.json +++ b/src/main/resources/assets/imsm/models/block/useradded1583.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1584.json b/src/main/resources/assets/imsm/models/block/useradded1584.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1584.json +++ b/src/main/resources/assets/imsm/models/block/useradded1584.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1585.json b/src/main/resources/assets/imsm/models/block/useradded1585.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1585.json +++ b/src/main/resources/assets/imsm/models/block/useradded1585.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1586.json b/src/main/resources/assets/imsm/models/block/useradded1586.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1586.json +++ b/src/main/resources/assets/imsm/models/block/useradded1586.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1587.json b/src/main/resources/assets/imsm/models/block/useradded1587.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1587.json +++ b/src/main/resources/assets/imsm/models/block/useradded1587.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1588.json b/src/main/resources/assets/imsm/models/block/useradded1588.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1588.json +++ b/src/main/resources/assets/imsm/models/block/useradded1588.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1589.json b/src/main/resources/assets/imsm/models/block/useradded1589.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1589.json +++ b/src/main/resources/assets/imsm/models/block/useradded1589.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded159.json b/src/main/resources/assets/imsm/models/block/useradded159.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded159.json +++ b/src/main/resources/assets/imsm/models/block/useradded159.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1590.json b/src/main/resources/assets/imsm/models/block/useradded1590.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1590.json +++ b/src/main/resources/assets/imsm/models/block/useradded1590.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1591.json b/src/main/resources/assets/imsm/models/block/useradded1591.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1591.json +++ b/src/main/resources/assets/imsm/models/block/useradded1591.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1592.json b/src/main/resources/assets/imsm/models/block/useradded1592.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1592.json +++ b/src/main/resources/assets/imsm/models/block/useradded1592.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1593.json b/src/main/resources/assets/imsm/models/block/useradded1593.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1593.json +++ b/src/main/resources/assets/imsm/models/block/useradded1593.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1594.json b/src/main/resources/assets/imsm/models/block/useradded1594.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1594.json +++ b/src/main/resources/assets/imsm/models/block/useradded1594.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1595.json b/src/main/resources/assets/imsm/models/block/useradded1595.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1595.json +++ b/src/main/resources/assets/imsm/models/block/useradded1595.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1596.json b/src/main/resources/assets/imsm/models/block/useradded1596.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1596.json +++ b/src/main/resources/assets/imsm/models/block/useradded1596.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1597.json b/src/main/resources/assets/imsm/models/block/useradded1597.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1597.json +++ b/src/main/resources/assets/imsm/models/block/useradded1597.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1598.json b/src/main/resources/assets/imsm/models/block/useradded1598.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1598.json +++ b/src/main/resources/assets/imsm/models/block/useradded1598.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1599.json b/src/main/resources/assets/imsm/models/block/useradded1599.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1599.json +++ b/src/main/resources/assets/imsm/models/block/useradded1599.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded16.json b/src/main/resources/assets/imsm/models/block/useradded16.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded16.json +++ b/src/main/resources/assets/imsm/models/block/useradded16.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded160.json b/src/main/resources/assets/imsm/models/block/useradded160.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded160.json +++ b/src/main/resources/assets/imsm/models/block/useradded160.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1600.json b/src/main/resources/assets/imsm/models/block/useradded1600.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1600.json +++ b/src/main/resources/assets/imsm/models/block/useradded1600.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1601.json b/src/main/resources/assets/imsm/models/block/useradded1601.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1601.json +++ b/src/main/resources/assets/imsm/models/block/useradded1601.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1602.json b/src/main/resources/assets/imsm/models/block/useradded1602.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1602.json +++ b/src/main/resources/assets/imsm/models/block/useradded1602.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1603.json b/src/main/resources/assets/imsm/models/block/useradded1603.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1603.json +++ b/src/main/resources/assets/imsm/models/block/useradded1603.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1604.json b/src/main/resources/assets/imsm/models/block/useradded1604.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1604.json +++ b/src/main/resources/assets/imsm/models/block/useradded1604.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1605.json b/src/main/resources/assets/imsm/models/block/useradded1605.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1605.json +++ b/src/main/resources/assets/imsm/models/block/useradded1605.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1606.json b/src/main/resources/assets/imsm/models/block/useradded1606.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1606.json +++ b/src/main/resources/assets/imsm/models/block/useradded1606.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1607.json b/src/main/resources/assets/imsm/models/block/useradded1607.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1607.json +++ b/src/main/resources/assets/imsm/models/block/useradded1607.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1608.json b/src/main/resources/assets/imsm/models/block/useradded1608.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1608.json +++ b/src/main/resources/assets/imsm/models/block/useradded1608.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1609.json b/src/main/resources/assets/imsm/models/block/useradded1609.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1609.json +++ b/src/main/resources/assets/imsm/models/block/useradded1609.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded161.json b/src/main/resources/assets/imsm/models/block/useradded161.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded161.json +++ b/src/main/resources/assets/imsm/models/block/useradded161.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1610.json b/src/main/resources/assets/imsm/models/block/useradded1610.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1610.json +++ b/src/main/resources/assets/imsm/models/block/useradded1610.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1611.json b/src/main/resources/assets/imsm/models/block/useradded1611.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1611.json +++ b/src/main/resources/assets/imsm/models/block/useradded1611.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1612.json b/src/main/resources/assets/imsm/models/block/useradded1612.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1612.json +++ b/src/main/resources/assets/imsm/models/block/useradded1612.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1613.json b/src/main/resources/assets/imsm/models/block/useradded1613.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1613.json +++ b/src/main/resources/assets/imsm/models/block/useradded1613.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1614.json b/src/main/resources/assets/imsm/models/block/useradded1614.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1614.json +++ b/src/main/resources/assets/imsm/models/block/useradded1614.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1615.json b/src/main/resources/assets/imsm/models/block/useradded1615.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1615.json +++ b/src/main/resources/assets/imsm/models/block/useradded1615.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1616.json b/src/main/resources/assets/imsm/models/block/useradded1616.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1616.json +++ b/src/main/resources/assets/imsm/models/block/useradded1616.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1617.json b/src/main/resources/assets/imsm/models/block/useradded1617.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1617.json +++ b/src/main/resources/assets/imsm/models/block/useradded1617.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1618.json b/src/main/resources/assets/imsm/models/block/useradded1618.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1618.json +++ b/src/main/resources/assets/imsm/models/block/useradded1618.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1619.json b/src/main/resources/assets/imsm/models/block/useradded1619.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1619.json +++ b/src/main/resources/assets/imsm/models/block/useradded1619.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded162.json b/src/main/resources/assets/imsm/models/block/useradded162.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded162.json +++ b/src/main/resources/assets/imsm/models/block/useradded162.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1620.json b/src/main/resources/assets/imsm/models/block/useradded1620.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1620.json +++ b/src/main/resources/assets/imsm/models/block/useradded1620.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1621.json b/src/main/resources/assets/imsm/models/block/useradded1621.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1621.json +++ b/src/main/resources/assets/imsm/models/block/useradded1621.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1622.json b/src/main/resources/assets/imsm/models/block/useradded1622.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1622.json +++ b/src/main/resources/assets/imsm/models/block/useradded1622.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1623.json b/src/main/resources/assets/imsm/models/block/useradded1623.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1623.json +++ b/src/main/resources/assets/imsm/models/block/useradded1623.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1624.json b/src/main/resources/assets/imsm/models/block/useradded1624.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1624.json +++ b/src/main/resources/assets/imsm/models/block/useradded1624.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1625.json b/src/main/resources/assets/imsm/models/block/useradded1625.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1625.json +++ b/src/main/resources/assets/imsm/models/block/useradded1625.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1626.json b/src/main/resources/assets/imsm/models/block/useradded1626.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1626.json +++ b/src/main/resources/assets/imsm/models/block/useradded1626.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1627.json b/src/main/resources/assets/imsm/models/block/useradded1627.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1627.json +++ b/src/main/resources/assets/imsm/models/block/useradded1627.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1628.json b/src/main/resources/assets/imsm/models/block/useradded1628.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1628.json +++ b/src/main/resources/assets/imsm/models/block/useradded1628.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1629.json b/src/main/resources/assets/imsm/models/block/useradded1629.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1629.json +++ b/src/main/resources/assets/imsm/models/block/useradded1629.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded163.json b/src/main/resources/assets/imsm/models/block/useradded163.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded163.json +++ b/src/main/resources/assets/imsm/models/block/useradded163.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1630.json b/src/main/resources/assets/imsm/models/block/useradded1630.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1630.json +++ b/src/main/resources/assets/imsm/models/block/useradded1630.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1631.json b/src/main/resources/assets/imsm/models/block/useradded1631.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1631.json +++ b/src/main/resources/assets/imsm/models/block/useradded1631.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1632.json b/src/main/resources/assets/imsm/models/block/useradded1632.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1632.json +++ b/src/main/resources/assets/imsm/models/block/useradded1632.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1633.json b/src/main/resources/assets/imsm/models/block/useradded1633.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1633.json +++ b/src/main/resources/assets/imsm/models/block/useradded1633.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1634.json b/src/main/resources/assets/imsm/models/block/useradded1634.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1634.json +++ b/src/main/resources/assets/imsm/models/block/useradded1634.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1635.json b/src/main/resources/assets/imsm/models/block/useradded1635.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1635.json +++ b/src/main/resources/assets/imsm/models/block/useradded1635.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1636.json b/src/main/resources/assets/imsm/models/block/useradded1636.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1636.json +++ b/src/main/resources/assets/imsm/models/block/useradded1636.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1637.json b/src/main/resources/assets/imsm/models/block/useradded1637.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1637.json +++ b/src/main/resources/assets/imsm/models/block/useradded1637.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1638.json b/src/main/resources/assets/imsm/models/block/useradded1638.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1638.json +++ b/src/main/resources/assets/imsm/models/block/useradded1638.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1639.json b/src/main/resources/assets/imsm/models/block/useradded1639.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1639.json +++ b/src/main/resources/assets/imsm/models/block/useradded1639.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded164.json b/src/main/resources/assets/imsm/models/block/useradded164.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded164.json +++ b/src/main/resources/assets/imsm/models/block/useradded164.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1640.json b/src/main/resources/assets/imsm/models/block/useradded1640.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1640.json +++ b/src/main/resources/assets/imsm/models/block/useradded1640.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1641.json b/src/main/resources/assets/imsm/models/block/useradded1641.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1641.json +++ b/src/main/resources/assets/imsm/models/block/useradded1641.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1642.json b/src/main/resources/assets/imsm/models/block/useradded1642.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1642.json +++ b/src/main/resources/assets/imsm/models/block/useradded1642.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1643.json b/src/main/resources/assets/imsm/models/block/useradded1643.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1643.json +++ b/src/main/resources/assets/imsm/models/block/useradded1643.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1644.json b/src/main/resources/assets/imsm/models/block/useradded1644.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1644.json +++ b/src/main/resources/assets/imsm/models/block/useradded1644.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1645.json b/src/main/resources/assets/imsm/models/block/useradded1645.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1645.json +++ b/src/main/resources/assets/imsm/models/block/useradded1645.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1646.json b/src/main/resources/assets/imsm/models/block/useradded1646.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1646.json +++ b/src/main/resources/assets/imsm/models/block/useradded1646.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1647.json b/src/main/resources/assets/imsm/models/block/useradded1647.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1647.json +++ b/src/main/resources/assets/imsm/models/block/useradded1647.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1648.json b/src/main/resources/assets/imsm/models/block/useradded1648.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1648.json +++ b/src/main/resources/assets/imsm/models/block/useradded1648.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1649.json b/src/main/resources/assets/imsm/models/block/useradded1649.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1649.json +++ b/src/main/resources/assets/imsm/models/block/useradded1649.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded165.json b/src/main/resources/assets/imsm/models/block/useradded165.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded165.json +++ b/src/main/resources/assets/imsm/models/block/useradded165.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1650.json b/src/main/resources/assets/imsm/models/block/useradded1650.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1650.json +++ b/src/main/resources/assets/imsm/models/block/useradded1650.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1651.json b/src/main/resources/assets/imsm/models/block/useradded1651.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1651.json +++ b/src/main/resources/assets/imsm/models/block/useradded1651.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1652.json b/src/main/resources/assets/imsm/models/block/useradded1652.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1652.json +++ b/src/main/resources/assets/imsm/models/block/useradded1652.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1653.json b/src/main/resources/assets/imsm/models/block/useradded1653.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1653.json +++ b/src/main/resources/assets/imsm/models/block/useradded1653.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1654.json b/src/main/resources/assets/imsm/models/block/useradded1654.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1654.json +++ b/src/main/resources/assets/imsm/models/block/useradded1654.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1655.json b/src/main/resources/assets/imsm/models/block/useradded1655.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1655.json +++ b/src/main/resources/assets/imsm/models/block/useradded1655.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1656.json b/src/main/resources/assets/imsm/models/block/useradded1656.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1656.json +++ b/src/main/resources/assets/imsm/models/block/useradded1656.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1657.json b/src/main/resources/assets/imsm/models/block/useradded1657.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1657.json +++ b/src/main/resources/assets/imsm/models/block/useradded1657.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1658.json b/src/main/resources/assets/imsm/models/block/useradded1658.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1658.json +++ b/src/main/resources/assets/imsm/models/block/useradded1658.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1659.json b/src/main/resources/assets/imsm/models/block/useradded1659.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1659.json +++ b/src/main/resources/assets/imsm/models/block/useradded1659.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded166.json b/src/main/resources/assets/imsm/models/block/useradded166.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded166.json +++ b/src/main/resources/assets/imsm/models/block/useradded166.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1660.json b/src/main/resources/assets/imsm/models/block/useradded1660.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1660.json +++ b/src/main/resources/assets/imsm/models/block/useradded1660.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1661.json b/src/main/resources/assets/imsm/models/block/useradded1661.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1661.json +++ b/src/main/resources/assets/imsm/models/block/useradded1661.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1662.json b/src/main/resources/assets/imsm/models/block/useradded1662.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1662.json +++ b/src/main/resources/assets/imsm/models/block/useradded1662.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1663.json b/src/main/resources/assets/imsm/models/block/useradded1663.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1663.json +++ b/src/main/resources/assets/imsm/models/block/useradded1663.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1664.json b/src/main/resources/assets/imsm/models/block/useradded1664.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1664.json +++ b/src/main/resources/assets/imsm/models/block/useradded1664.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1665.json b/src/main/resources/assets/imsm/models/block/useradded1665.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1665.json +++ b/src/main/resources/assets/imsm/models/block/useradded1665.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1666.json b/src/main/resources/assets/imsm/models/block/useradded1666.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1666.json +++ b/src/main/resources/assets/imsm/models/block/useradded1666.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1667.json b/src/main/resources/assets/imsm/models/block/useradded1667.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1667.json +++ b/src/main/resources/assets/imsm/models/block/useradded1667.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1668.json b/src/main/resources/assets/imsm/models/block/useradded1668.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1668.json +++ b/src/main/resources/assets/imsm/models/block/useradded1668.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1669.json b/src/main/resources/assets/imsm/models/block/useradded1669.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1669.json +++ b/src/main/resources/assets/imsm/models/block/useradded1669.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded167.json b/src/main/resources/assets/imsm/models/block/useradded167.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded167.json +++ b/src/main/resources/assets/imsm/models/block/useradded167.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1670.json b/src/main/resources/assets/imsm/models/block/useradded1670.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1670.json +++ b/src/main/resources/assets/imsm/models/block/useradded1670.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1671.json b/src/main/resources/assets/imsm/models/block/useradded1671.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1671.json +++ b/src/main/resources/assets/imsm/models/block/useradded1671.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1672.json b/src/main/resources/assets/imsm/models/block/useradded1672.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1672.json +++ b/src/main/resources/assets/imsm/models/block/useradded1672.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1673.json b/src/main/resources/assets/imsm/models/block/useradded1673.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1673.json +++ b/src/main/resources/assets/imsm/models/block/useradded1673.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1674.json b/src/main/resources/assets/imsm/models/block/useradded1674.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1674.json +++ b/src/main/resources/assets/imsm/models/block/useradded1674.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1675.json b/src/main/resources/assets/imsm/models/block/useradded1675.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1675.json +++ b/src/main/resources/assets/imsm/models/block/useradded1675.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1676.json b/src/main/resources/assets/imsm/models/block/useradded1676.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1676.json +++ b/src/main/resources/assets/imsm/models/block/useradded1676.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1677.json b/src/main/resources/assets/imsm/models/block/useradded1677.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1677.json +++ b/src/main/resources/assets/imsm/models/block/useradded1677.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1678.json b/src/main/resources/assets/imsm/models/block/useradded1678.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1678.json +++ b/src/main/resources/assets/imsm/models/block/useradded1678.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1679.json b/src/main/resources/assets/imsm/models/block/useradded1679.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1679.json +++ b/src/main/resources/assets/imsm/models/block/useradded1679.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded168.json b/src/main/resources/assets/imsm/models/block/useradded168.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded168.json +++ b/src/main/resources/assets/imsm/models/block/useradded168.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1680.json b/src/main/resources/assets/imsm/models/block/useradded1680.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1680.json +++ b/src/main/resources/assets/imsm/models/block/useradded1680.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1681.json b/src/main/resources/assets/imsm/models/block/useradded1681.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1681.json +++ b/src/main/resources/assets/imsm/models/block/useradded1681.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1682.json b/src/main/resources/assets/imsm/models/block/useradded1682.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1682.json +++ b/src/main/resources/assets/imsm/models/block/useradded1682.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1683.json b/src/main/resources/assets/imsm/models/block/useradded1683.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1683.json +++ b/src/main/resources/assets/imsm/models/block/useradded1683.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1684.json b/src/main/resources/assets/imsm/models/block/useradded1684.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1684.json +++ b/src/main/resources/assets/imsm/models/block/useradded1684.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1685.json b/src/main/resources/assets/imsm/models/block/useradded1685.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1685.json +++ b/src/main/resources/assets/imsm/models/block/useradded1685.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1686.json b/src/main/resources/assets/imsm/models/block/useradded1686.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1686.json +++ b/src/main/resources/assets/imsm/models/block/useradded1686.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1687.json b/src/main/resources/assets/imsm/models/block/useradded1687.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1687.json +++ b/src/main/resources/assets/imsm/models/block/useradded1687.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1688.json b/src/main/resources/assets/imsm/models/block/useradded1688.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1688.json +++ b/src/main/resources/assets/imsm/models/block/useradded1688.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1689.json b/src/main/resources/assets/imsm/models/block/useradded1689.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1689.json +++ b/src/main/resources/assets/imsm/models/block/useradded1689.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded169.json b/src/main/resources/assets/imsm/models/block/useradded169.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded169.json +++ b/src/main/resources/assets/imsm/models/block/useradded169.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1690.json b/src/main/resources/assets/imsm/models/block/useradded1690.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1690.json +++ b/src/main/resources/assets/imsm/models/block/useradded1690.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1691.json b/src/main/resources/assets/imsm/models/block/useradded1691.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1691.json +++ b/src/main/resources/assets/imsm/models/block/useradded1691.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1692.json b/src/main/resources/assets/imsm/models/block/useradded1692.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1692.json +++ b/src/main/resources/assets/imsm/models/block/useradded1692.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1693.json b/src/main/resources/assets/imsm/models/block/useradded1693.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1693.json +++ b/src/main/resources/assets/imsm/models/block/useradded1693.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1694.json b/src/main/resources/assets/imsm/models/block/useradded1694.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1694.json +++ b/src/main/resources/assets/imsm/models/block/useradded1694.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1695.json b/src/main/resources/assets/imsm/models/block/useradded1695.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1695.json +++ b/src/main/resources/assets/imsm/models/block/useradded1695.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1696.json b/src/main/resources/assets/imsm/models/block/useradded1696.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1696.json +++ b/src/main/resources/assets/imsm/models/block/useradded1696.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1697.json b/src/main/resources/assets/imsm/models/block/useradded1697.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1697.json +++ b/src/main/resources/assets/imsm/models/block/useradded1697.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1698.json b/src/main/resources/assets/imsm/models/block/useradded1698.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1698.json +++ b/src/main/resources/assets/imsm/models/block/useradded1698.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1699.json b/src/main/resources/assets/imsm/models/block/useradded1699.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1699.json +++ b/src/main/resources/assets/imsm/models/block/useradded1699.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded17.json b/src/main/resources/assets/imsm/models/block/useradded17.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded17.json +++ b/src/main/resources/assets/imsm/models/block/useradded17.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded170.json b/src/main/resources/assets/imsm/models/block/useradded170.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded170.json +++ b/src/main/resources/assets/imsm/models/block/useradded170.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1700.json b/src/main/resources/assets/imsm/models/block/useradded1700.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1700.json +++ b/src/main/resources/assets/imsm/models/block/useradded1700.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1701.json b/src/main/resources/assets/imsm/models/block/useradded1701.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1701.json +++ b/src/main/resources/assets/imsm/models/block/useradded1701.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1702.json b/src/main/resources/assets/imsm/models/block/useradded1702.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1702.json +++ b/src/main/resources/assets/imsm/models/block/useradded1702.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1703.json b/src/main/resources/assets/imsm/models/block/useradded1703.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1703.json +++ b/src/main/resources/assets/imsm/models/block/useradded1703.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1704.json b/src/main/resources/assets/imsm/models/block/useradded1704.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1704.json +++ b/src/main/resources/assets/imsm/models/block/useradded1704.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1705.json b/src/main/resources/assets/imsm/models/block/useradded1705.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1705.json +++ b/src/main/resources/assets/imsm/models/block/useradded1705.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1706.json b/src/main/resources/assets/imsm/models/block/useradded1706.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1706.json +++ b/src/main/resources/assets/imsm/models/block/useradded1706.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1707.json b/src/main/resources/assets/imsm/models/block/useradded1707.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1707.json +++ b/src/main/resources/assets/imsm/models/block/useradded1707.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1708.json b/src/main/resources/assets/imsm/models/block/useradded1708.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1708.json +++ b/src/main/resources/assets/imsm/models/block/useradded1708.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1709.json b/src/main/resources/assets/imsm/models/block/useradded1709.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1709.json +++ b/src/main/resources/assets/imsm/models/block/useradded1709.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded171.json b/src/main/resources/assets/imsm/models/block/useradded171.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded171.json +++ b/src/main/resources/assets/imsm/models/block/useradded171.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1710.json b/src/main/resources/assets/imsm/models/block/useradded1710.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1710.json +++ b/src/main/resources/assets/imsm/models/block/useradded1710.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1711.json b/src/main/resources/assets/imsm/models/block/useradded1711.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1711.json +++ b/src/main/resources/assets/imsm/models/block/useradded1711.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1712.json b/src/main/resources/assets/imsm/models/block/useradded1712.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1712.json +++ b/src/main/resources/assets/imsm/models/block/useradded1712.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1713.json b/src/main/resources/assets/imsm/models/block/useradded1713.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1713.json +++ b/src/main/resources/assets/imsm/models/block/useradded1713.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1714.json b/src/main/resources/assets/imsm/models/block/useradded1714.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1714.json +++ b/src/main/resources/assets/imsm/models/block/useradded1714.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1715.json b/src/main/resources/assets/imsm/models/block/useradded1715.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1715.json +++ b/src/main/resources/assets/imsm/models/block/useradded1715.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1716.json b/src/main/resources/assets/imsm/models/block/useradded1716.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1716.json +++ b/src/main/resources/assets/imsm/models/block/useradded1716.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1717.json b/src/main/resources/assets/imsm/models/block/useradded1717.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1717.json +++ b/src/main/resources/assets/imsm/models/block/useradded1717.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1718.json b/src/main/resources/assets/imsm/models/block/useradded1718.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1718.json +++ b/src/main/resources/assets/imsm/models/block/useradded1718.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1719.json b/src/main/resources/assets/imsm/models/block/useradded1719.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1719.json +++ b/src/main/resources/assets/imsm/models/block/useradded1719.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded172.json b/src/main/resources/assets/imsm/models/block/useradded172.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded172.json +++ b/src/main/resources/assets/imsm/models/block/useradded172.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1720.json b/src/main/resources/assets/imsm/models/block/useradded1720.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1720.json +++ b/src/main/resources/assets/imsm/models/block/useradded1720.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1721.json b/src/main/resources/assets/imsm/models/block/useradded1721.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1721.json +++ b/src/main/resources/assets/imsm/models/block/useradded1721.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1722.json b/src/main/resources/assets/imsm/models/block/useradded1722.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1722.json +++ b/src/main/resources/assets/imsm/models/block/useradded1722.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1723.json b/src/main/resources/assets/imsm/models/block/useradded1723.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1723.json +++ b/src/main/resources/assets/imsm/models/block/useradded1723.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1724.json b/src/main/resources/assets/imsm/models/block/useradded1724.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1724.json +++ b/src/main/resources/assets/imsm/models/block/useradded1724.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1725.json b/src/main/resources/assets/imsm/models/block/useradded1725.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1725.json +++ b/src/main/resources/assets/imsm/models/block/useradded1725.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1726.json b/src/main/resources/assets/imsm/models/block/useradded1726.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1726.json +++ b/src/main/resources/assets/imsm/models/block/useradded1726.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1727.json b/src/main/resources/assets/imsm/models/block/useradded1727.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1727.json +++ b/src/main/resources/assets/imsm/models/block/useradded1727.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1728.json b/src/main/resources/assets/imsm/models/block/useradded1728.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1728.json +++ b/src/main/resources/assets/imsm/models/block/useradded1728.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1729.json b/src/main/resources/assets/imsm/models/block/useradded1729.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1729.json +++ b/src/main/resources/assets/imsm/models/block/useradded1729.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded173.json b/src/main/resources/assets/imsm/models/block/useradded173.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded173.json +++ b/src/main/resources/assets/imsm/models/block/useradded173.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1730.json b/src/main/resources/assets/imsm/models/block/useradded1730.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1730.json +++ b/src/main/resources/assets/imsm/models/block/useradded1730.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1731.json b/src/main/resources/assets/imsm/models/block/useradded1731.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1731.json +++ b/src/main/resources/assets/imsm/models/block/useradded1731.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1732.json b/src/main/resources/assets/imsm/models/block/useradded1732.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1732.json +++ b/src/main/resources/assets/imsm/models/block/useradded1732.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1733.json b/src/main/resources/assets/imsm/models/block/useradded1733.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1733.json +++ b/src/main/resources/assets/imsm/models/block/useradded1733.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1734.json b/src/main/resources/assets/imsm/models/block/useradded1734.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1734.json +++ b/src/main/resources/assets/imsm/models/block/useradded1734.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1735.json b/src/main/resources/assets/imsm/models/block/useradded1735.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1735.json +++ b/src/main/resources/assets/imsm/models/block/useradded1735.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1736.json b/src/main/resources/assets/imsm/models/block/useradded1736.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1736.json +++ b/src/main/resources/assets/imsm/models/block/useradded1736.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1737.json b/src/main/resources/assets/imsm/models/block/useradded1737.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1737.json +++ b/src/main/resources/assets/imsm/models/block/useradded1737.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1738.json b/src/main/resources/assets/imsm/models/block/useradded1738.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1738.json +++ b/src/main/resources/assets/imsm/models/block/useradded1738.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1739.json b/src/main/resources/assets/imsm/models/block/useradded1739.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1739.json +++ b/src/main/resources/assets/imsm/models/block/useradded1739.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded174.json b/src/main/resources/assets/imsm/models/block/useradded174.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded174.json +++ b/src/main/resources/assets/imsm/models/block/useradded174.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1740.json b/src/main/resources/assets/imsm/models/block/useradded1740.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1740.json +++ b/src/main/resources/assets/imsm/models/block/useradded1740.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1741.json b/src/main/resources/assets/imsm/models/block/useradded1741.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1741.json +++ b/src/main/resources/assets/imsm/models/block/useradded1741.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1742.json b/src/main/resources/assets/imsm/models/block/useradded1742.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1742.json +++ b/src/main/resources/assets/imsm/models/block/useradded1742.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1743.json b/src/main/resources/assets/imsm/models/block/useradded1743.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1743.json +++ b/src/main/resources/assets/imsm/models/block/useradded1743.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1744.json b/src/main/resources/assets/imsm/models/block/useradded1744.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1744.json +++ b/src/main/resources/assets/imsm/models/block/useradded1744.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1745.json b/src/main/resources/assets/imsm/models/block/useradded1745.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1745.json +++ b/src/main/resources/assets/imsm/models/block/useradded1745.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1746.json b/src/main/resources/assets/imsm/models/block/useradded1746.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1746.json +++ b/src/main/resources/assets/imsm/models/block/useradded1746.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1747.json b/src/main/resources/assets/imsm/models/block/useradded1747.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1747.json +++ b/src/main/resources/assets/imsm/models/block/useradded1747.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1748.json b/src/main/resources/assets/imsm/models/block/useradded1748.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1748.json +++ b/src/main/resources/assets/imsm/models/block/useradded1748.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1749.json b/src/main/resources/assets/imsm/models/block/useradded1749.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1749.json +++ b/src/main/resources/assets/imsm/models/block/useradded1749.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded175.json b/src/main/resources/assets/imsm/models/block/useradded175.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded175.json +++ b/src/main/resources/assets/imsm/models/block/useradded175.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1750.json b/src/main/resources/assets/imsm/models/block/useradded1750.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1750.json +++ b/src/main/resources/assets/imsm/models/block/useradded1750.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1751.json b/src/main/resources/assets/imsm/models/block/useradded1751.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1751.json +++ b/src/main/resources/assets/imsm/models/block/useradded1751.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1752.json b/src/main/resources/assets/imsm/models/block/useradded1752.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1752.json +++ b/src/main/resources/assets/imsm/models/block/useradded1752.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1753.json b/src/main/resources/assets/imsm/models/block/useradded1753.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1753.json +++ b/src/main/resources/assets/imsm/models/block/useradded1753.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1754.json b/src/main/resources/assets/imsm/models/block/useradded1754.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1754.json +++ b/src/main/resources/assets/imsm/models/block/useradded1754.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1755.json b/src/main/resources/assets/imsm/models/block/useradded1755.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1755.json +++ b/src/main/resources/assets/imsm/models/block/useradded1755.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1756.json b/src/main/resources/assets/imsm/models/block/useradded1756.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1756.json +++ b/src/main/resources/assets/imsm/models/block/useradded1756.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1757.json b/src/main/resources/assets/imsm/models/block/useradded1757.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1757.json +++ b/src/main/resources/assets/imsm/models/block/useradded1757.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1758.json b/src/main/resources/assets/imsm/models/block/useradded1758.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1758.json +++ b/src/main/resources/assets/imsm/models/block/useradded1758.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1759.json b/src/main/resources/assets/imsm/models/block/useradded1759.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1759.json +++ b/src/main/resources/assets/imsm/models/block/useradded1759.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded176.json b/src/main/resources/assets/imsm/models/block/useradded176.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded176.json +++ b/src/main/resources/assets/imsm/models/block/useradded176.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1760.json b/src/main/resources/assets/imsm/models/block/useradded1760.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1760.json +++ b/src/main/resources/assets/imsm/models/block/useradded1760.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1761.json b/src/main/resources/assets/imsm/models/block/useradded1761.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1761.json +++ b/src/main/resources/assets/imsm/models/block/useradded1761.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1762.json b/src/main/resources/assets/imsm/models/block/useradded1762.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1762.json +++ b/src/main/resources/assets/imsm/models/block/useradded1762.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1763.json b/src/main/resources/assets/imsm/models/block/useradded1763.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1763.json +++ b/src/main/resources/assets/imsm/models/block/useradded1763.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1764.json b/src/main/resources/assets/imsm/models/block/useradded1764.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1764.json +++ b/src/main/resources/assets/imsm/models/block/useradded1764.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1765.json b/src/main/resources/assets/imsm/models/block/useradded1765.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1765.json +++ b/src/main/resources/assets/imsm/models/block/useradded1765.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1766.json b/src/main/resources/assets/imsm/models/block/useradded1766.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1766.json +++ b/src/main/resources/assets/imsm/models/block/useradded1766.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1767.json b/src/main/resources/assets/imsm/models/block/useradded1767.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1767.json +++ b/src/main/resources/assets/imsm/models/block/useradded1767.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1768.json b/src/main/resources/assets/imsm/models/block/useradded1768.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1768.json +++ b/src/main/resources/assets/imsm/models/block/useradded1768.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1769.json b/src/main/resources/assets/imsm/models/block/useradded1769.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1769.json +++ b/src/main/resources/assets/imsm/models/block/useradded1769.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded177.json b/src/main/resources/assets/imsm/models/block/useradded177.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded177.json +++ b/src/main/resources/assets/imsm/models/block/useradded177.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1770.json b/src/main/resources/assets/imsm/models/block/useradded1770.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1770.json +++ b/src/main/resources/assets/imsm/models/block/useradded1770.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1771.json b/src/main/resources/assets/imsm/models/block/useradded1771.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1771.json +++ b/src/main/resources/assets/imsm/models/block/useradded1771.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1772.json b/src/main/resources/assets/imsm/models/block/useradded1772.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1772.json +++ b/src/main/resources/assets/imsm/models/block/useradded1772.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1773.json b/src/main/resources/assets/imsm/models/block/useradded1773.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1773.json +++ b/src/main/resources/assets/imsm/models/block/useradded1773.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1774.json b/src/main/resources/assets/imsm/models/block/useradded1774.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1774.json +++ b/src/main/resources/assets/imsm/models/block/useradded1774.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1775.json b/src/main/resources/assets/imsm/models/block/useradded1775.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1775.json +++ b/src/main/resources/assets/imsm/models/block/useradded1775.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1776.json b/src/main/resources/assets/imsm/models/block/useradded1776.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1776.json +++ b/src/main/resources/assets/imsm/models/block/useradded1776.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1777.json b/src/main/resources/assets/imsm/models/block/useradded1777.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1777.json +++ b/src/main/resources/assets/imsm/models/block/useradded1777.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1778.json b/src/main/resources/assets/imsm/models/block/useradded1778.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1778.json +++ b/src/main/resources/assets/imsm/models/block/useradded1778.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1779.json b/src/main/resources/assets/imsm/models/block/useradded1779.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1779.json +++ b/src/main/resources/assets/imsm/models/block/useradded1779.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded178.json b/src/main/resources/assets/imsm/models/block/useradded178.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded178.json +++ b/src/main/resources/assets/imsm/models/block/useradded178.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1780.json b/src/main/resources/assets/imsm/models/block/useradded1780.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1780.json +++ b/src/main/resources/assets/imsm/models/block/useradded1780.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1781.json b/src/main/resources/assets/imsm/models/block/useradded1781.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1781.json +++ b/src/main/resources/assets/imsm/models/block/useradded1781.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1782.json b/src/main/resources/assets/imsm/models/block/useradded1782.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1782.json +++ b/src/main/resources/assets/imsm/models/block/useradded1782.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1783.json b/src/main/resources/assets/imsm/models/block/useradded1783.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1783.json +++ b/src/main/resources/assets/imsm/models/block/useradded1783.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1784.json b/src/main/resources/assets/imsm/models/block/useradded1784.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1784.json +++ b/src/main/resources/assets/imsm/models/block/useradded1784.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1785.json b/src/main/resources/assets/imsm/models/block/useradded1785.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1785.json +++ b/src/main/resources/assets/imsm/models/block/useradded1785.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1786.json b/src/main/resources/assets/imsm/models/block/useradded1786.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1786.json +++ b/src/main/resources/assets/imsm/models/block/useradded1786.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1787.json b/src/main/resources/assets/imsm/models/block/useradded1787.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1787.json +++ b/src/main/resources/assets/imsm/models/block/useradded1787.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1788.json b/src/main/resources/assets/imsm/models/block/useradded1788.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1788.json +++ b/src/main/resources/assets/imsm/models/block/useradded1788.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1789.json b/src/main/resources/assets/imsm/models/block/useradded1789.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1789.json +++ b/src/main/resources/assets/imsm/models/block/useradded1789.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded179.json b/src/main/resources/assets/imsm/models/block/useradded179.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded179.json +++ b/src/main/resources/assets/imsm/models/block/useradded179.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1790.json b/src/main/resources/assets/imsm/models/block/useradded1790.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1790.json +++ b/src/main/resources/assets/imsm/models/block/useradded1790.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1791.json b/src/main/resources/assets/imsm/models/block/useradded1791.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1791.json +++ b/src/main/resources/assets/imsm/models/block/useradded1791.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1792.json b/src/main/resources/assets/imsm/models/block/useradded1792.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1792.json +++ b/src/main/resources/assets/imsm/models/block/useradded1792.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1793.json b/src/main/resources/assets/imsm/models/block/useradded1793.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1793.json +++ b/src/main/resources/assets/imsm/models/block/useradded1793.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1794.json b/src/main/resources/assets/imsm/models/block/useradded1794.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1794.json +++ b/src/main/resources/assets/imsm/models/block/useradded1794.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1795.json b/src/main/resources/assets/imsm/models/block/useradded1795.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1795.json +++ b/src/main/resources/assets/imsm/models/block/useradded1795.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1796.json b/src/main/resources/assets/imsm/models/block/useradded1796.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1796.json +++ b/src/main/resources/assets/imsm/models/block/useradded1796.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1797.json b/src/main/resources/assets/imsm/models/block/useradded1797.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1797.json +++ b/src/main/resources/assets/imsm/models/block/useradded1797.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1798.json b/src/main/resources/assets/imsm/models/block/useradded1798.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1798.json +++ b/src/main/resources/assets/imsm/models/block/useradded1798.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1799.json b/src/main/resources/assets/imsm/models/block/useradded1799.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1799.json +++ b/src/main/resources/assets/imsm/models/block/useradded1799.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded18.json b/src/main/resources/assets/imsm/models/block/useradded18.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded18.json +++ b/src/main/resources/assets/imsm/models/block/useradded18.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded180.json b/src/main/resources/assets/imsm/models/block/useradded180.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded180.json +++ b/src/main/resources/assets/imsm/models/block/useradded180.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1800.json b/src/main/resources/assets/imsm/models/block/useradded1800.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1800.json +++ b/src/main/resources/assets/imsm/models/block/useradded1800.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1801.json b/src/main/resources/assets/imsm/models/block/useradded1801.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1801.json +++ b/src/main/resources/assets/imsm/models/block/useradded1801.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1802.json b/src/main/resources/assets/imsm/models/block/useradded1802.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1802.json +++ b/src/main/resources/assets/imsm/models/block/useradded1802.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1803.json b/src/main/resources/assets/imsm/models/block/useradded1803.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1803.json +++ b/src/main/resources/assets/imsm/models/block/useradded1803.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1804.json b/src/main/resources/assets/imsm/models/block/useradded1804.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1804.json +++ b/src/main/resources/assets/imsm/models/block/useradded1804.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1805.json b/src/main/resources/assets/imsm/models/block/useradded1805.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1805.json +++ b/src/main/resources/assets/imsm/models/block/useradded1805.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1806.json b/src/main/resources/assets/imsm/models/block/useradded1806.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1806.json +++ b/src/main/resources/assets/imsm/models/block/useradded1806.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1807.json b/src/main/resources/assets/imsm/models/block/useradded1807.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1807.json +++ b/src/main/resources/assets/imsm/models/block/useradded1807.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1808.json b/src/main/resources/assets/imsm/models/block/useradded1808.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1808.json +++ b/src/main/resources/assets/imsm/models/block/useradded1808.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1809.json b/src/main/resources/assets/imsm/models/block/useradded1809.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1809.json +++ b/src/main/resources/assets/imsm/models/block/useradded1809.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded181.json b/src/main/resources/assets/imsm/models/block/useradded181.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded181.json +++ b/src/main/resources/assets/imsm/models/block/useradded181.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1810.json b/src/main/resources/assets/imsm/models/block/useradded1810.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1810.json +++ b/src/main/resources/assets/imsm/models/block/useradded1810.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1811.json b/src/main/resources/assets/imsm/models/block/useradded1811.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1811.json +++ b/src/main/resources/assets/imsm/models/block/useradded1811.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1812.json b/src/main/resources/assets/imsm/models/block/useradded1812.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1812.json +++ b/src/main/resources/assets/imsm/models/block/useradded1812.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1813.json b/src/main/resources/assets/imsm/models/block/useradded1813.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1813.json +++ b/src/main/resources/assets/imsm/models/block/useradded1813.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1814.json b/src/main/resources/assets/imsm/models/block/useradded1814.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1814.json +++ b/src/main/resources/assets/imsm/models/block/useradded1814.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1815.json b/src/main/resources/assets/imsm/models/block/useradded1815.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1815.json +++ b/src/main/resources/assets/imsm/models/block/useradded1815.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1816.json b/src/main/resources/assets/imsm/models/block/useradded1816.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1816.json +++ b/src/main/resources/assets/imsm/models/block/useradded1816.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1817.json b/src/main/resources/assets/imsm/models/block/useradded1817.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1817.json +++ b/src/main/resources/assets/imsm/models/block/useradded1817.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1818.json b/src/main/resources/assets/imsm/models/block/useradded1818.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1818.json +++ b/src/main/resources/assets/imsm/models/block/useradded1818.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1819.json b/src/main/resources/assets/imsm/models/block/useradded1819.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1819.json +++ b/src/main/resources/assets/imsm/models/block/useradded1819.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded182.json b/src/main/resources/assets/imsm/models/block/useradded182.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded182.json +++ b/src/main/resources/assets/imsm/models/block/useradded182.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1820.json b/src/main/resources/assets/imsm/models/block/useradded1820.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1820.json +++ b/src/main/resources/assets/imsm/models/block/useradded1820.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1821.json b/src/main/resources/assets/imsm/models/block/useradded1821.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1821.json +++ b/src/main/resources/assets/imsm/models/block/useradded1821.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1822.json b/src/main/resources/assets/imsm/models/block/useradded1822.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1822.json +++ b/src/main/resources/assets/imsm/models/block/useradded1822.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1823.json b/src/main/resources/assets/imsm/models/block/useradded1823.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1823.json +++ b/src/main/resources/assets/imsm/models/block/useradded1823.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1824.json b/src/main/resources/assets/imsm/models/block/useradded1824.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1824.json +++ b/src/main/resources/assets/imsm/models/block/useradded1824.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1825.json b/src/main/resources/assets/imsm/models/block/useradded1825.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1825.json +++ b/src/main/resources/assets/imsm/models/block/useradded1825.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1826.json b/src/main/resources/assets/imsm/models/block/useradded1826.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1826.json +++ b/src/main/resources/assets/imsm/models/block/useradded1826.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1827.json b/src/main/resources/assets/imsm/models/block/useradded1827.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1827.json +++ b/src/main/resources/assets/imsm/models/block/useradded1827.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1828.json b/src/main/resources/assets/imsm/models/block/useradded1828.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1828.json +++ b/src/main/resources/assets/imsm/models/block/useradded1828.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1829.json b/src/main/resources/assets/imsm/models/block/useradded1829.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1829.json +++ b/src/main/resources/assets/imsm/models/block/useradded1829.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded183.json b/src/main/resources/assets/imsm/models/block/useradded183.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded183.json +++ b/src/main/resources/assets/imsm/models/block/useradded183.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1830.json b/src/main/resources/assets/imsm/models/block/useradded1830.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1830.json +++ b/src/main/resources/assets/imsm/models/block/useradded1830.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1831.json b/src/main/resources/assets/imsm/models/block/useradded1831.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1831.json +++ b/src/main/resources/assets/imsm/models/block/useradded1831.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1832.json b/src/main/resources/assets/imsm/models/block/useradded1832.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1832.json +++ b/src/main/resources/assets/imsm/models/block/useradded1832.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1833.json b/src/main/resources/assets/imsm/models/block/useradded1833.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1833.json +++ b/src/main/resources/assets/imsm/models/block/useradded1833.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1834.json b/src/main/resources/assets/imsm/models/block/useradded1834.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1834.json +++ b/src/main/resources/assets/imsm/models/block/useradded1834.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1835.json b/src/main/resources/assets/imsm/models/block/useradded1835.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1835.json +++ b/src/main/resources/assets/imsm/models/block/useradded1835.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1836.json b/src/main/resources/assets/imsm/models/block/useradded1836.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1836.json +++ b/src/main/resources/assets/imsm/models/block/useradded1836.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1837.json b/src/main/resources/assets/imsm/models/block/useradded1837.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1837.json +++ b/src/main/resources/assets/imsm/models/block/useradded1837.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1838.json b/src/main/resources/assets/imsm/models/block/useradded1838.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1838.json +++ b/src/main/resources/assets/imsm/models/block/useradded1838.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1839.json b/src/main/resources/assets/imsm/models/block/useradded1839.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1839.json +++ b/src/main/resources/assets/imsm/models/block/useradded1839.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded184.json b/src/main/resources/assets/imsm/models/block/useradded184.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded184.json +++ b/src/main/resources/assets/imsm/models/block/useradded184.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1840.json b/src/main/resources/assets/imsm/models/block/useradded1840.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1840.json +++ b/src/main/resources/assets/imsm/models/block/useradded1840.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1841.json b/src/main/resources/assets/imsm/models/block/useradded1841.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1841.json +++ b/src/main/resources/assets/imsm/models/block/useradded1841.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1842.json b/src/main/resources/assets/imsm/models/block/useradded1842.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1842.json +++ b/src/main/resources/assets/imsm/models/block/useradded1842.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1843.json b/src/main/resources/assets/imsm/models/block/useradded1843.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1843.json +++ b/src/main/resources/assets/imsm/models/block/useradded1843.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1844.json b/src/main/resources/assets/imsm/models/block/useradded1844.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1844.json +++ b/src/main/resources/assets/imsm/models/block/useradded1844.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1845.json b/src/main/resources/assets/imsm/models/block/useradded1845.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1845.json +++ b/src/main/resources/assets/imsm/models/block/useradded1845.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1846.json b/src/main/resources/assets/imsm/models/block/useradded1846.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1846.json +++ b/src/main/resources/assets/imsm/models/block/useradded1846.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1847.json b/src/main/resources/assets/imsm/models/block/useradded1847.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1847.json +++ b/src/main/resources/assets/imsm/models/block/useradded1847.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1848.json b/src/main/resources/assets/imsm/models/block/useradded1848.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1848.json +++ b/src/main/resources/assets/imsm/models/block/useradded1848.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1849.json b/src/main/resources/assets/imsm/models/block/useradded1849.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1849.json +++ b/src/main/resources/assets/imsm/models/block/useradded1849.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded185.json b/src/main/resources/assets/imsm/models/block/useradded185.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded185.json +++ b/src/main/resources/assets/imsm/models/block/useradded185.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1850.json b/src/main/resources/assets/imsm/models/block/useradded1850.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1850.json +++ b/src/main/resources/assets/imsm/models/block/useradded1850.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1851.json b/src/main/resources/assets/imsm/models/block/useradded1851.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1851.json +++ b/src/main/resources/assets/imsm/models/block/useradded1851.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1852.json b/src/main/resources/assets/imsm/models/block/useradded1852.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1852.json +++ b/src/main/resources/assets/imsm/models/block/useradded1852.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1853.json b/src/main/resources/assets/imsm/models/block/useradded1853.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1853.json +++ b/src/main/resources/assets/imsm/models/block/useradded1853.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1854.json b/src/main/resources/assets/imsm/models/block/useradded1854.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1854.json +++ b/src/main/resources/assets/imsm/models/block/useradded1854.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1855.json b/src/main/resources/assets/imsm/models/block/useradded1855.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1855.json +++ b/src/main/resources/assets/imsm/models/block/useradded1855.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1856.json b/src/main/resources/assets/imsm/models/block/useradded1856.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1856.json +++ b/src/main/resources/assets/imsm/models/block/useradded1856.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1857.json b/src/main/resources/assets/imsm/models/block/useradded1857.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1857.json +++ b/src/main/resources/assets/imsm/models/block/useradded1857.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1858.json b/src/main/resources/assets/imsm/models/block/useradded1858.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1858.json +++ b/src/main/resources/assets/imsm/models/block/useradded1858.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1859.json b/src/main/resources/assets/imsm/models/block/useradded1859.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1859.json +++ b/src/main/resources/assets/imsm/models/block/useradded1859.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded186.json b/src/main/resources/assets/imsm/models/block/useradded186.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded186.json +++ b/src/main/resources/assets/imsm/models/block/useradded186.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1860.json b/src/main/resources/assets/imsm/models/block/useradded1860.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1860.json +++ b/src/main/resources/assets/imsm/models/block/useradded1860.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1861.json b/src/main/resources/assets/imsm/models/block/useradded1861.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1861.json +++ b/src/main/resources/assets/imsm/models/block/useradded1861.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1862.json b/src/main/resources/assets/imsm/models/block/useradded1862.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1862.json +++ b/src/main/resources/assets/imsm/models/block/useradded1862.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1863.json b/src/main/resources/assets/imsm/models/block/useradded1863.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1863.json +++ b/src/main/resources/assets/imsm/models/block/useradded1863.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1864.json b/src/main/resources/assets/imsm/models/block/useradded1864.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1864.json +++ b/src/main/resources/assets/imsm/models/block/useradded1864.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1865.json b/src/main/resources/assets/imsm/models/block/useradded1865.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1865.json +++ b/src/main/resources/assets/imsm/models/block/useradded1865.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1866.json b/src/main/resources/assets/imsm/models/block/useradded1866.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1866.json +++ b/src/main/resources/assets/imsm/models/block/useradded1866.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1867.json b/src/main/resources/assets/imsm/models/block/useradded1867.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1867.json +++ b/src/main/resources/assets/imsm/models/block/useradded1867.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1868.json b/src/main/resources/assets/imsm/models/block/useradded1868.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1868.json +++ b/src/main/resources/assets/imsm/models/block/useradded1868.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1869.json b/src/main/resources/assets/imsm/models/block/useradded1869.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1869.json +++ b/src/main/resources/assets/imsm/models/block/useradded1869.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded187.json b/src/main/resources/assets/imsm/models/block/useradded187.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded187.json +++ b/src/main/resources/assets/imsm/models/block/useradded187.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1870.json b/src/main/resources/assets/imsm/models/block/useradded1870.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1870.json +++ b/src/main/resources/assets/imsm/models/block/useradded1870.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1871.json b/src/main/resources/assets/imsm/models/block/useradded1871.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1871.json +++ b/src/main/resources/assets/imsm/models/block/useradded1871.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1872.json b/src/main/resources/assets/imsm/models/block/useradded1872.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1872.json +++ b/src/main/resources/assets/imsm/models/block/useradded1872.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1873.json b/src/main/resources/assets/imsm/models/block/useradded1873.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1873.json +++ b/src/main/resources/assets/imsm/models/block/useradded1873.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1874.json b/src/main/resources/assets/imsm/models/block/useradded1874.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1874.json +++ b/src/main/resources/assets/imsm/models/block/useradded1874.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1875.json b/src/main/resources/assets/imsm/models/block/useradded1875.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1875.json +++ b/src/main/resources/assets/imsm/models/block/useradded1875.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1876.json b/src/main/resources/assets/imsm/models/block/useradded1876.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1876.json +++ b/src/main/resources/assets/imsm/models/block/useradded1876.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1877.json b/src/main/resources/assets/imsm/models/block/useradded1877.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1877.json +++ b/src/main/resources/assets/imsm/models/block/useradded1877.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1878.json b/src/main/resources/assets/imsm/models/block/useradded1878.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1878.json +++ b/src/main/resources/assets/imsm/models/block/useradded1878.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1879.json b/src/main/resources/assets/imsm/models/block/useradded1879.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1879.json +++ b/src/main/resources/assets/imsm/models/block/useradded1879.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded188.json b/src/main/resources/assets/imsm/models/block/useradded188.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded188.json +++ b/src/main/resources/assets/imsm/models/block/useradded188.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1880.json b/src/main/resources/assets/imsm/models/block/useradded1880.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1880.json +++ b/src/main/resources/assets/imsm/models/block/useradded1880.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1881.json b/src/main/resources/assets/imsm/models/block/useradded1881.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1881.json +++ b/src/main/resources/assets/imsm/models/block/useradded1881.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1882.json b/src/main/resources/assets/imsm/models/block/useradded1882.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1882.json +++ b/src/main/resources/assets/imsm/models/block/useradded1882.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1883.json b/src/main/resources/assets/imsm/models/block/useradded1883.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1883.json +++ b/src/main/resources/assets/imsm/models/block/useradded1883.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1884.json b/src/main/resources/assets/imsm/models/block/useradded1884.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1884.json +++ b/src/main/resources/assets/imsm/models/block/useradded1884.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1885.json b/src/main/resources/assets/imsm/models/block/useradded1885.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1885.json +++ b/src/main/resources/assets/imsm/models/block/useradded1885.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1886.json b/src/main/resources/assets/imsm/models/block/useradded1886.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1886.json +++ b/src/main/resources/assets/imsm/models/block/useradded1886.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1887.json b/src/main/resources/assets/imsm/models/block/useradded1887.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1887.json +++ b/src/main/resources/assets/imsm/models/block/useradded1887.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1888.json b/src/main/resources/assets/imsm/models/block/useradded1888.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1888.json +++ b/src/main/resources/assets/imsm/models/block/useradded1888.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1889.json b/src/main/resources/assets/imsm/models/block/useradded1889.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1889.json +++ b/src/main/resources/assets/imsm/models/block/useradded1889.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded189.json b/src/main/resources/assets/imsm/models/block/useradded189.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded189.json +++ b/src/main/resources/assets/imsm/models/block/useradded189.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1890.json b/src/main/resources/assets/imsm/models/block/useradded1890.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1890.json +++ b/src/main/resources/assets/imsm/models/block/useradded1890.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1891.json b/src/main/resources/assets/imsm/models/block/useradded1891.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1891.json +++ b/src/main/resources/assets/imsm/models/block/useradded1891.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1892.json b/src/main/resources/assets/imsm/models/block/useradded1892.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1892.json +++ b/src/main/resources/assets/imsm/models/block/useradded1892.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1893.json b/src/main/resources/assets/imsm/models/block/useradded1893.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1893.json +++ b/src/main/resources/assets/imsm/models/block/useradded1893.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1894.json b/src/main/resources/assets/imsm/models/block/useradded1894.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1894.json +++ b/src/main/resources/assets/imsm/models/block/useradded1894.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1895.json b/src/main/resources/assets/imsm/models/block/useradded1895.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1895.json +++ b/src/main/resources/assets/imsm/models/block/useradded1895.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1896.json b/src/main/resources/assets/imsm/models/block/useradded1896.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1896.json +++ b/src/main/resources/assets/imsm/models/block/useradded1896.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1897.json b/src/main/resources/assets/imsm/models/block/useradded1897.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1897.json +++ b/src/main/resources/assets/imsm/models/block/useradded1897.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1898.json b/src/main/resources/assets/imsm/models/block/useradded1898.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1898.json +++ b/src/main/resources/assets/imsm/models/block/useradded1898.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1899.json b/src/main/resources/assets/imsm/models/block/useradded1899.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1899.json +++ b/src/main/resources/assets/imsm/models/block/useradded1899.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded19.json b/src/main/resources/assets/imsm/models/block/useradded19.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded19.json +++ b/src/main/resources/assets/imsm/models/block/useradded19.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded190.json b/src/main/resources/assets/imsm/models/block/useradded190.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded190.json +++ b/src/main/resources/assets/imsm/models/block/useradded190.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1900.json b/src/main/resources/assets/imsm/models/block/useradded1900.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1900.json +++ b/src/main/resources/assets/imsm/models/block/useradded1900.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1901.json b/src/main/resources/assets/imsm/models/block/useradded1901.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1901.json +++ b/src/main/resources/assets/imsm/models/block/useradded1901.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1902.json b/src/main/resources/assets/imsm/models/block/useradded1902.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1902.json +++ b/src/main/resources/assets/imsm/models/block/useradded1902.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1903.json b/src/main/resources/assets/imsm/models/block/useradded1903.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1903.json +++ b/src/main/resources/assets/imsm/models/block/useradded1903.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1904.json b/src/main/resources/assets/imsm/models/block/useradded1904.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1904.json +++ b/src/main/resources/assets/imsm/models/block/useradded1904.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1905.json b/src/main/resources/assets/imsm/models/block/useradded1905.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1905.json +++ b/src/main/resources/assets/imsm/models/block/useradded1905.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1906.json b/src/main/resources/assets/imsm/models/block/useradded1906.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1906.json +++ b/src/main/resources/assets/imsm/models/block/useradded1906.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1907.json b/src/main/resources/assets/imsm/models/block/useradded1907.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1907.json +++ b/src/main/resources/assets/imsm/models/block/useradded1907.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1908.json b/src/main/resources/assets/imsm/models/block/useradded1908.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1908.json +++ b/src/main/resources/assets/imsm/models/block/useradded1908.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1909.json b/src/main/resources/assets/imsm/models/block/useradded1909.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1909.json +++ b/src/main/resources/assets/imsm/models/block/useradded1909.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded191.json b/src/main/resources/assets/imsm/models/block/useradded191.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded191.json +++ b/src/main/resources/assets/imsm/models/block/useradded191.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1910.json b/src/main/resources/assets/imsm/models/block/useradded1910.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1910.json +++ b/src/main/resources/assets/imsm/models/block/useradded1910.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1911.json b/src/main/resources/assets/imsm/models/block/useradded1911.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1911.json +++ b/src/main/resources/assets/imsm/models/block/useradded1911.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1912.json b/src/main/resources/assets/imsm/models/block/useradded1912.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1912.json +++ b/src/main/resources/assets/imsm/models/block/useradded1912.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1913.json b/src/main/resources/assets/imsm/models/block/useradded1913.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1913.json +++ b/src/main/resources/assets/imsm/models/block/useradded1913.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1914.json b/src/main/resources/assets/imsm/models/block/useradded1914.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1914.json +++ b/src/main/resources/assets/imsm/models/block/useradded1914.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1915.json b/src/main/resources/assets/imsm/models/block/useradded1915.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1915.json +++ b/src/main/resources/assets/imsm/models/block/useradded1915.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1916.json b/src/main/resources/assets/imsm/models/block/useradded1916.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1916.json +++ b/src/main/resources/assets/imsm/models/block/useradded1916.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1917.json b/src/main/resources/assets/imsm/models/block/useradded1917.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1917.json +++ b/src/main/resources/assets/imsm/models/block/useradded1917.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1918.json b/src/main/resources/assets/imsm/models/block/useradded1918.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1918.json +++ b/src/main/resources/assets/imsm/models/block/useradded1918.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1919.json b/src/main/resources/assets/imsm/models/block/useradded1919.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1919.json +++ b/src/main/resources/assets/imsm/models/block/useradded1919.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded192.json b/src/main/resources/assets/imsm/models/block/useradded192.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded192.json +++ b/src/main/resources/assets/imsm/models/block/useradded192.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1920.json b/src/main/resources/assets/imsm/models/block/useradded1920.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1920.json +++ b/src/main/resources/assets/imsm/models/block/useradded1920.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1921.json b/src/main/resources/assets/imsm/models/block/useradded1921.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1921.json +++ b/src/main/resources/assets/imsm/models/block/useradded1921.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1922.json b/src/main/resources/assets/imsm/models/block/useradded1922.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1922.json +++ b/src/main/resources/assets/imsm/models/block/useradded1922.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1923.json b/src/main/resources/assets/imsm/models/block/useradded1923.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1923.json +++ b/src/main/resources/assets/imsm/models/block/useradded1923.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1924.json b/src/main/resources/assets/imsm/models/block/useradded1924.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1924.json +++ b/src/main/resources/assets/imsm/models/block/useradded1924.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1925.json b/src/main/resources/assets/imsm/models/block/useradded1925.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1925.json +++ b/src/main/resources/assets/imsm/models/block/useradded1925.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1926.json b/src/main/resources/assets/imsm/models/block/useradded1926.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1926.json +++ b/src/main/resources/assets/imsm/models/block/useradded1926.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1927.json b/src/main/resources/assets/imsm/models/block/useradded1927.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1927.json +++ b/src/main/resources/assets/imsm/models/block/useradded1927.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1928.json b/src/main/resources/assets/imsm/models/block/useradded1928.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1928.json +++ b/src/main/resources/assets/imsm/models/block/useradded1928.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1929.json b/src/main/resources/assets/imsm/models/block/useradded1929.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1929.json +++ b/src/main/resources/assets/imsm/models/block/useradded1929.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded193.json b/src/main/resources/assets/imsm/models/block/useradded193.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded193.json +++ b/src/main/resources/assets/imsm/models/block/useradded193.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1930.json b/src/main/resources/assets/imsm/models/block/useradded1930.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1930.json +++ b/src/main/resources/assets/imsm/models/block/useradded1930.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1931.json b/src/main/resources/assets/imsm/models/block/useradded1931.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1931.json +++ b/src/main/resources/assets/imsm/models/block/useradded1931.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1932.json b/src/main/resources/assets/imsm/models/block/useradded1932.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1932.json +++ b/src/main/resources/assets/imsm/models/block/useradded1932.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1933.json b/src/main/resources/assets/imsm/models/block/useradded1933.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1933.json +++ b/src/main/resources/assets/imsm/models/block/useradded1933.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1934.json b/src/main/resources/assets/imsm/models/block/useradded1934.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1934.json +++ b/src/main/resources/assets/imsm/models/block/useradded1934.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1935.json b/src/main/resources/assets/imsm/models/block/useradded1935.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1935.json +++ b/src/main/resources/assets/imsm/models/block/useradded1935.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1936.json b/src/main/resources/assets/imsm/models/block/useradded1936.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1936.json +++ b/src/main/resources/assets/imsm/models/block/useradded1936.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1937.json b/src/main/resources/assets/imsm/models/block/useradded1937.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1937.json +++ b/src/main/resources/assets/imsm/models/block/useradded1937.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1938.json b/src/main/resources/assets/imsm/models/block/useradded1938.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1938.json +++ b/src/main/resources/assets/imsm/models/block/useradded1938.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1939.json b/src/main/resources/assets/imsm/models/block/useradded1939.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1939.json +++ b/src/main/resources/assets/imsm/models/block/useradded1939.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded194.json b/src/main/resources/assets/imsm/models/block/useradded194.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded194.json +++ b/src/main/resources/assets/imsm/models/block/useradded194.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1940.json b/src/main/resources/assets/imsm/models/block/useradded1940.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1940.json +++ b/src/main/resources/assets/imsm/models/block/useradded1940.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1941.json b/src/main/resources/assets/imsm/models/block/useradded1941.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1941.json +++ b/src/main/resources/assets/imsm/models/block/useradded1941.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1942.json b/src/main/resources/assets/imsm/models/block/useradded1942.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1942.json +++ b/src/main/resources/assets/imsm/models/block/useradded1942.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1943.json b/src/main/resources/assets/imsm/models/block/useradded1943.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1943.json +++ b/src/main/resources/assets/imsm/models/block/useradded1943.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1944.json b/src/main/resources/assets/imsm/models/block/useradded1944.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1944.json +++ b/src/main/resources/assets/imsm/models/block/useradded1944.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1945.json b/src/main/resources/assets/imsm/models/block/useradded1945.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1945.json +++ b/src/main/resources/assets/imsm/models/block/useradded1945.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1946.json b/src/main/resources/assets/imsm/models/block/useradded1946.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1946.json +++ b/src/main/resources/assets/imsm/models/block/useradded1946.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1947.json b/src/main/resources/assets/imsm/models/block/useradded1947.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1947.json +++ b/src/main/resources/assets/imsm/models/block/useradded1947.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1948.json b/src/main/resources/assets/imsm/models/block/useradded1948.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1948.json +++ b/src/main/resources/assets/imsm/models/block/useradded1948.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1949.json b/src/main/resources/assets/imsm/models/block/useradded1949.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1949.json +++ b/src/main/resources/assets/imsm/models/block/useradded1949.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded195.json b/src/main/resources/assets/imsm/models/block/useradded195.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded195.json +++ b/src/main/resources/assets/imsm/models/block/useradded195.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1950.json b/src/main/resources/assets/imsm/models/block/useradded1950.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1950.json +++ b/src/main/resources/assets/imsm/models/block/useradded1950.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1951.json b/src/main/resources/assets/imsm/models/block/useradded1951.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1951.json +++ b/src/main/resources/assets/imsm/models/block/useradded1951.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1952.json b/src/main/resources/assets/imsm/models/block/useradded1952.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1952.json +++ b/src/main/resources/assets/imsm/models/block/useradded1952.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1953.json b/src/main/resources/assets/imsm/models/block/useradded1953.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1953.json +++ b/src/main/resources/assets/imsm/models/block/useradded1953.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1954.json b/src/main/resources/assets/imsm/models/block/useradded1954.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1954.json +++ b/src/main/resources/assets/imsm/models/block/useradded1954.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1955.json b/src/main/resources/assets/imsm/models/block/useradded1955.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1955.json +++ b/src/main/resources/assets/imsm/models/block/useradded1955.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1956.json b/src/main/resources/assets/imsm/models/block/useradded1956.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1956.json +++ b/src/main/resources/assets/imsm/models/block/useradded1956.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1957.json b/src/main/resources/assets/imsm/models/block/useradded1957.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1957.json +++ b/src/main/resources/assets/imsm/models/block/useradded1957.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1958.json b/src/main/resources/assets/imsm/models/block/useradded1958.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1958.json +++ b/src/main/resources/assets/imsm/models/block/useradded1958.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1959.json b/src/main/resources/assets/imsm/models/block/useradded1959.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1959.json +++ b/src/main/resources/assets/imsm/models/block/useradded1959.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded196.json b/src/main/resources/assets/imsm/models/block/useradded196.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded196.json +++ b/src/main/resources/assets/imsm/models/block/useradded196.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1960.json b/src/main/resources/assets/imsm/models/block/useradded1960.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1960.json +++ b/src/main/resources/assets/imsm/models/block/useradded1960.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1961.json b/src/main/resources/assets/imsm/models/block/useradded1961.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1961.json +++ b/src/main/resources/assets/imsm/models/block/useradded1961.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1962.json b/src/main/resources/assets/imsm/models/block/useradded1962.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1962.json +++ b/src/main/resources/assets/imsm/models/block/useradded1962.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1963.json b/src/main/resources/assets/imsm/models/block/useradded1963.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1963.json +++ b/src/main/resources/assets/imsm/models/block/useradded1963.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1964.json b/src/main/resources/assets/imsm/models/block/useradded1964.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1964.json +++ b/src/main/resources/assets/imsm/models/block/useradded1964.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1965.json b/src/main/resources/assets/imsm/models/block/useradded1965.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1965.json +++ b/src/main/resources/assets/imsm/models/block/useradded1965.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1966.json b/src/main/resources/assets/imsm/models/block/useradded1966.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1966.json +++ b/src/main/resources/assets/imsm/models/block/useradded1966.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1967.json b/src/main/resources/assets/imsm/models/block/useradded1967.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1967.json +++ b/src/main/resources/assets/imsm/models/block/useradded1967.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1968.json b/src/main/resources/assets/imsm/models/block/useradded1968.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1968.json +++ b/src/main/resources/assets/imsm/models/block/useradded1968.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1969.json b/src/main/resources/assets/imsm/models/block/useradded1969.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1969.json +++ b/src/main/resources/assets/imsm/models/block/useradded1969.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded197.json b/src/main/resources/assets/imsm/models/block/useradded197.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded197.json +++ b/src/main/resources/assets/imsm/models/block/useradded197.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1970.json b/src/main/resources/assets/imsm/models/block/useradded1970.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1970.json +++ b/src/main/resources/assets/imsm/models/block/useradded1970.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1971.json b/src/main/resources/assets/imsm/models/block/useradded1971.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1971.json +++ b/src/main/resources/assets/imsm/models/block/useradded1971.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1972.json b/src/main/resources/assets/imsm/models/block/useradded1972.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1972.json +++ b/src/main/resources/assets/imsm/models/block/useradded1972.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1973.json b/src/main/resources/assets/imsm/models/block/useradded1973.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1973.json +++ b/src/main/resources/assets/imsm/models/block/useradded1973.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1974.json b/src/main/resources/assets/imsm/models/block/useradded1974.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1974.json +++ b/src/main/resources/assets/imsm/models/block/useradded1974.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1975.json b/src/main/resources/assets/imsm/models/block/useradded1975.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1975.json +++ b/src/main/resources/assets/imsm/models/block/useradded1975.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1976.json b/src/main/resources/assets/imsm/models/block/useradded1976.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1976.json +++ b/src/main/resources/assets/imsm/models/block/useradded1976.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1977.json b/src/main/resources/assets/imsm/models/block/useradded1977.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1977.json +++ b/src/main/resources/assets/imsm/models/block/useradded1977.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1978.json b/src/main/resources/assets/imsm/models/block/useradded1978.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1978.json +++ b/src/main/resources/assets/imsm/models/block/useradded1978.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1979.json b/src/main/resources/assets/imsm/models/block/useradded1979.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1979.json +++ b/src/main/resources/assets/imsm/models/block/useradded1979.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded198.json b/src/main/resources/assets/imsm/models/block/useradded198.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded198.json +++ b/src/main/resources/assets/imsm/models/block/useradded198.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1980.json b/src/main/resources/assets/imsm/models/block/useradded1980.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1980.json +++ b/src/main/resources/assets/imsm/models/block/useradded1980.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1981.json b/src/main/resources/assets/imsm/models/block/useradded1981.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1981.json +++ b/src/main/resources/assets/imsm/models/block/useradded1981.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1982.json b/src/main/resources/assets/imsm/models/block/useradded1982.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1982.json +++ b/src/main/resources/assets/imsm/models/block/useradded1982.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1983.json b/src/main/resources/assets/imsm/models/block/useradded1983.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1983.json +++ b/src/main/resources/assets/imsm/models/block/useradded1983.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1984.json b/src/main/resources/assets/imsm/models/block/useradded1984.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1984.json +++ b/src/main/resources/assets/imsm/models/block/useradded1984.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1985.json b/src/main/resources/assets/imsm/models/block/useradded1985.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1985.json +++ b/src/main/resources/assets/imsm/models/block/useradded1985.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1986.json b/src/main/resources/assets/imsm/models/block/useradded1986.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1986.json +++ b/src/main/resources/assets/imsm/models/block/useradded1986.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1987.json b/src/main/resources/assets/imsm/models/block/useradded1987.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1987.json +++ b/src/main/resources/assets/imsm/models/block/useradded1987.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1988.json b/src/main/resources/assets/imsm/models/block/useradded1988.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1988.json +++ b/src/main/resources/assets/imsm/models/block/useradded1988.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1989.json b/src/main/resources/assets/imsm/models/block/useradded1989.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1989.json +++ b/src/main/resources/assets/imsm/models/block/useradded1989.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded199.json b/src/main/resources/assets/imsm/models/block/useradded199.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded199.json +++ b/src/main/resources/assets/imsm/models/block/useradded199.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1990.json b/src/main/resources/assets/imsm/models/block/useradded1990.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1990.json +++ b/src/main/resources/assets/imsm/models/block/useradded1990.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1991.json b/src/main/resources/assets/imsm/models/block/useradded1991.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1991.json +++ b/src/main/resources/assets/imsm/models/block/useradded1991.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1992.json b/src/main/resources/assets/imsm/models/block/useradded1992.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1992.json +++ b/src/main/resources/assets/imsm/models/block/useradded1992.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1993.json b/src/main/resources/assets/imsm/models/block/useradded1993.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1993.json +++ b/src/main/resources/assets/imsm/models/block/useradded1993.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1994.json b/src/main/resources/assets/imsm/models/block/useradded1994.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1994.json +++ b/src/main/resources/assets/imsm/models/block/useradded1994.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1995.json b/src/main/resources/assets/imsm/models/block/useradded1995.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1995.json +++ b/src/main/resources/assets/imsm/models/block/useradded1995.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1996.json b/src/main/resources/assets/imsm/models/block/useradded1996.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1996.json +++ b/src/main/resources/assets/imsm/models/block/useradded1996.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1997.json b/src/main/resources/assets/imsm/models/block/useradded1997.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1997.json +++ b/src/main/resources/assets/imsm/models/block/useradded1997.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1998.json b/src/main/resources/assets/imsm/models/block/useradded1998.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1998.json +++ b/src/main/resources/assets/imsm/models/block/useradded1998.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded1999.json b/src/main/resources/assets/imsm/models/block/useradded1999.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded1999.json +++ b/src/main/resources/assets/imsm/models/block/useradded1999.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded2.json b/src/main/resources/assets/imsm/models/block/useradded2.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded2.json +++ b/src/main/resources/assets/imsm/models/block/useradded2.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded20.json b/src/main/resources/assets/imsm/models/block/useradded20.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded20.json +++ b/src/main/resources/assets/imsm/models/block/useradded20.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded200.json b/src/main/resources/assets/imsm/models/block/useradded200.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded200.json +++ b/src/main/resources/assets/imsm/models/block/useradded200.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded2000.json b/src/main/resources/assets/imsm/models/block/useradded2000.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded2000.json +++ b/src/main/resources/assets/imsm/models/block/useradded2000.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded201.json b/src/main/resources/assets/imsm/models/block/useradded201.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded201.json +++ b/src/main/resources/assets/imsm/models/block/useradded201.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded202.json b/src/main/resources/assets/imsm/models/block/useradded202.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded202.json +++ b/src/main/resources/assets/imsm/models/block/useradded202.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded203.json b/src/main/resources/assets/imsm/models/block/useradded203.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded203.json +++ b/src/main/resources/assets/imsm/models/block/useradded203.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded204.json b/src/main/resources/assets/imsm/models/block/useradded204.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded204.json +++ b/src/main/resources/assets/imsm/models/block/useradded204.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded205.json b/src/main/resources/assets/imsm/models/block/useradded205.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded205.json +++ b/src/main/resources/assets/imsm/models/block/useradded205.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded206.json b/src/main/resources/assets/imsm/models/block/useradded206.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded206.json +++ b/src/main/resources/assets/imsm/models/block/useradded206.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded207.json b/src/main/resources/assets/imsm/models/block/useradded207.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded207.json +++ b/src/main/resources/assets/imsm/models/block/useradded207.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded208.json b/src/main/resources/assets/imsm/models/block/useradded208.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded208.json +++ b/src/main/resources/assets/imsm/models/block/useradded208.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded209.json b/src/main/resources/assets/imsm/models/block/useradded209.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded209.json +++ b/src/main/resources/assets/imsm/models/block/useradded209.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded21.json b/src/main/resources/assets/imsm/models/block/useradded21.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded21.json +++ b/src/main/resources/assets/imsm/models/block/useradded21.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded210.json b/src/main/resources/assets/imsm/models/block/useradded210.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded210.json +++ b/src/main/resources/assets/imsm/models/block/useradded210.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded211.json b/src/main/resources/assets/imsm/models/block/useradded211.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded211.json +++ b/src/main/resources/assets/imsm/models/block/useradded211.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded212.json b/src/main/resources/assets/imsm/models/block/useradded212.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded212.json +++ b/src/main/resources/assets/imsm/models/block/useradded212.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded213.json b/src/main/resources/assets/imsm/models/block/useradded213.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded213.json +++ b/src/main/resources/assets/imsm/models/block/useradded213.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded214.json b/src/main/resources/assets/imsm/models/block/useradded214.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded214.json +++ b/src/main/resources/assets/imsm/models/block/useradded214.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded215.json b/src/main/resources/assets/imsm/models/block/useradded215.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded215.json +++ b/src/main/resources/assets/imsm/models/block/useradded215.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded216.json b/src/main/resources/assets/imsm/models/block/useradded216.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded216.json +++ b/src/main/resources/assets/imsm/models/block/useradded216.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded217.json b/src/main/resources/assets/imsm/models/block/useradded217.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded217.json +++ b/src/main/resources/assets/imsm/models/block/useradded217.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded218.json b/src/main/resources/assets/imsm/models/block/useradded218.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded218.json +++ b/src/main/resources/assets/imsm/models/block/useradded218.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded219.json b/src/main/resources/assets/imsm/models/block/useradded219.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded219.json +++ b/src/main/resources/assets/imsm/models/block/useradded219.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded22.json b/src/main/resources/assets/imsm/models/block/useradded22.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded22.json +++ b/src/main/resources/assets/imsm/models/block/useradded22.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded220.json b/src/main/resources/assets/imsm/models/block/useradded220.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded220.json +++ b/src/main/resources/assets/imsm/models/block/useradded220.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded221.json b/src/main/resources/assets/imsm/models/block/useradded221.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded221.json +++ b/src/main/resources/assets/imsm/models/block/useradded221.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded222.json b/src/main/resources/assets/imsm/models/block/useradded222.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded222.json +++ b/src/main/resources/assets/imsm/models/block/useradded222.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded223.json b/src/main/resources/assets/imsm/models/block/useradded223.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded223.json +++ b/src/main/resources/assets/imsm/models/block/useradded223.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded224.json b/src/main/resources/assets/imsm/models/block/useradded224.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded224.json +++ b/src/main/resources/assets/imsm/models/block/useradded224.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded225.json b/src/main/resources/assets/imsm/models/block/useradded225.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded225.json +++ b/src/main/resources/assets/imsm/models/block/useradded225.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded226.json b/src/main/resources/assets/imsm/models/block/useradded226.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded226.json +++ b/src/main/resources/assets/imsm/models/block/useradded226.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded227.json b/src/main/resources/assets/imsm/models/block/useradded227.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded227.json +++ b/src/main/resources/assets/imsm/models/block/useradded227.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded228.json b/src/main/resources/assets/imsm/models/block/useradded228.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded228.json +++ b/src/main/resources/assets/imsm/models/block/useradded228.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded229.json b/src/main/resources/assets/imsm/models/block/useradded229.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded229.json +++ b/src/main/resources/assets/imsm/models/block/useradded229.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded23.json b/src/main/resources/assets/imsm/models/block/useradded23.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded23.json +++ b/src/main/resources/assets/imsm/models/block/useradded23.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded230.json b/src/main/resources/assets/imsm/models/block/useradded230.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded230.json +++ b/src/main/resources/assets/imsm/models/block/useradded230.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded231.json b/src/main/resources/assets/imsm/models/block/useradded231.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded231.json +++ b/src/main/resources/assets/imsm/models/block/useradded231.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded232.json b/src/main/resources/assets/imsm/models/block/useradded232.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded232.json +++ b/src/main/resources/assets/imsm/models/block/useradded232.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded233.json b/src/main/resources/assets/imsm/models/block/useradded233.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded233.json +++ b/src/main/resources/assets/imsm/models/block/useradded233.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded234.json b/src/main/resources/assets/imsm/models/block/useradded234.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded234.json +++ b/src/main/resources/assets/imsm/models/block/useradded234.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded235.json b/src/main/resources/assets/imsm/models/block/useradded235.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded235.json +++ b/src/main/resources/assets/imsm/models/block/useradded235.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded236.json b/src/main/resources/assets/imsm/models/block/useradded236.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded236.json +++ b/src/main/resources/assets/imsm/models/block/useradded236.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded237.json b/src/main/resources/assets/imsm/models/block/useradded237.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded237.json +++ b/src/main/resources/assets/imsm/models/block/useradded237.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded238.json b/src/main/resources/assets/imsm/models/block/useradded238.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded238.json +++ b/src/main/resources/assets/imsm/models/block/useradded238.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded239.json b/src/main/resources/assets/imsm/models/block/useradded239.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded239.json +++ b/src/main/resources/assets/imsm/models/block/useradded239.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded24.json b/src/main/resources/assets/imsm/models/block/useradded24.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded24.json +++ b/src/main/resources/assets/imsm/models/block/useradded24.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded240.json b/src/main/resources/assets/imsm/models/block/useradded240.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded240.json +++ b/src/main/resources/assets/imsm/models/block/useradded240.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded241.json b/src/main/resources/assets/imsm/models/block/useradded241.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded241.json +++ b/src/main/resources/assets/imsm/models/block/useradded241.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded242.json b/src/main/resources/assets/imsm/models/block/useradded242.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded242.json +++ b/src/main/resources/assets/imsm/models/block/useradded242.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded243.json b/src/main/resources/assets/imsm/models/block/useradded243.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded243.json +++ b/src/main/resources/assets/imsm/models/block/useradded243.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded244.json b/src/main/resources/assets/imsm/models/block/useradded244.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded244.json +++ b/src/main/resources/assets/imsm/models/block/useradded244.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded245.json b/src/main/resources/assets/imsm/models/block/useradded245.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded245.json +++ b/src/main/resources/assets/imsm/models/block/useradded245.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded246.json b/src/main/resources/assets/imsm/models/block/useradded246.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded246.json +++ b/src/main/resources/assets/imsm/models/block/useradded246.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded247.json b/src/main/resources/assets/imsm/models/block/useradded247.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded247.json +++ b/src/main/resources/assets/imsm/models/block/useradded247.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded248.json b/src/main/resources/assets/imsm/models/block/useradded248.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded248.json +++ b/src/main/resources/assets/imsm/models/block/useradded248.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded249.json b/src/main/resources/assets/imsm/models/block/useradded249.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded249.json +++ b/src/main/resources/assets/imsm/models/block/useradded249.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded25.json b/src/main/resources/assets/imsm/models/block/useradded25.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded25.json +++ b/src/main/resources/assets/imsm/models/block/useradded25.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded250.json b/src/main/resources/assets/imsm/models/block/useradded250.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded250.json +++ b/src/main/resources/assets/imsm/models/block/useradded250.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded251.json b/src/main/resources/assets/imsm/models/block/useradded251.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded251.json +++ b/src/main/resources/assets/imsm/models/block/useradded251.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded252.json b/src/main/resources/assets/imsm/models/block/useradded252.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded252.json +++ b/src/main/resources/assets/imsm/models/block/useradded252.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded253.json b/src/main/resources/assets/imsm/models/block/useradded253.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded253.json +++ b/src/main/resources/assets/imsm/models/block/useradded253.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded254.json b/src/main/resources/assets/imsm/models/block/useradded254.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded254.json +++ b/src/main/resources/assets/imsm/models/block/useradded254.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded255.json b/src/main/resources/assets/imsm/models/block/useradded255.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded255.json +++ b/src/main/resources/assets/imsm/models/block/useradded255.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded256.json b/src/main/resources/assets/imsm/models/block/useradded256.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded256.json +++ b/src/main/resources/assets/imsm/models/block/useradded256.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded257.json b/src/main/resources/assets/imsm/models/block/useradded257.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded257.json +++ b/src/main/resources/assets/imsm/models/block/useradded257.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded258.json b/src/main/resources/assets/imsm/models/block/useradded258.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded258.json +++ b/src/main/resources/assets/imsm/models/block/useradded258.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded259.json b/src/main/resources/assets/imsm/models/block/useradded259.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded259.json +++ b/src/main/resources/assets/imsm/models/block/useradded259.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded26.json b/src/main/resources/assets/imsm/models/block/useradded26.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded26.json +++ b/src/main/resources/assets/imsm/models/block/useradded26.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded260.json b/src/main/resources/assets/imsm/models/block/useradded260.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded260.json +++ b/src/main/resources/assets/imsm/models/block/useradded260.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded261.json b/src/main/resources/assets/imsm/models/block/useradded261.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded261.json +++ b/src/main/resources/assets/imsm/models/block/useradded261.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded262.json b/src/main/resources/assets/imsm/models/block/useradded262.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded262.json +++ b/src/main/resources/assets/imsm/models/block/useradded262.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded263.json b/src/main/resources/assets/imsm/models/block/useradded263.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded263.json +++ b/src/main/resources/assets/imsm/models/block/useradded263.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded264.json b/src/main/resources/assets/imsm/models/block/useradded264.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded264.json +++ b/src/main/resources/assets/imsm/models/block/useradded264.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded265.json b/src/main/resources/assets/imsm/models/block/useradded265.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded265.json +++ b/src/main/resources/assets/imsm/models/block/useradded265.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded266.json b/src/main/resources/assets/imsm/models/block/useradded266.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded266.json +++ b/src/main/resources/assets/imsm/models/block/useradded266.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded267.json b/src/main/resources/assets/imsm/models/block/useradded267.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded267.json +++ b/src/main/resources/assets/imsm/models/block/useradded267.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded268.json b/src/main/resources/assets/imsm/models/block/useradded268.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded268.json +++ b/src/main/resources/assets/imsm/models/block/useradded268.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded269.json b/src/main/resources/assets/imsm/models/block/useradded269.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded269.json +++ b/src/main/resources/assets/imsm/models/block/useradded269.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded27.json b/src/main/resources/assets/imsm/models/block/useradded27.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded27.json +++ b/src/main/resources/assets/imsm/models/block/useradded27.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded270.json b/src/main/resources/assets/imsm/models/block/useradded270.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded270.json +++ b/src/main/resources/assets/imsm/models/block/useradded270.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded271.json b/src/main/resources/assets/imsm/models/block/useradded271.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded271.json +++ b/src/main/resources/assets/imsm/models/block/useradded271.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded272.json b/src/main/resources/assets/imsm/models/block/useradded272.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded272.json +++ b/src/main/resources/assets/imsm/models/block/useradded272.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded273.json b/src/main/resources/assets/imsm/models/block/useradded273.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded273.json +++ b/src/main/resources/assets/imsm/models/block/useradded273.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded274.json b/src/main/resources/assets/imsm/models/block/useradded274.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded274.json +++ b/src/main/resources/assets/imsm/models/block/useradded274.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded275.json b/src/main/resources/assets/imsm/models/block/useradded275.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded275.json +++ b/src/main/resources/assets/imsm/models/block/useradded275.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded276.json b/src/main/resources/assets/imsm/models/block/useradded276.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded276.json +++ b/src/main/resources/assets/imsm/models/block/useradded276.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded277.json b/src/main/resources/assets/imsm/models/block/useradded277.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded277.json +++ b/src/main/resources/assets/imsm/models/block/useradded277.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded278.json b/src/main/resources/assets/imsm/models/block/useradded278.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded278.json +++ b/src/main/resources/assets/imsm/models/block/useradded278.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded279.json b/src/main/resources/assets/imsm/models/block/useradded279.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded279.json +++ b/src/main/resources/assets/imsm/models/block/useradded279.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded28.json b/src/main/resources/assets/imsm/models/block/useradded28.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded28.json +++ b/src/main/resources/assets/imsm/models/block/useradded28.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded280.json b/src/main/resources/assets/imsm/models/block/useradded280.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded280.json +++ b/src/main/resources/assets/imsm/models/block/useradded280.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded281.json b/src/main/resources/assets/imsm/models/block/useradded281.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded281.json +++ b/src/main/resources/assets/imsm/models/block/useradded281.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded282.json b/src/main/resources/assets/imsm/models/block/useradded282.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded282.json +++ b/src/main/resources/assets/imsm/models/block/useradded282.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded283.json b/src/main/resources/assets/imsm/models/block/useradded283.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded283.json +++ b/src/main/resources/assets/imsm/models/block/useradded283.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded284.json b/src/main/resources/assets/imsm/models/block/useradded284.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded284.json +++ b/src/main/resources/assets/imsm/models/block/useradded284.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded285.json b/src/main/resources/assets/imsm/models/block/useradded285.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded285.json +++ b/src/main/resources/assets/imsm/models/block/useradded285.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded286.json b/src/main/resources/assets/imsm/models/block/useradded286.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded286.json +++ b/src/main/resources/assets/imsm/models/block/useradded286.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded287.json b/src/main/resources/assets/imsm/models/block/useradded287.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded287.json +++ b/src/main/resources/assets/imsm/models/block/useradded287.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded288.json b/src/main/resources/assets/imsm/models/block/useradded288.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded288.json +++ b/src/main/resources/assets/imsm/models/block/useradded288.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded289.json b/src/main/resources/assets/imsm/models/block/useradded289.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded289.json +++ b/src/main/resources/assets/imsm/models/block/useradded289.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded29.json b/src/main/resources/assets/imsm/models/block/useradded29.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded29.json +++ b/src/main/resources/assets/imsm/models/block/useradded29.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded290.json b/src/main/resources/assets/imsm/models/block/useradded290.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded290.json +++ b/src/main/resources/assets/imsm/models/block/useradded290.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded291.json b/src/main/resources/assets/imsm/models/block/useradded291.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded291.json +++ b/src/main/resources/assets/imsm/models/block/useradded291.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded292.json b/src/main/resources/assets/imsm/models/block/useradded292.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded292.json +++ b/src/main/resources/assets/imsm/models/block/useradded292.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded293.json b/src/main/resources/assets/imsm/models/block/useradded293.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded293.json +++ b/src/main/resources/assets/imsm/models/block/useradded293.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded294.json b/src/main/resources/assets/imsm/models/block/useradded294.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded294.json +++ b/src/main/resources/assets/imsm/models/block/useradded294.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded295.json b/src/main/resources/assets/imsm/models/block/useradded295.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded295.json +++ b/src/main/resources/assets/imsm/models/block/useradded295.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded296.json b/src/main/resources/assets/imsm/models/block/useradded296.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded296.json +++ b/src/main/resources/assets/imsm/models/block/useradded296.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded297.json b/src/main/resources/assets/imsm/models/block/useradded297.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded297.json +++ b/src/main/resources/assets/imsm/models/block/useradded297.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded298.json b/src/main/resources/assets/imsm/models/block/useradded298.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded298.json +++ b/src/main/resources/assets/imsm/models/block/useradded298.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded299.json b/src/main/resources/assets/imsm/models/block/useradded299.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded299.json +++ b/src/main/resources/assets/imsm/models/block/useradded299.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded3.json b/src/main/resources/assets/imsm/models/block/useradded3.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded3.json +++ b/src/main/resources/assets/imsm/models/block/useradded3.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded30.json b/src/main/resources/assets/imsm/models/block/useradded30.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded30.json +++ b/src/main/resources/assets/imsm/models/block/useradded30.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded300.json b/src/main/resources/assets/imsm/models/block/useradded300.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded300.json +++ b/src/main/resources/assets/imsm/models/block/useradded300.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded301.json b/src/main/resources/assets/imsm/models/block/useradded301.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded301.json +++ b/src/main/resources/assets/imsm/models/block/useradded301.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded302.json b/src/main/resources/assets/imsm/models/block/useradded302.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded302.json +++ b/src/main/resources/assets/imsm/models/block/useradded302.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded303.json b/src/main/resources/assets/imsm/models/block/useradded303.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded303.json +++ b/src/main/resources/assets/imsm/models/block/useradded303.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded304.json b/src/main/resources/assets/imsm/models/block/useradded304.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded304.json +++ b/src/main/resources/assets/imsm/models/block/useradded304.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded305.json b/src/main/resources/assets/imsm/models/block/useradded305.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded305.json +++ b/src/main/resources/assets/imsm/models/block/useradded305.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded306.json b/src/main/resources/assets/imsm/models/block/useradded306.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded306.json +++ b/src/main/resources/assets/imsm/models/block/useradded306.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded307.json b/src/main/resources/assets/imsm/models/block/useradded307.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded307.json +++ b/src/main/resources/assets/imsm/models/block/useradded307.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded308.json b/src/main/resources/assets/imsm/models/block/useradded308.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded308.json +++ b/src/main/resources/assets/imsm/models/block/useradded308.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded309.json b/src/main/resources/assets/imsm/models/block/useradded309.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded309.json +++ b/src/main/resources/assets/imsm/models/block/useradded309.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded31.json b/src/main/resources/assets/imsm/models/block/useradded31.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded31.json +++ b/src/main/resources/assets/imsm/models/block/useradded31.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded310.json b/src/main/resources/assets/imsm/models/block/useradded310.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded310.json +++ b/src/main/resources/assets/imsm/models/block/useradded310.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded311.json b/src/main/resources/assets/imsm/models/block/useradded311.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded311.json +++ b/src/main/resources/assets/imsm/models/block/useradded311.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded312.json b/src/main/resources/assets/imsm/models/block/useradded312.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded312.json +++ b/src/main/resources/assets/imsm/models/block/useradded312.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded313.json b/src/main/resources/assets/imsm/models/block/useradded313.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded313.json +++ b/src/main/resources/assets/imsm/models/block/useradded313.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded314.json b/src/main/resources/assets/imsm/models/block/useradded314.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded314.json +++ b/src/main/resources/assets/imsm/models/block/useradded314.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded315.json b/src/main/resources/assets/imsm/models/block/useradded315.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded315.json +++ b/src/main/resources/assets/imsm/models/block/useradded315.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded316.json b/src/main/resources/assets/imsm/models/block/useradded316.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded316.json +++ b/src/main/resources/assets/imsm/models/block/useradded316.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded317.json b/src/main/resources/assets/imsm/models/block/useradded317.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded317.json +++ b/src/main/resources/assets/imsm/models/block/useradded317.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded318.json b/src/main/resources/assets/imsm/models/block/useradded318.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded318.json +++ b/src/main/resources/assets/imsm/models/block/useradded318.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded319.json b/src/main/resources/assets/imsm/models/block/useradded319.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded319.json +++ b/src/main/resources/assets/imsm/models/block/useradded319.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded32.json b/src/main/resources/assets/imsm/models/block/useradded32.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded32.json +++ b/src/main/resources/assets/imsm/models/block/useradded32.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded320.json b/src/main/resources/assets/imsm/models/block/useradded320.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded320.json +++ b/src/main/resources/assets/imsm/models/block/useradded320.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded321.json b/src/main/resources/assets/imsm/models/block/useradded321.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded321.json +++ b/src/main/resources/assets/imsm/models/block/useradded321.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded322.json b/src/main/resources/assets/imsm/models/block/useradded322.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded322.json +++ b/src/main/resources/assets/imsm/models/block/useradded322.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded323.json b/src/main/resources/assets/imsm/models/block/useradded323.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded323.json +++ b/src/main/resources/assets/imsm/models/block/useradded323.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded324.json b/src/main/resources/assets/imsm/models/block/useradded324.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded324.json +++ b/src/main/resources/assets/imsm/models/block/useradded324.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded325.json b/src/main/resources/assets/imsm/models/block/useradded325.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded325.json +++ b/src/main/resources/assets/imsm/models/block/useradded325.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded326.json b/src/main/resources/assets/imsm/models/block/useradded326.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded326.json +++ b/src/main/resources/assets/imsm/models/block/useradded326.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded327.json b/src/main/resources/assets/imsm/models/block/useradded327.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded327.json +++ b/src/main/resources/assets/imsm/models/block/useradded327.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded328.json b/src/main/resources/assets/imsm/models/block/useradded328.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded328.json +++ b/src/main/resources/assets/imsm/models/block/useradded328.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded329.json b/src/main/resources/assets/imsm/models/block/useradded329.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded329.json +++ b/src/main/resources/assets/imsm/models/block/useradded329.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded33.json b/src/main/resources/assets/imsm/models/block/useradded33.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded33.json +++ b/src/main/resources/assets/imsm/models/block/useradded33.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded330.json b/src/main/resources/assets/imsm/models/block/useradded330.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded330.json +++ b/src/main/resources/assets/imsm/models/block/useradded330.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded331.json b/src/main/resources/assets/imsm/models/block/useradded331.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded331.json +++ b/src/main/resources/assets/imsm/models/block/useradded331.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded332.json b/src/main/resources/assets/imsm/models/block/useradded332.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded332.json +++ b/src/main/resources/assets/imsm/models/block/useradded332.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded333.json b/src/main/resources/assets/imsm/models/block/useradded333.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded333.json +++ b/src/main/resources/assets/imsm/models/block/useradded333.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded334.json b/src/main/resources/assets/imsm/models/block/useradded334.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded334.json +++ b/src/main/resources/assets/imsm/models/block/useradded334.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded335.json b/src/main/resources/assets/imsm/models/block/useradded335.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded335.json +++ b/src/main/resources/assets/imsm/models/block/useradded335.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded336.json b/src/main/resources/assets/imsm/models/block/useradded336.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded336.json +++ b/src/main/resources/assets/imsm/models/block/useradded336.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded337.json b/src/main/resources/assets/imsm/models/block/useradded337.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded337.json +++ b/src/main/resources/assets/imsm/models/block/useradded337.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded338.json b/src/main/resources/assets/imsm/models/block/useradded338.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded338.json +++ b/src/main/resources/assets/imsm/models/block/useradded338.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded339.json b/src/main/resources/assets/imsm/models/block/useradded339.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded339.json +++ b/src/main/resources/assets/imsm/models/block/useradded339.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded34.json b/src/main/resources/assets/imsm/models/block/useradded34.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded34.json +++ b/src/main/resources/assets/imsm/models/block/useradded34.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded340.json b/src/main/resources/assets/imsm/models/block/useradded340.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded340.json +++ b/src/main/resources/assets/imsm/models/block/useradded340.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded341.json b/src/main/resources/assets/imsm/models/block/useradded341.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded341.json +++ b/src/main/resources/assets/imsm/models/block/useradded341.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded342.json b/src/main/resources/assets/imsm/models/block/useradded342.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded342.json +++ b/src/main/resources/assets/imsm/models/block/useradded342.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded343.json b/src/main/resources/assets/imsm/models/block/useradded343.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded343.json +++ b/src/main/resources/assets/imsm/models/block/useradded343.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded344.json b/src/main/resources/assets/imsm/models/block/useradded344.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded344.json +++ b/src/main/resources/assets/imsm/models/block/useradded344.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded345.json b/src/main/resources/assets/imsm/models/block/useradded345.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded345.json +++ b/src/main/resources/assets/imsm/models/block/useradded345.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded346.json b/src/main/resources/assets/imsm/models/block/useradded346.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded346.json +++ b/src/main/resources/assets/imsm/models/block/useradded346.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded347.json b/src/main/resources/assets/imsm/models/block/useradded347.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded347.json +++ b/src/main/resources/assets/imsm/models/block/useradded347.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded348.json b/src/main/resources/assets/imsm/models/block/useradded348.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded348.json +++ b/src/main/resources/assets/imsm/models/block/useradded348.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded349.json b/src/main/resources/assets/imsm/models/block/useradded349.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded349.json +++ b/src/main/resources/assets/imsm/models/block/useradded349.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded35.json b/src/main/resources/assets/imsm/models/block/useradded35.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded35.json +++ b/src/main/resources/assets/imsm/models/block/useradded35.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded350.json b/src/main/resources/assets/imsm/models/block/useradded350.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded350.json +++ b/src/main/resources/assets/imsm/models/block/useradded350.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded351.json b/src/main/resources/assets/imsm/models/block/useradded351.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded351.json +++ b/src/main/resources/assets/imsm/models/block/useradded351.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded352.json b/src/main/resources/assets/imsm/models/block/useradded352.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded352.json +++ b/src/main/resources/assets/imsm/models/block/useradded352.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded353.json b/src/main/resources/assets/imsm/models/block/useradded353.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded353.json +++ b/src/main/resources/assets/imsm/models/block/useradded353.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded354.json b/src/main/resources/assets/imsm/models/block/useradded354.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded354.json +++ b/src/main/resources/assets/imsm/models/block/useradded354.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded355.json b/src/main/resources/assets/imsm/models/block/useradded355.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded355.json +++ b/src/main/resources/assets/imsm/models/block/useradded355.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded356.json b/src/main/resources/assets/imsm/models/block/useradded356.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded356.json +++ b/src/main/resources/assets/imsm/models/block/useradded356.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded357.json b/src/main/resources/assets/imsm/models/block/useradded357.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded357.json +++ b/src/main/resources/assets/imsm/models/block/useradded357.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded358.json b/src/main/resources/assets/imsm/models/block/useradded358.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded358.json +++ b/src/main/resources/assets/imsm/models/block/useradded358.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded359.json b/src/main/resources/assets/imsm/models/block/useradded359.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded359.json +++ b/src/main/resources/assets/imsm/models/block/useradded359.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded36.json b/src/main/resources/assets/imsm/models/block/useradded36.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded36.json +++ b/src/main/resources/assets/imsm/models/block/useradded36.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded360.json b/src/main/resources/assets/imsm/models/block/useradded360.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded360.json +++ b/src/main/resources/assets/imsm/models/block/useradded360.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded361.json b/src/main/resources/assets/imsm/models/block/useradded361.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded361.json +++ b/src/main/resources/assets/imsm/models/block/useradded361.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded362.json b/src/main/resources/assets/imsm/models/block/useradded362.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded362.json +++ b/src/main/resources/assets/imsm/models/block/useradded362.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded363.json b/src/main/resources/assets/imsm/models/block/useradded363.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded363.json +++ b/src/main/resources/assets/imsm/models/block/useradded363.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded364.json b/src/main/resources/assets/imsm/models/block/useradded364.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded364.json +++ b/src/main/resources/assets/imsm/models/block/useradded364.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded365.json b/src/main/resources/assets/imsm/models/block/useradded365.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded365.json +++ b/src/main/resources/assets/imsm/models/block/useradded365.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded366.json b/src/main/resources/assets/imsm/models/block/useradded366.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded366.json +++ b/src/main/resources/assets/imsm/models/block/useradded366.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded367.json b/src/main/resources/assets/imsm/models/block/useradded367.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded367.json +++ b/src/main/resources/assets/imsm/models/block/useradded367.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded368.json b/src/main/resources/assets/imsm/models/block/useradded368.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded368.json +++ b/src/main/resources/assets/imsm/models/block/useradded368.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded369.json b/src/main/resources/assets/imsm/models/block/useradded369.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded369.json +++ b/src/main/resources/assets/imsm/models/block/useradded369.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded37.json b/src/main/resources/assets/imsm/models/block/useradded37.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded37.json +++ b/src/main/resources/assets/imsm/models/block/useradded37.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded370.json b/src/main/resources/assets/imsm/models/block/useradded370.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded370.json +++ b/src/main/resources/assets/imsm/models/block/useradded370.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded371.json b/src/main/resources/assets/imsm/models/block/useradded371.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded371.json +++ b/src/main/resources/assets/imsm/models/block/useradded371.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded372.json b/src/main/resources/assets/imsm/models/block/useradded372.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded372.json +++ b/src/main/resources/assets/imsm/models/block/useradded372.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded373.json b/src/main/resources/assets/imsm/models/block/useradded373.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded373.json +++ b/src/main/resources/assets/imsm/models/block/useradded373.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded374.json b/src/main/resources/assets/imsm/models/block/useradded374.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded374.json +++ b/src/main/resources/assets/imsm/models/block/useradded374.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded375.json b/src/main/resources/assets/imsm/models/block/useradded375.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded375.json +++ b/src/main/resources/assets/imsm/models/block/useradded375.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded376.json b/src/main/resources/assets/imsm/models/block/useradded376.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded376.json +++ b/src/main/resources/assets/imsm/models/block/useradded376.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded377.json b/src/main/resources/assets/imsm/models/block/useradded377.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded377.json +++ b/src/main/resources/assets/imsm/models/block/useradded377.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded378.json b/src/main/resources/assets/imsm/models/block/useradded378.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded378.json +++ b/src/main/resources/assets/imsm/models/block/useradded378.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded379.json b/src/main/resources/assets/imsm/models/block/useradded379.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded379.json +++ b/src/main/resources/assets/imsm/models/block/useradded379.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded38.json b/src/main/resources/assets/imsm/models/block/useradded38.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded38.json +++ b/src/main/resources/assets/imsm/models/block/useradded38.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded380.json b/src/main/resources/assets/imsm/models/block/useradded380.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded380.json +++ b/src/main/resources/assets/imsm/models/block/useradded380.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded381.json b/src/main/resources/assets/imsm/models/block/useradded381.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded381.json +++ b/src/main/resources/assets/imsm/models/block/useradded381.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded382.json b/src/main/resources/assets/imsm/models/block/useradded382.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded382.json +++ b/src/main/resources/assets/imsm/models/block/useradded382.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded383.json b/src/main/resources/assets/imsm/models/block/useradded383.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded383.json +++ b/src/main/resources/assets/imsm/models/block/useradded383.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded384.json b/src/main/resources/assets/imsm/models/block/useradded384.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded384.json +++ b/src/main/resources/assets/imsm/models/block/useradded384.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded385.json b/src/main/resources/assets/imsm/models/block/useradded385.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded385.json +++ b/src/main/resources/assets/imsm/models/block/useradded385.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded386.json b/src/main/resources/assets/imsm/models/block/useradded386.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded386.json +++ b/src/main/resources/assets/imsm/models/block/useradded386.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded387.json b/src/main/resources/assets/imsm/models/block/useradded387.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded387.json +++ b/src/main/resources/assets/imsm/models/block/useradded387.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded388.json b/src/main/resources/assets/imsm/models/block/useradded388.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded388.json +++ b/src/main/resources/assets/imsm/models/block/useradded388.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded389.json b/src/main/resources/assets/imsm/models/block/useradded389.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded389.json +++ b/src/main/resources/assets/imsm/models/block/useradded389.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded39.json b/src/main/resources/assets/imsm/models/block/useradded39.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded39.json +++ b/src/main/resources/assets/imsm/models/block/useradded39.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded390.json b/src/main/resources/assets/imsm/models/block/useradded390.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded390.json +++ b/src/main/resources/assets/imsm/models/block/useradded390.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded391.json b/src/main/resources/assets/imsm/models/block/useradded391.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded391.json +++ b/src/main/resources/assets/imsm/models/block/useradded391.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded392.json b/src/main/resources/assets/imsm/models/block/useradded392.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded392.json +++ b/src/main/resources/assets/imsm/models/block/useradded392.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded393.json b/src/main/resources/assets/imsm/models/block/useradded393.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded393.json +++ b/src/main/resources/assets/imsm/models/block/useradded393.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded394.json b/src/main/resources/assets/imsm/models/block/useradded394.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded394.json +++ b/src/main/resources/assets/imsm/models/block/useradded394.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded395.json b/src/main/resources/assets/imsm/models/block/useradded395.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded395.json +++ b/src/main/resources/assets/imsm/models/block/useradded395.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded396.json b/src/main/resources/assets/imsm/models/block/useradded396.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded396.json +++ b/src/main/resources/assets/imsm/models/block/useradded396.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded397.json b/src/main/resources/assets/imsm/models/block/useradded397.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded397.json +++ b/src/main/resources/assets/imsm/models/block/useradded397.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded398.json b/src/main/resources/assets/imsm/models/block/useradded398.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded398.json +++ b/src/main/resources/assets/imsm/models/block/useradded398.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded399.json b/src/main/resources/assets/imsm/models/block/useradded399.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded399.json +++ b/src/main/resources/assets/imsm/models/block/useradded399.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded4.json b/src/main/resources/assets/imsm/models/block/useradded4.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded4.json +++ b/src/main/resources/assets/imsm/models/block/useradded4.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded40.json b/src/main/resources/assets/imsm/models/block/useradded40.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded40.json +++ b/src/main/resources/assets/imsm/models/block/useradded40.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded400.json b/src/main/resources/assets/imsm/models/block/useradded400.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded400.json +++ b/src/main/resources/assets/imsm/models/block/useradded400.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded401.json b/src/main/resources/assets/imsm/models/block/useradded401.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded401.json +++ b/src/main/resources/assets/imsm/models/block/useradded401.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded402.json b/src/main/resources/assets/imsm/models/block/useradded402.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded402.json +++ b/src/main/resources/assets/imsm/models/block/useradded402.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded403.json b/src/main/resources/assets/imsm/models/block/useradded403.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded403.json +++ b/src/main/resources/assets/imsm/models/block/useradded403.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded404.json b/src/main/resources/assets/imsm/models/block/useradded404.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded404.json +++ b/src/main/resources/assets/imsm/models/block/useradded404.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded405.json b/src/main/resources/assets/imsm/models/block/useradded405.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded405.json +++ b/src/main/resources/assets/imsm/models/block/useradded405.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded406.json b/src/main/resources/assets/imsm/models/block/useradded406.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded406.json +++ b/src/main/resources/assets/imsm/models/block/useradded406.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded407.json b/src/main/resources/assets/imsm/models/block/useradded407.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded407.json +++ b/src/main/resources/assets/imsm/models/block/useradded407.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded408.json b/src/main/resources/assets/imsm/models/block/useradded408.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded408.json +++ b/src/main/resources/assets/imsm/models/block/useradded408.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded409.json b/src/main/resources/assets/imsm/models/block/useradded409.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded409.json +++ b/src/main/resources/assets/imsm/models/block/useradded409.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded41.json b/src/main/resources/assets/imsm/models/block/useradded41.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded41.json +++ b/src/main/resources/assets/imsm/models/block/useradded41.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded410.json b/src/main/resources/assets/imsm/models/block/useradded410.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded410.json +++ b/src/main/resources/assets/imsm/models/block/useradded410.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded411.json b/src/main/resources/assets/imsm/models/block/useradded411.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded411.json +++ b/src/main/resources/assets/imsm/models/block/useradded411.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded412.json b/src/main/resources/assets/imsm/models/block/useradded412.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded412.json +++ b/src/main/resources/assets/imsm/models/block/useradded412.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded413.json b/src/main/resources/assets/imsm/models/block/useradded413.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded413.json +++ b/src/main/resources/assets/imsm/models/block/useradded413.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded414.json b/src/main/resources/assets/imsm/models/block/useradded414.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded414.json +++ b/src/main/resources/assets/imsm/models/block/useradded414.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded415.json b/src/main/resources/assets/imsm/models/block/useradded415.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded415.json +++ b/src/main/resources/assets/imsm/models/block/useradded415.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded416.json b/src/main/resources/assets/imsm/models/block/useradded416.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded416.json +++ b/src/main/resources/assets/imsm/models/block/useradded416.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded417.json b/src/main/resources/assets/imsm/models/block/useradded417.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded417.json +++ b/src/main/resources/assets/imsm/models/block/useradded417.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded418.json b/src/main/resources/assets/imsm/models/block/useradded418.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded418.json +++ b/src/main/resources/assets/imsm/models/block/useradded418.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded419.json b/src/main/resources/assets/imsm/models/block/useradded419.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded419.json +++ b/src/main/resources/assets/imsm/models/block/useradded419.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded42.json b/src/main/resources/assets/imsm/models/block/useradded42.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded42.json +++ b/src/main/resources/assets/imsm/models/block/useradded42.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded420.json b/src/main/resources/assets/imsm/models/block/useradded420.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded420.json +++ b/src/main/resources/assets/imsm/models/block/useradded420.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded421.json b/src/main/resources/assets/imsm/models/block/useradded421.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded421.json +++ b/src/main/resources/assets/imsm/models/block/useradded421.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded422.json b/src/main/resources/assets/imsm/models/block/useradded422.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded422.json +++ b/src/main/resources/assets/imsm/models/block/useradded422.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded423.json b/src/main/resources/assets/imsm/models/block/useradded423.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded423.json +++ b/src/main/resources/assets/imsm/models/block/useradded423.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded424.json b/src/main/resources/assets/imsm/models/block/useradded424.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded424.json +++ b/src/main/resources/assets/imsm/models/block/useradded424.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded425.json b/src/main/resources/assets/imsm/models/block/useradded425.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded425.json +++ b/src/main/resources/assets/imsm/models/block/useradded425.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded426.json b/src/main/resources/assets/imsm/models/block/useradded426.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded426.json +++ b/src/main/resources/assets/imsm/models/block/useradded426.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded427.json b/src/main/resources/assets/imsm/models/block/useradded427.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded427.json +++ b/src/main/resources/assets/imsm/models/block/useradded427.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded428.json b/src/main/resources/assets/imsm/models/block/useradded428.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded428.json +++ b/src/main/resources/assets/imsm/models/block/useradded428.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded429.json b/src/main/resources/assets/imsm/models/block/useradded429.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded429.json +++ b/src/main/resources/assets/imsm/models/block/useradded429.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded43.json b/src/main/resources/assets/imsm/models/block/useradded43.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded43.json +++ b/src/main/resources/assets/imsm/models/block/useradded43.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded430.json b/src/main/resources/assets/imsm/models/block/useradded430.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded430.json +++ b/src/main/resources/assets/imsm/models/block/useradded430.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded431.json b/src/main/resources/assets/imsm/models/block/useradded431.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded431.json +++ b/src/main/resources/assets/imsm/models/block/useradded431.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded432.json b/src/main/resources/assets/imsm/models/block/useradded432.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded432.json +++ b/src/main/resources/assets/imsm/models/block/useradded432.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded433.json b/src/main/resources/assets/imsm/models/block/useradded433.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded433.json +++ b/src/main/resources/assets/imsm/models/block/useradded433.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded434.json b/src/main/resources/assets/imsm/models/block/useradded434.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded434.json +++ b/src/main/resources/assets/imsm/models/block/useradded434.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded435.json b/src/main/resources/assets/imsm/models/block/useradded435.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded435.json +++ b/src/main/resources/assets/imsm/models/block/useradded435.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded436.json b/src/main/resources/assets/imsm/models/block/useradded436.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded436.json +++ b/src/main/resources/assets/imsm/models/block/useradded436.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded437.json b/src/main/resources/assets/imsm/models/block/useradded437.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded437.json +++ b/src/main/resources/assets/imsm/models/block/useradded437.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded438.json b/src/main/resources/assets/imsm/models/block/useradded438.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded438.json +++ b/src/main/resources/assets/imsm/models/block/useradded438.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded439.json b/src/main/resources/assets/imsm/models/block/useradded439.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded439.json +++ b/src/main/resources/assets/imsm/models/block/useradded439.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded44.json b/src/main/resources/assets/imsm/models/block/useradded44.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded44.json +++ b/src/main/resources/assets/imsm/models/block/useradded44.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded440.json b/src/main/resources/assets/imsm/models/block/useradded440.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded440.json +++ b/src/main/resources/assets/imsm/models/block/useradded440.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded441.json b/src/main/resources/assets/imsm/models/block/useradded441.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded441.json +++ b/src/main/resources/assets/imsm/models/block/useradded441.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded442.json b/src/main/resources/assets/imsm/models/block/useradded442.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded442.json +++ b/src/main/resources/assets/imsm/models/block/useradded442.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded443.json b/src/main/resources/assets/imsm/models/block/useradded443.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded443.json +++ b/src/main/resources/assets/imsm/models/block/useradded443.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded444.json b/src/main/resources/assets/imsm/models/block/useradded444.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded444.json +++ b/src/main/resources/assets/imsm/models/block/useradded444.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded445.json b/src/main/resources/assets/imsm/models/block/useradded445.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded445.json +++ b/src/main/resources/assets/imsm/models/block/useradded445.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded446.json b/src/main/resources/assets/imsm/models/block/useradded446.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded446.json +++ b/src/main/resources/assets/imsm/models/block/useradded446.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded447.json b/src/main/resources/assets/imsm/models/block/useradded447.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded447.json +++ b/src/main/resources/assets/imsm/models/block/useradded447.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded448.json b/src/main/resources/assets/imsm/models/block/useradded448.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded448.json +++ b/src/main/resources/assets/imsm/models/block/useradded448.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded449.json b/src/main/resources/assets/imsm/models/block/useradded449.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded449.json +++ b/src/main/resources/assets/imsm/models/block/useradded449.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded45.json b/src/main/resources/assets/imsm/models/block/useradded45.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded45.json +++ b/src/main/resources/assets/imsm/models/block/useradded45.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded450.json b/src/main/resources/assets/imsm/models/block/useradded450.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded450.json +++ b/src/main/resources/assets/imsm/models/block/useradded450.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded451.json b/src/main/resources/assets/imsm/models/block/useradded451.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded451.json +++ b/src/main/resources/assets/imsm/models/block/useradded451.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded452.json b/src/main/resources/assets/imsm/models/block/useradded452.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded452.json +++ b/src/main/resources/assets/imsm/models/block/useradded452.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded453.json b/src/main/resources/assets/imsm/models/block/useradded453.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded453.json +++ b/src/main/resources/assets/imsm/models/block/useradded453.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded454.json b/src/main/resources/assets/imsm/models/block/useradded454.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded454.json +++ b/src/main/resources/assets/imsm/models/block/useradded454.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded455.json b/src/main/resources/assets/imsm/models/block/useradded455.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded455.json +++ b/src/main/resources/assets/imsm/models/block/useradded455.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded456.json b/src/main/resources/assets/imsm/models/block/useradded456.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded456.json +++ b/src/main/resources/assets/imsm/models/block/useradded456.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded457.json b/src/main/resources/assets/imsm/models/block/useradded457.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded457.json +++ b/src/main/resources/assets/imsm/models/block/useradded457.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded458.json b/src/main/resources/assets/imsm/models/block/useradded458.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded458.json +++ b/src/main/resources/assets/imsm/models/block/useradded458.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded459.json b/src/main/resources/assets/imsm/models/block/useradded459.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded459.json +++ b/src/main/resources/assets/imsm/models/block/useradded459.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded46.json b/src/main/resources/assets/imsm/models/block/useradded46.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded46.json +++ b/src/main/resources/assets/imsm/models/block/useradded46.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded460.json b/src/main/resources/assets/imsm/models/block/useradded460.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded460.json +++ b/src/main/resources/assets/imsm/models/block/useradded460.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded461.json b/src/main/resources/assets/imsm/models/block/useradded461.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded461.json +++ b/src/main/resources/assets/imsm/models/block/useradded461.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded462.json b/src/main/resources/assets/imsm/models/block/useradded462.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded462.json +++ b/src/main/resources/assets/imsm/models/block/useradded462.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded463.json b/src/main/resources/assets/imsm/models/block/useradded463.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded463.json +++ b/src/main/resources/assets/imsm/models/block/useradded463.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded464.json b/src/main/resources/assets/imsm/models/block/useradded464.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded464.json +++ b/src/main/resources/assets/imsm/models/block/useradded464.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded465.json b/src/main/resources/assets/imsm/models/block/useradded465.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded465.json +++ b/src/main/resources/assets/imsm/models/block/useradded465.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded466.json b/src/main/resources/assets/imsm/models/block/useradded466.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded466.json +++ b/src/main/resources/assets/imsm/models/block/useradded466.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded467.json b/src/main/resources/assets/imsm/models/block/useradded467.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded467.json +++ b/src/main/resources/assets/imsm/models/block/useradded467.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded468.json b/src/main/resources/assets/imsm/models/block/useradded468.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded468.json +++ b/src/main/resources/assets/imsm/models/block/useradded468.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded469.json b/src/main/resources/assets/imsm/models/block/useradded469.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded469.json +++ b/src/main/resources/assets/imsm/models/block/useradded469.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded47.json b/src/main/resources/assets/imsm/models/block/useradded47.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded47.json +++ b/src/main/resources/assets/imsm/models/block/useradded47.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded470.json b/src/main/resources/assets/imsm/models/block/useradded470.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded470.json +++ b/src/main/resources/assets/imsm/models/block/useradded470.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded471.json b/src/main/resources/assets/imsm/models/block/useradded471.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded471.json +++ b/src/main/resources/assets/imsm/models/block/useradded471.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded472.json b/src/main/resources/assets/imsm/models/block/useradded472.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded472.json +++ b/src/main/resources/assets/imsm/models/block/useradded472.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded473.json b/src/main/resources/assets/imsm/models/block/useradded473.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded473.json +++ b/src/main/resources/assets/imsm/models/block/useradded473.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded474.json b/src/main/resources/assets/imsm/models/block/useradded474.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded474.json +++ b/src/main/resources/assets/imsm/models/block/useradded474.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded475.json b/src/main/resources/assets/imsm/models/block/useradded475.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded475.json +++ b/src/main/resources/assets/imsm/models/block/useradded475.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded476.json b/src/main/resources/assets/imsm/models/block/useradded476.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded476.json +++ b/src/main/resources/assets/imsm/models/block/useradded476.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded477.json b/src/main/resources/assets/imsm/models/block/useradded477.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded477.json +++ b/src/main/resources/assets/imsm/models/block/useradded477.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded478.json b/src/main/resources/assets/imsm/models/block/useradded478.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded478.json +++ b/src/main/resources/assets/imsm/models/block/useradded478.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded479.json b/src/main/resources/assets/imsm/models/block/useradded479.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded479.json +++ b/src/main/resources/assets/imsm/models/block/useradded479.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded48.json b/src/main/resources/assets/imsm/models/block/useradded48.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded48.json +++ b/src/main/resources/assets/imsm/models/block/useradded48.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded480.json b/src/main/resources/assets/imsm/models/block/useradded480.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded480.json +++ b/src/main/resources/assets/imsm/models/block/useradded480.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded481.json b/src/main/resources/assets/imsm/models/block/useradded481.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded481.json +++ b/src/main/resources/assets/imsm/models/block/useradded481.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded482.json b/src/main/resources/assets/imsm/models/block/useradded482.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded482.json +++ b/src/main/resources/assets/imsm/models/block/useradded482.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded483.json b/src/main/resources/assets/imsm/models/block/useradded483.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded483.json +++ b/src/main/resources/assets/imsm/models/block/useradded483.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded484.json b/src/main/resources/assets/imsm/models/block/useradded484.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded484.json +++ b/src/main/resources/assets/imsm/models/block/useradded484.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded485.json b/src/main/resources/assets/imsm/models/block/useradded485.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded485.json +++ b/src/main/resources/assets/imsm/models/block/useradded485.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded486.json b/src/main/resources/assets/imsm/models/block/useradded486.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded486.json +++ b/src/main/resources/assets/imsm/models/block/useradded486.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded487.json b/src/main/resources/assets/imsm/models/block/useradded487.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded487.json +++ b/src/main/resources/assets/imsm/models/block/useradded487.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded488.json b/src/main/resources/assets/imsm/models/block/useradded488.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded488.json +++ b/src/main/resources/assets/imsm/models/block/useradded488.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded489.json b/src/main/resources/assets/imsm/models/block/useradded489.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded489.json +++ b/src/main/resources/assets/imsm/models/block/useradded489.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded49.json b/src/main/resources/assets/imsm/models/block/useradded49.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded49.json +++ b/src/main/resources/assets/imsm/models/block/useradded49.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded490.json b/src/main/resources/assets/imsm/models/block/useradded490.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded490.json +++ b/src/main/resources/assets/imsm/models/block/useradded490.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded491.json b/src/main/resources/assets/imsm/models/block/useradded491.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded491.json +++ b/src/main/resources/assets/imsm/models/block/useradded491.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded492.json b/src/main/resources/assets/imsm/models/block/useradded492.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded492.json +++ b/src/main/resources/assets/imsm/models/block/useradded492.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded493.json b/src/main/resources/assets/imsm/models/block/useradded493.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded493.json +++ b/src/main/resources/assets/imsm/models/block/useradded493.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded494.json b/src/main/resources/assets/imsm/models/block/useradded494.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded494.json +++ b/src/main/resources/assets/imsm/models/block/useradded494.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded495.json b/src/main/resources/assets/imsm/models/block/useradded495.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded495.json +++ b/src/main/resources/assets/imsm/models/block/useradded495.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded496.json b/src/main/resources/assets/imsm/models/block/useradded496.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded496.json +++ b/src/main/resources/assets/imsm/models/block/useradded496.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded497.json b/src/main/resources/assets/imsm/models/block/useradded497.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded497.json +++ b/src/main/resources/assets/imsm/models/block/useradded497.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded498.json b/src/main/resources/assets/imsm/models/block/useradded498.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded498.json +++ b/src/main/resources/assets/imsm/models/block/useradded498.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded499.json b/src/main/resources/assets/imsm/models/block/useradded499.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded499.json +++ b/src/main/resources/assets/imsm/models/block/useradded499.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded5.json b/src/main/resources/assets/imsm/models/block/useradded5.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded5.json +++ b/src/main/resources/assets/imsm/models/block/useradded5.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded50.json b/src/main/resources/assets/imsm/models/block/useradded50.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded50.json +++ b/src/main/resources/assets/imsm/models/block/useradded50.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded500.json b/src/main/resources/assets/imsm/models/block/useradded500.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded500.json +++ b/src/main/resources/assets/imsm/models/block/useradded500.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded501.json b/src/main/resources/assets/imsm/models/block/useradded501.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded501.json +++ b/src/main/resources/assets/imsm/models/block/useradded501.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded502.json b/src/main/resources/assets/imsm/models/block/useradded502.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded502.json +++ b/src/main/resources/assets/imsm/models/block/useradded502.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded503.json b/src/main/resources/assets/imsm/models/block/useradded503.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded503.json +++ b/src/main/resources/assets/imsm/models/block/useradded503.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded504.json b/src/main/resources/assets/imsm/models/block/useradded504.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded504.json +++ b/src/main/resources/assets/imsm/models/block/useradded504.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded505.json b/src/main/resources/assets/imsm/models/block/useradded505.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded505.json +++ b/src/main/resources/assets/imsm/models/block/useradded505.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded506.json b/src/main/resources/assets/imsm/models/block/useradded506.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded506.json +++ b/src/main/resources/assets/imsm/models/block/useradded506.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded507.json b/src/main/resources/assets/imsm/models/block/useradded507.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded507.json +++ b/src/main/resources/assets/imsm/models/block/useradded507.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded508.json b/src/main/resources/assets/imsm/models/block/useradded508.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded508.json +++ b/src/main/resources/assets/imsm/models/block/useradded508.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded509.json b/src/main/resources/assets/imsm/models/block/useradded509.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded509.json +++ b/src/main/resources/assets/imsm/models/block/useradded509.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded51.json b/src/main/resources/assets/imsm/models/block/useradded51.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded51.json +++ b/src/main/resources/assets/imsm/models/block/useradded51.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded510.json b/src/main/resources/assets/imsm/models/block/useradded510.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded510.json +++ b/src/main/resources/assets/imsm/models/block/useradded510.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded511.json b/src/main/resources/assets/imsm/models/block/useradded511.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded511.json +++ b/src/main/resources/assets/imsm/models/block/useradded511.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded512.json b/src/main/resources/assets/imsm/models/block/useradded512.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded512.json +++ b/src/main/resources/assets/imsm/models/block/useradded512.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded513.json b/src/main/resources/assets/imsm/models/block/useradded513.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded513.json +++ b/src/main/resources/assets/imsm/models/block/useradded513.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded514.json b/src/main/resources/assets/imsm/models/block/useradded514.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded514.json +++ b/src/main/resources/assets/imsm/models/block/useradded514.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded515.json b/src/main/resources/assets/imsm/models/block/useradded515.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded515.json +++ b/src/main/resources/assets/imsm/models/block/useradded515.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded516.json b/src/main/resources/assets/imsm/models/block/useradded516.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded516.json +++ b/src/main/resources/assets/imsm/models/block/useradded516.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded517.json b/src/main/resources/assets/imsm/models/block/useradded517.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded517.json +++ b/src/main/resources/assets/imsm/models/block/useradded517.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded518.json b/src/main/resources/assets/imsm/models/block/useradded518.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded518.json +++ b/src/main/resources/assets/imsm/models/block/useradded518.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded519.json b/src/main/resources/assets/imsm/models/block/useradded519.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded519.json +++ b/src/main/resources/assets/imsm/models/block/useradded519.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded52.json b/src/main/resources/assets/imsm/models/block/useradded52.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded52.json +++ b/src/main/resources/assets/imsm/models/block/useradded52.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded520.json b/src/main/resources/assets/imsm/models/block/useradded520.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded520.json +++ b/src/main/resources/assets/imsm/models/block/useradded520.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded521.json b/src/main/resources/assets/imsm/models/block/useradded521.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded521.json +++ b/src/main/resources/assets/imsm/models/block/useradded521.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded522.json b/src/main/resources/assets/imsm/models/block/useradded522.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded522.json +++ b/src/main/resources/assets/imsm/models/block/useradded522.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded523.json b/src/main/resources/assets/imsm/models/block/useradded523.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded523.json +++ b/src/main/resources/assets/imsm/models/block/useradded523.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded524.json b/src/main/resources/assets/imsm/models/block/useradded524.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded524.json +++ b/src/main/resources/assets/imsm/models/block/useradded524.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded525.json b/src/main/resources/assets/imsm/models/block/useradded525.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded525.json +++ b/src/main/resources/assets/imsm/models/block/useradded525.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded526.json b/src/main/resources/assets/imsm/models/block/useradded526.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded526.json +++ b/src/main/resources/assets/imsm/models/block/useradded526.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded527.json b/src/main/resources/assets/imsm/models/block/useradded527.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded527.json +++ b/src/main/resources/assets/imsm/models/block/useradded527.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded528.json b/src/main/resources/assets/imsm/models/block/useradded528.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded528.json +++ b/src/main/resources/assets/imsm/models/block/useradded528.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded529.json b/src/main/resources/assets/imsm/models/block/useradded529.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded529.json +++ b/src/main/resources/assets/imsm/models/block/useradded529.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded53.json b/src/main/resources/assets/imsm/models/block/useradded53.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded53.json +++ b/src/main/resources/assets/imsm/models/block/useradded53.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded530.json b/src/main/resources/assets/imsm/models/block/useradded530.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded530.json +++ b/src/main/resources/assets/imsm/models/block/useradded530.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded531.json b/src/main/resources/assets/imsm/models/block/useradded531.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded531.json +++ b/src/main/resources/assets/imsm/models/block/useradded531.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded532.json b/src/main/resources/assets/imsm/models/block/useradded532.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded532.json +++ b/src/main/resources/assets/imsm/models/block/useradded532.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded533.json b/src/main/resources/assets/imsm/models/block/useradded533.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded533.json +++ b/src/main/resources/assets/imsm/models/block/useradded533.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded534.json b/src/main/resources/assets/imsm/models/block/useradded534.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded534.json +++ b/src/main/resources/assets/imsm/models/block/useradded534.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded535.json b/src/main/resources/assets/imsm/models/block/useradded535.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded535.json +++ b/src/main/resources/assets/imsm/models/block/useradded535.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded536.json b/src/main/resources/assets/imsm/models/block/useradded536.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded536.json +++ b/src/main/resources/assets/imsm/models/block/useradded536.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded537.json b/src/main/resources/assets/imsm/models/block/useradded537.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded537.json +++ b/src/main/resources/assets/imsm/models/block/useradded537.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded538.json b/src/main/resources/assets/imsm/models/block/useradded538.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded538.json +++ b/src/main/resources/assets/imsm/models/block/useradded538.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded539.json b/src/main/resources/assets/imsm/models/block/useradded539.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded539.json +++ b/src/main/resources/assets/imsm/models/block/useradded539.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded54.json b/src/main/resources/assets/imsm/models/block/useradded54.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded54.json +++ b/src/main/resources/assets/imsm/models/block/useradded54.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded540.json b/src/main/resources/assets/imsm/models/block/useradded540.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded540.json +++ b/src/main/resources/assets/imsm/models/block/useradded540.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded541.json b/src/main/resources/assets/imsm/models/block/useradded541.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded541.json +++ b/src/main/resources/assets/imsm/models/block/useradded541.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded542.json b/src/main/resources/assets/imsm/models/block/useradded542.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded542.json +++ b/src/main/resources/assets/imsm/models/block/useradded542.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded543.json b/src/main/resources/assets/imsm/models/block/useradded543.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded543.json +++ b/src/main/resources/assets/imsm/models/block/useradded543.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded544.json b/src/main/resources/assets/imsm/models/block/useradded544.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded544.json +++ b/src/main/resources/assets/imsm/models/block/useradded544.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded545.json b/src/main/resources/assets/imsm/models/block/useradded545.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded545.json +++ b/src/main/resources/assets/imsm/models/block/useradded545.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded546.json b/src/main/resources/assets/imsm/models/block/useradded546.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded546.json +++ b/src/main/resources/assets/imsm/models/block/useradded546.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded547.json b/src/main/resources/assets/imsm/models/block/useradded547.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded547.json +++ b/src/main/resources/assets/imsm/models/block/useradded547.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded548.json b/src/main/resources/assets/imsm/models/block/useradded548.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded548.json +++ b/src/main/resources/assets/imsm/models/block/useradded548.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded549.json b/src/main/resources/assets/imsm/models/block/useradded549.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded549.json +++ b/src/main/resources/assets/imsm/models/block/useradded549.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded55.json b/src/main/resources/assets/imsm/models/block/useradded55.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded55.json +++ b/src/main/resources/assets/imsm/models/block/useradded55.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded550.json b/src/main/resources/assets/imsm/models/block/useradded550.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded550.json +++ b/src/main/resources/assets/imsm/models/block/useradded550.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded551.json b/src/main/resources/assets/imsm/models/block/useradded551.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded551.json +++ b/src/main/resources/assets/imsm/models/block/useradded551.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded552.json b/src/main/resources/assets/imsm/models/block/useradded552.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded552.json +++ b/src/main/resources/assets/imsm/models/block/useradded552.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded553.json b/src/main/resources/assets/imsm/models/block/useradded553.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded553.json +++ b/src/main/resources/assets/imsm/models/block/useradded553.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded554.json b/src/main/resources/assets/imsm/models/block/useradded554.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded554.json +++ b/src/main/resources/assets/imsm/models/block/useradded554.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded555.json b/src/main/resources/assets/imsm/models/block/useradded555.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded555.json +++ b/src/main/resources/assets/imsm/models/block/useradded555.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded556.json b/src/main/resources/assets/imsm/models/block/useradded556.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded556.json +++ b/src/main/resources/assets/imsm/models/block/useradded556.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded557.json b/src/main/resources/assets/imsm/models/block/useradded557.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded557.json +++ b/src/main/resources/assets/imsm/models/block/useradded557.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded558.json b/src/main/resources/assets/imsm/models/block/useradded558.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded558.json +++ b/src/main/resources/assets/imsm/models/block/useradded558.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded559.json b/src/main/resources/assets/imsm/models/block/useradded559.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded559.json +++ b/src/main/resources/assets/imsm/models/block/useradded559.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded56.json b/src/main/resources/assets/imsm/models/block/useradded56.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded56.json +++ b/src/main/resources/assets/imsm/models/block/useradded56.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded560.json b/src/main/resources/assets/imsm/models/block/useradded560.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded560.json +++ b/src/main/resources/assets/imsm/models/block/useradded560.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded561.json b/src/main/resources/assets/imsm/models/block/useradded561.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded561.json +++ b/src/main/resources/assets/imsm/models/block/useradded561.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded562.json b/src/main/resources/assets/imsm/models/block/useradded562.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded562.json +++ b/src/main/resources/assets/imsm/models/block/useradded562.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded563.json b/src/main/resources/assets/imsm/models/block/useradded563.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded563.json +++ b/src/main/resources/assets/imsm/models/block/useradded563.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded564.json b/src/main/resources/assets/imsm/models/block/useradded564.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded564.json +++ b/src/main/resources/assets/imsm/models/block/useradded564.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded565.json b/src/main/resources/assets/imsm/models/block/useradded565.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded565.json +++ b/src/main/resources/assets/imsm/models/block/useradded565.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded566.json b/src/main/resources/assets/imsm/models/block/useradded566.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded566.json +++ b/src/main/resources/assets/imsm/models/block/useradded566.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded567.json b/src/main/resources/assets/imsm/models/block/useradded567.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded567.json +++ b/src/main/resources/assets/imsm/models/block/useradded567.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded568.json b/src/main/resources/assets/imsm/models/block/useradded568.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded568.json +++ b/src/main/resources/assets/imsm/models/block/useradded568.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded569.json b/src/main/resources/assets/imsm/models/block/useradded569.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded569.json +++ b/src/main/resources/assets/imsm/models/block/useradded569.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded57.json b/src/main/resources/assets/imsm/models/block/useradded57.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded57.json +++ b/src/main/resources/assets/imsm/models/block/useradded57.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded570.json b/src/main/resources/assets/imsm/models/block/useradded570.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded570.json +++ b/src/main/resources/assets/imsm/models/block/useradded570.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded571.json b/src/main/resources/assets/imsm/models/block/useradded571.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded571.json +++ b/src/main/resources/assets/imsm/models/block/useradded571.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded572.json b/src/main/resources/assets/imsm/models/block/useradded572.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded572.json +++ b/src/main/resources/assets/imsm/models/block/useradded572.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded573.json b/src/main/resources/assets/imsm/models/block/useradded573.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded573.json +++ b/src/main/resources/assets/imsm/models/block/useradded573.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded574.json b/src/main/resources/assets/imsm/models/block/useradded574.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded574.json +++ b/src/main/resources/assets/imsm/models/block/useradded574.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded575.json b/src/main/resources/assets/imsm/models/block/useradded575.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded575.json +++ b/src/main/resources/assets/imsm/models/block/useradded575.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded576.json b/src/main/resources/assets/imsm/models/block/useradded576.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded576.json +++ b/src/main/resources/assets/imsm/models/block/useradded576.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded577.json b/src/main/resources/assets/imsm/models/block/useradded577.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded577.json +++ b/src/main/resources/assets/imsm/models/block/useradded577.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded578.json b/src/main/resources/assets/imsm/models/block/useradded578.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded578.json +++ b/src/main/resources/assets/imsm/models/block/useradded578.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded579.json b/src/main/resources/assets/imsm/models/block/useradded579.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded579.json +++ b/src/main/resources/assets/imsm/models/block/useradded579.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded58.json b/src/main/resources/assets/imsm/models/block/useradded58.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded58.json +++ b/src/main/resources/assets/imsm/models/block/useradded58.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded580.json b/src/main/resources/assets/imsm/models/block/useradded580.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded580.json +++ b/src/main/resources/assets/imsm/models/block/useradded580.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded581.json b/src/main/resources/assets/imsm/models/block/useradded581.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded581.json +++ b/src/main/resources/assets/imsm/models/block/useradded581.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded582.json b/src/main/resources/assets/imsm/models/block/useradded582.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded582.json +++ b/src/main/resources/assets/imsm/models/block/useradded582.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded583.json b/src/main/resources/assets/imsm/models/block/useradded583.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded583.json +++ b/src/main/resources/assets/imsm/models/block/useradded583.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded584.json b/src/main/resources/assets/imsm/models/block/useradded584.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded584.json +++ b/src/main/resources/assets/imsm/models/block/useradded584.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded585.json b/src/main/resources/assets/imsm/models/block/useradded585.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded585.json +++ b/src/main/resources/assets/imsm/models/block/useradded585.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded586.json b/src/main/resources/assets/imsm/models/block/useradded586.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded586.json +++ b/src/main/resources/assets/imsm/models/block/useradded586.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded587.json b/src/main/resources/assets/imsm/models/block/useradded587.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded587.json +++ b/src/main/resources/assets/imsm/models/block/useradded587.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded588.json b/src/main/resources/assets/imsm/models/block/useradded588.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded588.json +++ b/src/main/resources/assets/imsm/models/block/useradded588.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded589.json b/src/main/resources/assets/imsm/models/block/useradded589.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded589.json +++ b/src/main/resources/assets/imsm/models/block/useradded589.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded59.json b/src/main/resources/assets/imsm/models/block/useradded59.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded59.json +++ b/src/main/resources/assets/imsm/models/block/useradded59.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded590.json b/src/main/resources/assets/imsm/models/block/useradded590.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded590.json +++ b/src/main/resources/assets/imsm/models/block/useradded590.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded591.json b/src/main/resources/assets/imsm/models/block/useradded591.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded591.json +++ b/src/main/resources/assets/imsm/models/block/useradded591.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded592.json b/src/main/resources/assets/imsm/models/block/useradded592.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded592.json +++ b/src/main/resources/assets/imsm/models/block/useradded592.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded593.json b/src/main/resources/assets/imsm/models/block/useradded593.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded593.json +++ b/src/main/resources/assets/imsm/models/block/useradded593.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded594.json b/src/main/resources/assets/imsm/models/block/useradded594.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded594.json +++ b/src/main/resources/assets/imsm/models/block/useradded594.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded595.json b/src/main/resources/assets/imsm/models/block/useradded595.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded595.json +++ b/src/main/resources/assets/imsm/models/block/useradded595.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded596.json b/src/main/resources/assets/imsm/models/block/useradded596.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded596.json +++ b/src/main/resources/assets/imsm/models/block/useradded596.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded597.json b/src/main/resources/assets/imsm/models/block/useradded597.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded597.json +++ b/src/main/resources/assets/imsm/models/block/useradded597.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded598.json b/src/main/resources/assets/imsm/models/block/useradded598.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded598.json +++ b/src/main/resources/assets/imsm/models/block/useradded598.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded599.json b/src/main/resources/assets/imsm/models/block/useradded599.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded599.json +++ b/src/main/resources/assets/imsm/models/block/useradded599.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded6.json b/src/main/resources/assets/imsm/models/block/useradded6.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded6.json +++ b/src/main/resources/assets/imsm/models/block/useradded6.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded60.json b/src/main/resources/assets/imsm/models/block/useradded60.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded60.json +++ b/src/main/resources/assets/imsm/models/block/useradded60.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded600.json b/src/main/resources/assets/imsm/models/block/useradded600.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded600.json +++ b/src/main/resources/assets/imsm/models/block/useradded600.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded601.json b/src/main/resources/assets/imsm/models/block/useradded601.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded601.json +++ b/src/main/resources/assets/imsm/models/block/useradded601.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded602.json b/src/main/resources/assets/imsm/models/block/useradded602.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded602.json +++ b/src/main/resources/assets/imsm/models/block/useradded602.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded603.json b/src/main/resources/assets/imsm/models/block/useradded603.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded603.json +++ b/src/main/resources/assets/imsm/models/block/useradded603.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded604.json b/src/main/resources/assets/imsm/models/block/useradded604.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded604.json +++ b/src/main/resources/assets/imsm/models/block/useradded604.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded605.json b/src/main/resources/assets/imsm/models/block/useradded605.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded605.json +++ b/src/main/resources/assets/imsm/models/block/useradded605.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded606.json b/src/main/resources/assets/imsm/models/block/useradded606.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded606.json +++ b/src/main/resources/assets/imsm/models/block/useradded606.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded607.json b/src/main/resources/assets/imsm/models/block/useradded607.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded607.json +++ b/src/main/resources/assets/imsm/models/block/useradded607.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded608.json b/src/main/resources/assets/imsm/models/block/useradded608.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded608.json +++ b/src/main/resources/assets/imsm/models/block/useradded608.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded609.json b/src/main/resources/assets/imsm/models/block/useradded609.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded609.json +++ b/src/main/resources/assets/imsm/models/block/useradded609.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded61.json b/src/main/resources/assets/imsm/models/block/useradded61.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded61.json +++ b/src/main/resources/assets/imsm/models/block/useradded61.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded610.json b/src/main/resources/assets/imsm/models/block/useradded610.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded610.json +++ b/src/main/resources/assets/imsm/models/block/useradded610.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded611.json b/src/main/resources/assets/imsm/models/block/useradded611.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded611.json +++ b/src/main/resources/assets/imsm/models/block/useradded611.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded612.json b/src/main/resources/assets/imsm/models/block/useradded612.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded612.json +++ b/src/main/resources/assets/imsm/models/block/useradded612.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded613.json b/src/main/resources/assets/imsm/models/block/useradded613.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded613.json +++ b/src/main/resources/assets/imsm/models/block/useradded613.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded614.json b/src/main/resources/assets/imsm/models/block/useradded614.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded614.json +++ b/src/main/resources/assets/imsm/models/block/useradded614.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded615.json b/src/main/resources/assets/imsm/models/block/useradded615.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded615.json +++ b/src/main/resources/assets/imsm/models/block/useradded615.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded616.json b/src/main/resources/assets/imsm/models/block/useradded616.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded616.json +++ b/src/main/resources/assets/imsm/models/block/useradded616.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded617.json b/src/main/resources/assets/imsm/models/block/useradded617.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded617.json +++ b/src/main/resources/assets/imsm/models/block/useradded617.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded618.json b/src/main/resources/assets/imsm/models/block/useradded618.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded618.json +++ b/src/main/resources/assets/imsm/models/block/useradded618.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded619.json b/src/main/resources/assets/imsm/models/block/useradded619.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded619.json +++ b/src/main/resources/assets/imsm/models/block/useradded619.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded62.json b/src/main/resources/assets/imsm/models/block/useradded62.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded62.json +++ b/src/main/resources/assets/imsm/models/block/useradded62.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded620.json b/src/main/resources/assets/imsm/models/block/useradded620.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded620.json +++ b/src/main/resources/assets/imsm/models/block/useradded620.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded621.json b/src/main/resources/assets/imsm/models/block/useradded621.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded621.json +++ b/src/main/resources/assets/imsm/models/block/useradded621.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded622.json b/src/main/resources/assets/imsm/models/block/useradded622.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded622.json +++ b/src/main/resources/assets/imsm/models/block/useradded622.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded623.json b/src/main/resources/assets/imsm/models/block/useradded623.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded623.json +++ b/src/main/resources/assets/imsm/models/block/useradded623.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded624.json b/src/main/resources/assets/imsm/models/block/useradded624.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded624.json +++ b/src/main/resources/assets/imsm/models/block/useradded624.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded625.json b/src/main/resources/assets/imsm/models/block/useradded625.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded625.json +++ b/src/main/resources/assets/imsm/models/block/useradded625.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded626.json b/src/main/resources/assets/imsm/models/block/useradded626.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded626.json +++ b/src/main/resources/assets/imsm/models/block/useradded626.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded627.json b/src/main/resources/assets/imsm/models/block/useradded627.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded627.json +++ b/src/main/resources/assets/imsm/models/block/useradded627.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded628.json b/src/main/resources/assets/imsm/models/block/useradded628.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded628.json +++ b/src/main/resources/assets/imsm/models/block/useradded628.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded629.json b/src/main/resources/assets/imsm/models/block/useradded629.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded629.json +++ b/src/main/resources/assets/imsm/models/block/useradded629.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded63.json b/src/main/resources/assets/imsm/models/block/useradded63.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded63.json +++ b/src/main/resources/assets/imsm/models/block/useradded63.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded630.json b/src/main/resources/assets/imsm/models/block/useradded630.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded630.json +++ b/src/main/resources/assets/imsm/models/block/useradded630.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded631.json b/src/main/resources/assets/imsm/models/block/useradded631.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded631.json +++ b/src/main/resources/assets/imsm/models/block/useradded631.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded632.json b/src/main/resources/assets/imsm/models/block/useradded632.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded632.json +++ b/src/main/resources/assets/imsm/models/block/useradded632.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded633.json b/src/main/resources/assets/imsm/models/block/useradded633.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded633.json +++ b/src/main/resources/assets/imsm/models/block/useradded633.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded634.json b/src/main/resources/assets/imsm/models/block/useradded634.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded634.json +++ b/src/main/resources/assets/imsm/models/block/useradded634.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded635.json b/src/main/resources/assets/imsm/models/block/useradded635.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded635.json +++ b/src/main/resources/assets/imsm/models/block/useradded635.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded636.json b/src/main/resources/assets/imsm/models/block/useradded636.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded636.json +++ b/src/main/resources/assets/imsm/models/block/useradded636.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded637.json b/src/main/resources/assets/imsm/models/block/useradded637.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded637.json +++ b/src/main/resources/assets/imsm/models/block/useradded637.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded638.json b/src/main/resources/assets/imsm/models/block/useradded638.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded638.json +++ b/src/main/resources/assets/imsm/models/block/useradded638.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded639.json b/src/main/resources/assets/imsm/models/block/useradded639.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded639.json +++ b/src/main/resources/assets/imsm/models/block/useradded639.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded64.json b/src/main/resources/assets/imsm/models/block/useradded64.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded64.json +++ b/src/main/resources/assets/imsm/models/block/useradded64.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded640.json b/src/main/resources/assets/imsm/models/block/useradded640.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded640.json +++ b/src/main/resources/assets/imsm/models/block/useradded640.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded641.json b/src/main/resources/assets/imsm/models/block/useradded641.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded641.json +++ b/src/main/resources/assets/imsm/models/block/useradded641.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded642.json b/src/main/resources/assets/imsm/models/block/useradded642.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded642.json +++ b/src/main/resources/assets/imsm/models/block/useradded642.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded643.json b/src/main/resources/assets/imsm/models/block/useradded643.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded643.json +++ b/src/main/resources/assets/imsm/models/block/useradded643.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded644.json b/src/main/resources/assets/imsm/models/block/useradded644.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded644.json +++ b/src/main/resources/assets/imsm/models/block/useradded644.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded645.json b/src/main/resources/assets/imsm/models/block/useradded645.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded645.json +++ b/src/main/resources/assets/imsm/models/block/useradded645.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded646.json b/src/main/resources/assets/imsm/models/block/useradded646.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded646.json +++ b/src/main/resources/assets/imsm/models/block/useradded646.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded647.json b/src/main/resources/assets/imsm/models/block/useradded647.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded647.json +++ b/src/main/resources/assets/imsm/models/block/useradded647.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded648.json b/src/main/resources/assets/imsm/models/block/useradded648.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded648.json +++ b/src/main/resources/assets/imsm/models/block/useradded648.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded649.json b/src/main/resources/assets/imsm/models/block/useradded649.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded649.json +++ b/src/main/resources/assets/imsm/models/block/useradded649.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded65.json b/src/main/resources/assets/imsm/models/block/useradded65.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded65.json +++ b/src/main/resources/assets/imsm/models/block/useradded65.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded650.json b/src/main/resources/assets/imsm/models/block/useradded650.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded650.json +++ b/src/main/resources/assets/imsm/models/block/useradded650.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded651.json b/src/main/resources/assets/imsm/models/block/useradded651.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded651.json +++ b/src/main/resources/assets/imsm/models/block/useradded651.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded652.json b/src/main/resources/assets/imsm/models/block/useradded652.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded652.json +++ b/src/main/resources/assets/imsm/models/block/useradded652.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded653.json b/src/main/resources/assets/imsm/models/block/useradded653.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded653.json +++ b/src/main/resources/assets/imsm/models/block/useradded653.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded654.json b/src/main/resources/assets/imsm/models/block/useradded654.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded654.json +++ b/src/main/resources/assets/imsm/models/block/useradded654.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded655.json b/src/main/resources/assets/imsm/models/block/useradded655.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded655.json +++ b/src/main/resources/assets/imsm/models/block/useradded655.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded656.json b/src/main/resources/assets/imsm/models/block/useradded656.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded656.json +++ b/src/main/resources/assets/imsm/models/block/useradded656.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded657.json b/src/main/resources/assets/imsm/models/block/useradded657.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded657.json +++ b/src/main/resources/assets/imsm/models/block/useradded657.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded658.json b/src/main/resources/assets/imsm/models/block/useradded658.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded658.json +++ b/src/main/resources/assets/imsm/models/block/useradded658.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded659.json b/src/main/resources/assets/imsm/models/block/useradded659.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded659.json +++ b/src/main/resources/assets/imsm/models/block/useradded659.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded66.json b/src/main/resources/assets/imsm/models/block/useradded66.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded66.json +++ b/src/main/resources/assets/imsm/models/block/useradded66.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded660.json b/src/main/resources/assets/imsm/models/block/useradded660.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded660.json +++ b/src/main/resources/assets/imsm/models/block/useradded660.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded661.json b/src/main/resources/assets/imsm/models/block/useradded661.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded661.json +++ b/src/main/resources/assets/imsm/models/block/useradded661.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded662.json b/src/main/resources/assets/imsm/models/block/useradded662.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded662.json +++ b/src/main/resources/assets/imsm/models/block/useradded662.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded663.json b/src/main/resources/assets/imsm/models/block/useradded663.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded663.json +++ b/src/main/resources/assets/imsm/models/block/useradded663.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded664.json b/src/main/resources/assets/imsm/models/block/useradded664.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded664.json +++ b/src/main/resources/assets/imsm/models/block/useradded664.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded665.json b/src/main/resources/assets/imsm/models/block/useradded665.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded665.json +++ b/src/main/resources/assets/imsm/models/block/useradded665.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded666.json b/src/main/resources/assets/imsm/models/block/useradded666.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded666.json +++ b/src/main/resources/assets/imsm/models/block/useradded666.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded667.json b/src/main/resources/assets/imsm/models/block/useradded667.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded667.json +++ b/src/main/resources/assets/imsm/models/block/useradded667.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded668.json b/src/main/resources/assets/imsm/models/block/useradded668.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded668.json +++ b/src/main/resources/assets/imsm/models/block/useradded668.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded669.json b/src/main/resources/assets/imsm/models/block/useradded669.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded669.json +++ b/src/main/resources/assets/imsm/models/block/useradded669.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded67.json b/src/main/resources/assets/imsm/models/block/useradded67.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded67.json +++ b/src/main/resources/assets/imsm/models/block/useradded67.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded670.json b/src/main/resources/assets/imsm/models/block/useradded670.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded670.json +++ b/src/main/resources/assets/imsm/models/block/useradded670.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded671.json b/src/main/resources/assets/imsm/models/block/useradded671.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded671.json +++ b/src/main/resources/assets/imsm/models/block/useradded671.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded672.json b/src/main/resources/assets/imsm/models/block/useradded672.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded672.json +++ b/src/main/resources/assets/imsm/models/block/useradded672.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded673.json b/src/main/resources/assets/imsm/models/block/useradded673.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded673.json +++ b/src/main/resources/assets/imsm/models/block/useradded673.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded674.json b/src/main/resources/assets/imsm/models/block/useradded674.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded674.json +++ b/src/main/resources/assets/imsm/models/block/useradded674.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded675.json b/src/main/resources/assets/imsm/models/block/useradded675.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded675.json +++ b/src/main/resources/assets/imsm/models/block/useradded675.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded676.json b/src/main/resources/assets/imsm/models/block/useradded676.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded676.json +++ b/src/main/resources/assets/imsm/models/block/useradded676.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded677.json b/src/main/resources/assets/imsm/models/block/useradded677.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded677.json +++ b/src/main/resources/assets/imsm/models/block/useradded677.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded678.json b/src/main/resources/assets/imsm/models/block/useradded678.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded678.json +++ b/src/main/resources/assets/imsm/models/block/useradded678.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded679.json b/src/main/resources/assets/imsm/models/block/useradded679.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded679.json +++ b/src/main/resources/assets/imsm/models/block/useradded679.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded68.json b/src/main/resources/assets/imsm/models/block/useradded68.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded68.json +++ b/src/main/resources/assets/imsm/models/block/useradded68.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded680.json b/src/main/resources/assets/imsm/models/block/useradded680.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded680.json +++ b/src/main/resources/assets/imsm/models/block/useradded680.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded681.json b/src/main/resources/assets/imsm/models/block/useradded681.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded681.json +++ b/src/main/resources/assets/imsm/models/block/useradded681.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded682.json b/src/main/resources/assets/imsm/models/block/useradded682.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded682.json +++ b/src/main/resources/assets/imsm/models/block/useradded682.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded683.json b/src/main/resources/assets/imsm/models/block/useradded683.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded683.json +++ b/src/main/resources/assets/imsm/models/block/useradded683.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded684.json b/src/main/resources/assets/imsm/models/block/useradded684.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded684.json +++ b/src/main/resources/assets/imsm/models/block/useradded684.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded685.json b/src/main/resources/assets/imsm/models/block/useradded685.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded685.json +++ b/src/main/resources/assets/imsm/models/block/useradded685.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded686.json b/src/main/resources/assets/imsm/models/block/useradded686.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded686.json +++ b/src/main/resources/assets/imsm/models/block/useradded686.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded687.json b/src/main/resources/assets/imsm/models/block/useradded687.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded687.json +++ b/src/main/resources/assets/imsm/models/block/useradded687.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded688.json b/src/main/resources/assets/imsm/models/block/useradded688.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded688.json +++ b/src/main/resources/assets/imsm/models/block/useradded688.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded689.json b/src/main/resources/assets/imsm/models/block/useradded689.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded689.json +++ b/src/main/resources/assets/imsm/models/block/useradded689.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded69.json b/src/main/resources/assets/imsm/models/block/useradded69.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded69.json +++ b/src/main/resources/assets/imsm/models/block/useradded69.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded690.json b/src/main/resources/assets/imsm/models/block/useradded690.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded690.json +++ b/src/main/resources/assets/imsm/models/block/useradded690.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded691.json b/src/main/resources/assets/imsm/models/block/useradded691.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded691.json +++ b/src/main/resources/assets/imsm/models/block/useradded691.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded692.json b/src/main/resources/assets/imsm/models/block/useradded692.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded692.json +++ b/src/main/resources/assets/imsm/models/block/useradded692.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded693.json b/src/main/resources/assets/imsm/models/block/useradded693.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded693.json +++ b/src/main/resources/assets/imsm/models/block/useradded693.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded694.json b/src/main/resources/assets/imsm/models/block/useradded694.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded694.json +++ b/src/main/resources/assets/imsm/models/block/useradded694.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded695.json b/src/main/resources/assets/imsm/models/block/useradded695.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded695.json +++ b/src/main/resources/assets/imsm/models/block/useradded695.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded696.json b/src/main/resources/assets/imsm/models/block/useradded696.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded696.json +++ b/src/main/resources/assets/imsm/models/block/useradded696.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded697.json b/src/main/resources/assets/imsm/models/block/useradded697.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded697.json +++ b/src/main/resources/assets/imsm/models/block/useradded697.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded698.json b/src/main/resources/assets/imsm/models/block/useradded698.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded698.json +++ b/src/main/resources/assets/imsm/models/block/useradded698.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded699.json b/src/main/resources/assets/imsm/models/block/useradded699.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded699.json +++ b/src/main/resources/assets/imsm/models/block/useradded699.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded7.json b/src/main/resources/assets/imsm/models/block/useradded7.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded7.json +++ b/src/main/resources/assets/imsm/models/block/useradded7.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded70.json b/src/main/resources/assets/imsm/models/block/useradded70.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded70.json +++ b/src/main/resources/assets/imsm/models/block/useradded70.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded700.json b/src/main/resources/assets/imsm/models/block/useradded700.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded700.json +++ b/src/main/resources/assets/imsm/models/block/useradded700.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded701.json b/src/main/resources/assets/imsm/models/block/useradded701.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded701.json +++ b/src/main/resources/assets/imsm/models/block/useradded701.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded702.json b/src/main/resources/assets/imsm/models/block/useradded702.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded702.json +++ b/src/main/resources/assets/imsm/models/block/useradded702.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded703.json b/src/main/resources/assets/imsm/models/block/useradded703.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded703.json +++ b/src/main/resources/assets/imsm/models/block/useradded703.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded704.json b/src/main/resources/assets/imsm/models/block/useradded704.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded704.json +++ b/src/main/resources/assets/imsm/models/block/useradded704.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded705.json b/src/main/resources/assets/imsm/models/block/useradded705.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded705.json +++ b/src/main/resources/assets/imsm/models/block/useradded705.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded706.json b/src/main/resources/assets/imsm/models/block/useradded706.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded706.json +++ b/src/main/resources/assets/imsm/models/block/useradded706.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded707.json b/src/main/resources/assets/imsm/models/block/useradded707.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded707.json +++ b/src/main/resources/assets/imsm/models/block/useradded707.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded708.json b/src/main/resources/assets/imsm/models/block/useradded708.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded708.json +++ b/src/main/resources/assets/imsm/models/block/useradded708.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded709.json b/src/main/resources/assets/imsm/models/block/useradded709.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded709.json +++ b/src/main/resources/assets/imsm/models/block/useradded709.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded71.json b/src/main/resources/assets/imsm/models/block/useradded71.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded71.json +++ b/src/main/resources/assets/imsm/models/block/useradded71.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded710.json b/src/main/resources/assets/imsm/models/block/useradded710.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded710.json +++ b/src/main/resources/assets/imsm/models/block/useradded710.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded711.json b/src/main/resources/assets/imsm/models/block/useradded711.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded711.json +++ b/src/main/resources/assets/imsm/models/block/useradded711.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded712.json b/src/main/resources/assets/imsm/models/block/useradded712.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded712.json +++ b/src/main/resources/assets/imsm/models/block/useradded712.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded713.json b/src/main/resources/assets/imsm/models/block/useradded713.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded713.json +++ b/src/main/resources/assets/imsm/models/block/useradded713.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded714.json b/src/main/resources/assets/imsm/models/block/useradded714.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded714.json +++ b/src/main/resources/assets/imsm/models/block/useradded714.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded715.json b/src/main/resources/assets/imsm/models/block/useradded715.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded715.json +++ b/src/main/resources/assets/imsm/models/block/useradded715.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded716.json b/src/main/resources/assets/imsm/models/block/useradded716.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded716.json +++ b/src/main/resources/assets/imsm/models/block/useradded716.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded717.json b/src/main/resources/assets/imsm/models/block/useradded717.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded717.json +++ b/src/main/resources/assets/imsm/models/block/useradded717.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded718.json b/src/main/resources/assets/imsm/models/block/useradded718.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded718.json +++ b/src/main/resources/assets/imsm/models/block/useradded718.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded719.json b/src/main/resources/assets/imsm/models/block/useradded719.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded719.json +++ b/src/main/resources/assets/imsm/models/block/useradded719.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded72.json b/src/main/resources/assets/imsm/models/block/useradded72.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded72.json +++ b/src/main/resources/assets/imsm/models/block/useradded72.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded720.json b/src/main/resources/assets/imsm/models/block/useradded720.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded720.json +++ b/src/main/resources/assets/imsm/models/block/useradded720.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded721.json b/src/main/resources/assets/imsm/models/block/useradded721.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded721.json +++ b/src/main/resources/assets/imsm/models/block/useradded721.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded722.json b/src/main/resources/assets/imsm/models/block/useradded722.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded722.json +++ b/src/main/resources/assets/imsm/models/block/useradded722.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded723.json b/src/main/resources/assets/imsm/models/block/useradded723.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded723.json +++ b/src/main/resources/assets/imsm/models/block/useradded723.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded724.json b/src/main/resources/assets/imsm/models/block/useradded724.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded724.json +++ b/src/main/resources/assets/imsm/models/block/useradded724.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded725.json b/src/main/resources/assets/imsm/models/block/useradded725.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded725.json +++ b/src/main/resources/assets/imsm/models/block/useradded725.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded726.json b/src/main/resources/assets/imsm/models/block/useradded726.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded726.json +++ b/src/main/resources/assets/imsm/models/block/useradded726.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded727.json b/src/main/resources/assets/imsm/models/block/useradded727.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded727.json +++ b/src/main/resources/assets/imsm/models/block/useradded727.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded728.json b/src/main/resources/assets/imsm/models/block/useradded728.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded728.json +++ b/src/main/resources/assets/imsm/models/block/useradded728.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded729.json b/src/main/resources/assets/imsm/models/block/useradded729.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded729.json +++ b/src/main/resources/assets/imsm/models/block/useradded729.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded73.json b/src/main/resources/assets/imsm/models/block/useradded73.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded73.json +++ b/src/main/resources/assets/imsm/models/block/useradded73.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded730.json b/src/main/resources/assets/imsm/models/block/useradded730.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded730.json +++ b/src/main/resources/assets/imsm/models/block/useradded730.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded731.json b/src/main/resources/assets/imsm/models/block/useradded731.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded731.json +++ b/src/main/resources/assets/imsm/models/block/useradded731.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded732.json b/src/main/resources/assets/imsm/models/block/useradded732.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded732.json +++ b/src/main/resources/assets/imsm/models/block/useradded732.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded733.json b/src/main/resources/assets/imsm/models/block/useradded733.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded733.json +++ b/src/main/resources/assets/imsm/models/block/useradded733.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded734.json b/src/main/resources/assets/imsm/models/block/useradded734.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded734.json +++ b/src/main/resources/assets/imsm/models/block/useradded734.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded735.json b/src/main/resources/assets/imsm/models/block/useradded735.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded735.json +++ b/src/main/resources/assets/imsm/models/block/useradded735.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded736.json b/src/main/resources/assets/imsm/models/block/useradded736.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded736.json +++ b/src/main/resources/assets/imsm/models/block/useradded736.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded737.json b/src/main/resources/assets/imsm/models/block/useradded737.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded737.json +++ b/src/main/resources/assets/imsm/models/block/useradded737.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded738.json b/src/main/resources/assets/imsm/models/block/useradded738.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded738.json +++ b/src/main/resources/assets/imsm/models/block/useradded738.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded739.json b/src/main/resources/assets/imsm/models/block/useradded739.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded739.json +++ b/src/main/resources/assets/imsm/models/block/useradded739.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded74.json b/src/main/resources/assets/imsm/models/block/useradded74.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded74.json +++ b/src/main/resources/assets/imsm/models/block/useradded74.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded740.json b/src/main/resources/assets/imsm/models/block/useradded740.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded740.json +++ b/src/main/resources/assets/imsm/models/block/useradded740.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded741.json b/src/main/resources/assets/imsm/models/block/useradded741.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded741.json +++ b/src/main/resources/assets/imsm/models/block/useradded741.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded742.json b/src/main/resources/assets/imsm/models/block/useradded742.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded742.json +++ b/src/main/resources/assets/imsm/models/block/useradded742.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded743.json b/src/main/resources/assets/imsm/models/block/useradded743.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded743.json +++ b/src/main/resources/assets/imsm/models/block/useradded743.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded744.json b/src/main/resources/assets/imsm/models/block/useradded744.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded744.json +++ b/src/main/resources/assets/imsm/models/block/useradded744.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded745.json b/src/main/resources/assets/imsm/models/block/useradded745.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded745.json +++ b/src/main/resources/assets/imsm/models/block/useradded745.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded746.json b/src/main/resources/assets/imsm/models/block/useradded746.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded746.json +++ b/src/main/resources/assets/imsm/models/block/useradded746.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded747.json b/src/main/resources/assets/imsm/models/block/useradded747.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded747.json +++ b/src/main/resources/assets/imsm/models/block/useradded747.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded748.json b/src/main/resources/assets/imsm/models/block/useradded748.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded748.json +++ b/src/main/resources/assets/imsm/models/block/useradded748.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded749.json b/src/main/resources/assets/imsm/models/block/useradded749.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded749.json +++ b/src/main/resources/assets/imsm/models/block/useradded749.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded75.json b/src/main/resources/assets/imsm/models/block/useradded75.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded75.json +++ b/src/main/resources/assets/imsm/models/block/useradded75.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded750.json b/src/main/resources/assets/imsm/models/block/useradded750.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded750.json +++ b/src/main/resources/assets/imsm/models/block/useradded750.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded751.json b/src/main/resources/assets/imsm/models/block/useradded751.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded751.json +++ b/src/main/resources/assets/imsm/models/block/useradded751.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded752.json b/src/main/resources/assets/imsm/models/block/useradded752.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded752.json +++ b/src/main/resources/assets/imsm/models/block/useradded752.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded753.json b/src/main/resources/assets/imsm/models/block/useradded753.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded753.json +++ b/src/main/resources/assets/imsm/models/block/useradded753.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded754.json b/src/main/resources/assets/imsm/models/block/useradded754.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded754.json +++ b/src/main/resources/assets/imsm/models/block/useradded754.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded755.json b/src/main/resources/assets/imsm/models/block/useradded755.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded755.json +++ b/src/main/resources/assets/imsm/models/block/useradded755.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded756.json b/src/main/resources/assets/imsm/models/block/useradded756.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded756.json +++ b/src/main/resources/assets/imsm/models/block/useradded756.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded757.json b/src/main/resources/assets/imsm/models/block/useradded757.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded757.json +++ b/src/main/resources/assets/imsm/models/block/useradded757.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded758.json b/src/main/resources/assets/imsm/models/block/useradded758.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded758.json +++ b/src/main/resources/assets/imsm/models/block/useradded758.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded759.json b/src/main/resources/assets/imsm/models/block/useradded759.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded759.json +++ b/src/main/resources/assets/imsm/models/block/useradded759.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded76.json b/src/main/resources/assets/imsm/models/block/useradded76.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded76.json +++ b/src/main/resources/assets/imsm/models/block/useradded76.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded760.json b/src/main/resources/assets/imsm/models/block/useradded760.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded760.json +++ b/src/main/resources/assets/imsm/models/block/useradded760.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded761.json b/src/main/resources/assets/imsm/models/block/useradded761.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded761.json +++ b/src/main/resources/assets/imsm/models/block/useradded761.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded762.json b/src/main/resources/assets/imsm/models/block/useradded762.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded762.json +++ b/src/main/resources/assets/imsm/models/block/useradded762.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded763.json b/src/main/resources/assets/imsm/models/block/useradded763.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded763.json +++ b/src/main/resources/assets/imsm/models/block/useradded763.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded764.json b/src/main/resources/assets/imsm/models/block/useradded764.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded764.json +++ b/src/main/resources/assets/imsm/models/block/useradded764.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded765.json b/src/main/resources/assets/imsm/models/block/useradded765.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded765.json +++ b/src/main/resources/assets/imsm/models/block/useradded765.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded766.json b/src/main/resources/assets/imsm/models/block/useradded766.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded766.json +++ b/src/main/resources/assets/imsm/models/block/useradded766.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded767.json b/src/main/resources/assets/imsm/models/block/useradded767.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded767.json +++ b/src/main/resources/assets/imsm/models/block/useradded767.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded768.json b/src/main/resources/assets/imsm/models/block/useradded768.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded768.json +++ b/src/main/resources/assets/imsm/models/block/useradded768.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded769.json b/src/main/resources/assets/imsm/models/block/useradded769.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded769.json +++ b/src/main/resources/assets/imsm/models/block/useradded769.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded77.json b/src/main/resources/assets/imsm/models/block/useradded77.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded77.json +++ b/src/main/resources/assets/imsm/models/block/useradded77.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded770.json b/src/main/resources/assets/imsm/models/block/useradded770.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded770.json +++ b/src/main/resources/assets/imsm/models/block/useradded770.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded771.json b/src/main/resources/assets/imsm/models/block/useradded771.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded771.json +++ b/src/main/resources/assets/imsm/models/block/useradded771.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded772.json b/src/main/resources/assets/imsm/models/block/useradded772.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded772.json +++ b/src/main/resources/assets/imsm/models/block/useradded772.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded773.json b/src/main/resources/assets/imsm/models/block/useradded773.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded773.json +++ b/src/main/resources/assets/imsm/models/block/useradded773.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded774.json b/src/main/resources/assets/imsm/models/block/useradded774.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded774.json +++ b/src/main/resources/assets/imsm/models/block/useradded774.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded775.json b/src/main/resources/assets/imsm/models/block/useradded775.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded775.json +++ b/src/main/resources/assets/imsm/models/block/useradded775.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded776.json b/src/main/resources/assets/imsm/models/block/useradded776.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded776.json +++ b/src/main/resources/assets/imsm/models/block/useradded776.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded777.json b/src/main/resources/assets/imsm/models/block/useradded777.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded777.json +++ b/src/main/resources/assets/imsm/models/block/useradded777.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded778.json b/src/main/resources/assets/imsm/models/block/useradded778.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded778.json +++ b/src/main/resources/assets/imsm/models/block/useradded778.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded779.json b/src/main/resources/assets/imsm/models/block/useradded779.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded779.json +++ b/src/main/resources/assets/imsm/models/block/useradded779.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded78.json b/src/main/resources/assets/imsm/models/block/useradded78.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded78.json +++ b/src/main/resources/assets/imsm/models/block/useradded78.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded780.json b/src/main/resources/assets/imsm/models/block/useradded780.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded780.json +++ b/src/main/resources/assets/imsm/models/block/useradded780.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded781.json b/src/main/resources/assets/imsm/models/block/useradded781.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded781.json +++ b/src/main/resources/assets/imsm/models/block/useradded781.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded782.json b/src/main/resources/assets/imsm/models/block/useradded782.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded782.json +++ b/src/main/resources/assets/imsm/models/block/useradded782.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded783.json b/src/main/resources/assets/imsm/models/block/useradded783.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded783.json +++ b/src/main/resources/assets/imsm/models/block/useradded783.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded784.json b/src/main/resources/assets/imsm/models/block/useradded784.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded784.json +++ b/src/main/resources/assets/imsm/models/block/useradded784.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded785.json b/src/main/resources/assets/imsm/models/block/useradded785.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded785.json +++ b/src/main/resources/assets/imsm/models/block/useradded785.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded786.json b/src/main/resources/assets/imsm/models/block/useradded786.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded786.json +++ b/src/main/resources/assets/imsm/models/block/useradded786.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded787.json b/src/main/resources/assets/imsm/models/block/useradded787.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded787.json +++ b/src/main/resources/assets/imsm/models/block/useradded787.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded788.json b/src/main/resources/assets/imsm/models/block/useradded788.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded788.json +++ b/src/main/resources/assets/imsm/models/block/useradded788.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded789.json b/src/main/resources/assets/imsm/models/block/useradded789.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded789.json +++ b/src/main/resources/assets/imsm/models/block/useradded789.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded79.json b/src/main/resources/assets/imsm/models/block/useradded79.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded79.json +++ b/src/main/resources/assets/imsm/models/block/useradded79.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded790.json b/src/main/resources/assets/imsm/models/block/useradded790.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded790.json +++ b/src/main/resources/assets/imsm/models/block/useradded790.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded791.json b/src/main/resources/assets/imsm/models/block/useradded791.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded791.json +++ b/src/main/resources/assets/imsm/models/block/useradded791.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded792.json b/src/main/resources/assets/imsm/models/block/useradded792.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded792.json +++ b/src/main/resources/assets/imsm/models/block/useradded792.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded793.json b/src/main/resources/assets/imsm/models/block/useradded793.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded793.json +++ b/src/main/resources/assets/imsm/models/block/useradded793.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded794.json b/src/main/resources/assets/imsm/models/block/useradded794.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded794.json +++ b/src/main/resources/assets/imsm/models/block/useradded794.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded795.json b/src/main/resources/assets/imsm/models/block/useradded795.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded795.json +++ b/src/main/resources/assets/imsm/models/block/useradded795.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded796.json b/src/main/resources/assets/imsm/models/block/useradded796.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded796.json +++ b/src/main/resources/assets/imsm/models/block/useradded796.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded797.json b/src/main/resources/assets/imsm/models/block/useradded797.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded797.json +++ b/src/main/resources/assets/imsm/models/block/useradded797.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded798.json b/src/main/resources/assets/imsm/models/block/useradded798.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded798.json +++ b/src/main/resources/assets/imsm/models/block/useradded798.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded799.json b/src/main/resources/assets/imsm/models/block/useradded799.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded799.json +++ b/src/main/resources/assets/imsm/models/block/useradded799.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded8.json b/src/main/resources/assets/imsm/models/block/useradded8.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded8.json +++ b/src/main/resources/assets/imsm/models/block/useradded8.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded80.json b/src/main/resources/assets/imsm/models/block/useradded80.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded80.json +++ b/src/main/resources/assets/imsm/models/block/useradded80.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded800.json b/src/main/resources/assets/imsm/models/block/useradded800.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded800.json +++ b/src/main/resources/assets/imsm/models/block/useradded800.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded801.json b/src/main/resources/assets/imsm/models/block/useradded801.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded801.json +++ b/src/main/resources/assets/imsm/models/block/useradded801.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded802.json b/src/main/resources/assets/imsm/models/block/useradded802.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded802.json +++ b/src/main/resources/assets/imsm/models/block/useradded802.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded803.json b/src/main/resources/assets/imsm/models/block/useradded803.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded803.json +++ b/src/main/resources/assets/imsm/models/block/useradded803.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded804.json b/src/main/resources/assets/imsm/models/block/useradded804.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded804.json +++ b/src/main/resources/assets/imsm/models/block/useradded804.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded805.json b/src/main/resources/assets/imsm/models/block/useradded805.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded805.json +++ b/src/main/resources/assets/imsm/models/block/useradded805.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded806.json b/src/main/resources/assets/imsm/models/block/useradded806.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded806.json +++ b/src/main/resources/assets/imsm/models/block/useradded806.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded807.json b/src/main/resources/assets/imsm/models/block/useradded807.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded807.json +++ b/src/main/resources/assets/imsm/models/block/useradded807.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded808.json b/src/main/resources/assets/imsm/models/block/useradded808.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded808.json +++ b/src/main/resources/assets/imsm/models/block/useradded808.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded809.json b/src/main/resources/assets/imsm/models/block/useradded809.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded809.json +++ b/src/main/resources/assets/imsm/models/block/useradded809.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded81.json b/src/main/resources/assets/imsm/models/block/useradded81.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded81.json +++ b/src/main/resources/assets/imsm/models/block/useradded81.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded810.json b/src/main/resources/assets/imsm/models/block/useradded810.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded810.json +++ b/src/main/resources/assets/imsm/models/block/useradded810.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded811.json b/src/main/resources/assets/imsm/models/block/useradded811.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded811.json +++ b/src/main/resources/assets/imsm/models/block/useradded811.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded812.json b/src/main/resources/assets/imsm/models/block/useradded812.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded812.json +++ b/src/main/resources/assets/imsm/models/block/useradded812.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded813.json b/src/main/resources/assets/imsm/models/block/useradded813.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded813.json +++ b/src/main/resources/assets/imsm/models/block/useradded813.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded814.json b/src/main/resources/assets/imsm/models/block/useradded814.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded814.json +++ b/src/main/resources/assets/imsm/models/block/useradded814.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded815.json b/src/main/resources/assets/imsm/models/block/useradded815.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded815.json +++ b/src/main/resources/assets/imsm/models/block/useradded815.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded816.json b/src/main/resources/assets/imsm/models/block/useradded816.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded816.json +++ b/src/main/resources/assets/imsm/models/block/useradded816.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded817.json b/src/main/resources/assets/imsm/models/block/useradded817.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded817.json +++ b/src/main/resources/assets/imsm/models/block/useradded817.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded818.json b/src/main/resources/assets/imsm/models/block/useradded818.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded818.json +++ b/src/main/resources/assets/imsm/models/block/useradded818.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded819.json b/src/main/resources/assets/imsm/models/block/useradded819.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded819.json +++ b/src/main/resources/assets/imsm/models/block/useradded819.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded82.json b/src/main/resources/assets/imsm/models/block/useradded82.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded82.json +++ b/src/main/resources/assets/imsm/models/block/useradded82.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded820.json b/src/main/resources/assets/imsm/models/block/useradded820.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded820.json +++ b/src/main/resources/assets/imsm/models/block/useradded820.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded821.json b/src/main/resources/assets/imsm/models/block/useradded821.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded821.json +++ b/src/main/resources/assets/imsm/models/block/useradded821.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded822.json b/src/main/resources/assets/imsm/models/block/useradded822.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded822.json +++ b/src/main/resources/assets/imsm/models/block/useradded822.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded823.json b/src/main/resources/assets/imsm/models/block/useradded823.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded823.json +++ b/src/main/resources/assets/imsm/models/block/useradded823.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded824.json b/src/main/resources/assets/imsm/models/block/useradded824.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded824.json +++ b/src/main/resources/assets/imsm/models/block/useradded824.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded825.json b/src/main/resources/assets/imsm/models/block/useradded825.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded825.json +++ b/src/main/resources/assets/imsm/models/block/useradded825.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded826.json b/src/main/resources/assets/imsm/models/block/useradded826.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded826.json +++ b/src/main/resources/assets/imsm/models/block/useradded826.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded827.json b/src/main/resources/assets/imsm/models/block/useradded827.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded827.json +++ b/src/main/resources/assets/imsm/models/block/useradded827.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded828.json b/src/main/resources/assets/imsm/models/block/useradded828.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded828.json +++ b/src/main/resources/assets/imsm/models/block/useradded828.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded829.json b/src/main/resources/assets/imsm/models/block/useradded829.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded829.json +++ b/src/main/resources/assets/imsm/models/block/useradded829.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded83.json b/src/main/resources/assets/imsm/models/block/useradded83.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded83.json +++ b/src/main/resources/assets/imsm/models/block/useradded83.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded830.json b/src/main/resources/assets/imsm/models/block/useradded830.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded830.json +++ b/src/main/resources/assets/imsm/models/block/useradded830.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded831.json b/src/main/resources/assets/imsm/models/block/useradded831.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded831.json +++ b/src/main/resources/assets/imsm/models/block/useradded831.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded832.json b/src/main/resources/assets/imsm/models/block/useradded832.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded832.json +++ b/src/main/resources/assets/imsm/models/block/useradded832.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded833.json b/src/main/resources/assets/imsm/models/block/useradded833.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded833.json +++ b/src/main/resources/assets/imsm/models/block/useradded833.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded834.json b/src/main/resources/assets/imsm/models/block/useradded834.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded834.json +++ b/src/main/resources/assets/imsm/models/block/useradded834.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded835.json b/src/main/resources/assets/imsm/models/block/useradded835.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded835.json +++ b/src/main/resources/assets/imsm/models/block/useradded835.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded836.json b/src/main/resources/assets/imsm/models/block/useradded836.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded836.json +++ b/src/main/resources/assets/imsm/models/block/useradded836.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded837.json b/src/main/resources/assets/imsm/models/block/useradded837.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded837.json +++ b/src/main/resources/assets/imsm/models/block/useradded837.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded838.json b/src/main/resources/assets/imsm/models/block/useradded838.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded838.json +++ b/src/main/resources/assets/imsm/models/block/useradded838.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded839.json b/src/main/resources/assets/imsm/models/block/useradded839.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded839.json +++ b/src/main/resources/assets/imsm/models/block/useradded839.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded84.json b/src/main/resources/assets/imsm/models/block/useradded84.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded84.json +++ b/src/main/resources/assets/imsm/models/block/useradded84.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded840.json b/src/main/resources/assets/imsm/models/block/useradded840.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded840.json +++ b/src/main/resources/assets/imsm/models/block/useradded840.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded841.json b/src/main/resources/assets/imsm/models/block/useradded841.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded841.json +++ b/src/main/resources/assets/imsm/models/block/useradded841.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded842.json b/src/main/resources/assets/imsm/models/block/useradded842.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded842.json +++ b/src/main/resources/assets/imsm/models/block/useradded842.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded843.json b/src/main/resources/assets/imsm/models/block/useradded843.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded843.json +++ b/src/main/resources/assets/imsm/models/block/useradded843.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded844.json b/src/main/resources/assets/imsm/models/block/useradded844.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded844.json +++ b/src/main/resources/assets/imsm/models/block/useradded844.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded845.json b/src/main/resources/assets/imsm/models/block/useradded845.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded845.json +++ b/src/main/resources/assets/imsm/models/block/useradded845.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded846.json b/src/main/resources/assets/imsm/models/block/useradded846.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded846.json +++ b/src/main/resources/assets/imsm/models/block/useradded846.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded847.json b/src/main/resources/assets/imsm/models/block/useradded847.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded847.json +++ b/src/main/resources/assets/imsm/models/block/useradded847.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded848.json b/src/main/resources/assets/imsm/models/block/useradded848.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded848.json +++ b/src/main/resources/assets/imsm/models/block/useradded848.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded849.json b/src/main/resources/assets/imsm/models/block/useradded849.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded849.json +++ b/src/main/resources/assets/imsm/models/block/useradded849.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded85.json b/src/main/resources/assets/imsm/models/block/useradded85.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded85.json +++ b/src/main/resources/assets/imsm/models/block/useradded85.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded850.json b/src/main/resources/assets/imsm/models/block/useradded850.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded850.json +++ b/src/main/resources/assets/imsm/models/block/useradded850.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded851.json b/src/main/resources/assets/imsm/models/block/useradded851.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded851.json +++ b/src/main/resources/assets/imsm/models/block/useradded851.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded852.json b/src/main/resources/assets/imsm/models/block/useradded852.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded852.json +++ b/src/main/resources/assets/imsm/models/block/useradded852.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded853.json b/src/main/resources/assets/imsm/models/block/useradded853.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded853.json +++ b/src/main/resources/assets/imsm/models/block/useradded853.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded854.json b/src/main/resources/assets/imsm/models/block/useradded854.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded854.json +++ b/src/main/resources/assets/imsm/models/block/useradded854.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded855.json b/src/main/resources/assets/imsm/models/block/useradded855.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded855.json +++ b/src/main/resources/assets/imsm/models/block/useradded855.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded856.json b/src/main/resources/assets/imsm/models/block/useradded856.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded856.json +++ b/src/main/resources/assets/imsm/models/block/useradded856.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded857.json b/src/main/resources/assets/imsm/models/block/useradded857.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded857.json +++ b/src/main/resources/assets/imsm/models/block/useradded857.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded858.json b/src/main/resources/assets/imsm/models/block/useradded858.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded858.json +++ b/src/main/resources/assets/imsm/models/block/useradded858.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded859.json b/src/main/resources/assets/imsm/models/block/useradded859.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded859.json +++ b/src/main/resources/assets/imsm/models/block/useradded859.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded86.json b/src/main/resources/assets/imsm/models/block/useradded86.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded86.json +++ b/src/main/resources/assets/imsm/models/block/useradded86.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded860.json b/src/main/resources/assets/imsm/models/block/useradded860.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded860.json +++ b/src/main/resources/assets/imsm/models/block/useradded860.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded861.json b/src/main/resources/assets/imsm/models/block/useradded861.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded861.json +++ b/src/main/resources/assets/imsm/models/block/useradded861.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded862.json b/src/main/resources/assets/imsm/models/block/useradded862.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded862.json +++ b/src/main/resources/assets/imsm/models/block/useradded862.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded863.json b/src/main/resources/assets/imsm/models/block/useradded863.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded863.json +++ b/src/main/resources/assets/imsm/models/block/useradded863.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded864.json b/src/main/resources/assets/imsm/models/block/useradded864.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded864.json +++ b/src/main/resources/assets/imsm/models/block/useradded864.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded865.json b/src/main/resources/assets/imsm/models/block/useradded865.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded865.json +++ b/src/main/resources/assets/imsm/models/block/useradded865.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded866.json b/src/main/resources/assets/imsm/models/block/useradded866.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded866.json +++ b/src/main/resources/assets/imsm/models/block/useradded866.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded867.json b/src/main/resources/assets/imsm/models/block/useradded867.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded867.json +++ b/src/main/resources/assets/imsm/models/block/useradded867.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded868.json b/src/main/resources/assets/imsm/models/block/useradded868.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded868.json +++ b/src/main/resources/assets/imsm/models/block/useradded868.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded869.json b/src/main/resources/assets/imsm/models/block/useradded869.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded869.json +++ b/src/main/resources/assets/imsm/models/block/useradded869.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded87.json b/src/main/resources/assets/imsm/models/block/useradded87.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded87.json +++ b/src/main/resources/assets/imsm/models/block/useradded87.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded870.json b/src/main/resources/assets/imsm/models/block/useradded870.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded870.json +++ b/src/main/resources/assets/imsm/models/block/useradded870.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded871.json b/src/main/resources/assets/imsm/models/block/useradded871.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded871.json +++ b/src/main/resources/assets/imsm/models/block/useradded871.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded872.json b/src/main/resources/assets/imsm/models/block/useradded872.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded872.json +++ b/src/main/resources/assets/imsm/models/block/useradded872.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded873.json b/src/main/resources/assets/imsm/models/block/useradded873.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded873.json +++ b/src/main/resources/assets/imsm/models/block/useradded873.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded874.json b/src/main/resources/assets/imsm/models/block/useradded874.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded874.json +++ b/src/main/resources/assets/imsm/models/block/useradded874.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded875.json b/src/main/resources/assets/imsm/models/block/useradded875.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded875.json +++ b/src/main/resources/assets/imsm/models/block/useradded875.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded876.json b/src/main/resources/assets/imsm/models/block/useradded876.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded876.json +++ b/src/main/resources/assets/imsm/models/block/useradded876.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded877.json b/src/main/resources/assets/imsm/models/block/useradded877.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded877.json +++ b/src/main/resources/assets/imsm/models/block/useradded877.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded878.json b/src/main/resources/assets/imsm/models/block/useradded878.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded878.json +++ b/src/main/resources/assets/imsm/models/block/useradded878.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded879.json b/src/main/resources/assets/imsm/models/block/useradded879.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded879.json +++ b/src/main/resources/assets/imsm/models/block/useradded879.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded88.json b/src/main/resources/assets/imsm/models/block/useradded88.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded88.json +++ b/src/main/resources/assets/imsm/models/block/useradded88.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded880.json b/src/main/resources/assets/imsm/models/block/useradded880.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded880.json +++ b/src/main/resources/assets/imsm/models/block/useradded880.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded881.json b/src/main/resources/assets/imsm/models/block/useradded881.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded881.json +++ b/src/main/resources/assets/imsm/models/block/useradded881.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded882.json b/src/main/resources/assets/imsm/models/block/useradded882.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded882.json +++ b/src/main/resources/assets/imsm/models/block/useradded882.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded883.json b/src/main/resources/assets/imsm/models/block/useradded883.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded883.json +++ b/src/main/resources/assets/imsm/models/block/useradded883.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded884.json b/src/main/resources/assets/imsm/models/block/useradded884.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded884.json +++ b/src/main/resources/assets/imsm/models/block/useradded884.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded885.json b/src/main/resources/assets/imsm/models/block/useradded885.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded885.json +++ b/src/main/resources/assets/imsm/models/block/useradded885.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded886.json b/src/main/resources/assets/imsm/models/block/useradded886.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded886.json +++ b/src/main/resources/assets/imsm/models/block/useradded886.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded887.json b/src/main/resources/assets/imsm/models/block/useradded887.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded887.json +++ b/src/main/resources/assets/imsm/models/block/useradded887.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded888.json b/src/main/resources/assets/imsm/models/block/useradded888.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded888.json +++ b/src/main/resources/assets/imsm/models/block/useradded888.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded889.json b/src/main/resources/assets/imsm/models/block/useradded889.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded889.json +++ b/src/main/resources/assets/imsm/models/block/useradded889.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded89.json b/src/main/resources/assets/imsm/models/block/useradded89.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded89.json +++ b/src/main/resources/assets/imsm/models/block/useradded89.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded890.json b/src/main/resources/assets/imsm/models/block/useradded890.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded890.json +++ b/src/main/resources/assets/imsm/models/block/useradded890.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded891.json b/src/main/resources/assets/imsm/models/block/useradded891.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded891.json +++ b/src/main/resources/assets/imsm/models/block/useradded891.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded892.json b/src/main/resources/assets/imsm/models/block/useradded892.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded892.json +++ b/src/main/resources/assets/imsm/models/block/useradded892.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded893.json b/src/main/resources/assets/imsm/models/block/useradded893.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded893.json +++ b/src/main/resources/assets/imsm/models/block/useradded893.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded894.json b/src/main/resources/assets/imsm/models/block/useradded894.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded894.json +++ b/src/main/resources/assets/imsm/models/block/useradded894.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded895.json b/src/main/resources/assets/imsm/models/block/useradded895.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded895.json +++ b/src/main/resources/assets/imsm/models/block/useradded895.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded896.json b/src/main/resources/assets/imsm/models/block/useradded896.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded896.json +++ b/src/main/resources/assets/imsm/models/block/useradded896.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded897.json b/src/main/resources/assets/imsm/models/block/useradded897.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded897.json +++ b/src/main/resources/assets/imsm/models/block/useradded897.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded898.json b/src/main/resources/assets/imsm/models/block/useradded898.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded898.json +++ b/src/main/resources/assets/imsm/models/block/useradded898.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded899.json b/src/main/resources/assets/imsm/models/block/useradded899.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded899.json +++ b/src/main/resources/assets/imsm/models/block/useradded899.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded9.json b/src/main/resources/assets/imsm/models/block/useradded9.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded9.json +++ b/src/main/resources/assets/imsm/models/block/useradded9.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded90.json b/src/main/resources/assets/imsm/models/block/useradded90.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded90.json +++ b/src/main/resources/assets/imsm/models/block/useradded90.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded900.json b/src/main/resources/assets/imsm/models/block/useradded900.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded900.json +++ b/src/main/resources/assets/imsm/models/block/useradded900.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded901.json b/src/main/resources/assets/imsm/models/block/useradded901.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded901.json +++ b/src/main/resources/assets/imsm/models/block/useradded901.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded902.json b/src/main/resources/assets/imsm/models/block/useradded902.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded902.json +++ b/src/main/resources/assets/imsm/models/block/useradded902.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded903.json b/src/main/resources/assets/imsm/models/block/useradded903.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded903.json +++ b/src/main/resources/assets/imsm/models/block/useradded903.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded904.json b/src/main/resources/assets/imsm/models/block/useradded904.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded904.json +++ b/src/main/resources/assets/imsm/models/block/useradded904.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded905.json b/src/main/resources/assets/imsm/models/block/useradded905.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded905.json +++ b/src/main/resources/assets/imsm/models/block/useradded905.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded906.json b/src/main/resources/assets/imsm/models/block/useradded906.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded906.json +++ b/src/main/resources/assets/imsm/models/block/useradded906.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded907.json b/src/main/resources/assets/imsm/models/block/useradded907.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded907.json +++ b/src/main/resources/assets/imsm/models/block/useradded907.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded908.json b/src/main/resources/assets/imsm/models/block/useradded908.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded908.json +++ b/src/main/resources/assets/imsm/models/block/useradded908.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded909.json b/src/main/resources/assets/imsm/models/block/useradded909.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded909.json +++ b/src/main/resources/assets/imsm/models/block/useradded909.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded91.json b/src/main/resources/assets/imsm/models/block/useradded91.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded91.json +++ b/src/main/resources/assets/imsm/models/block/useradded91.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded910.json b/src/main/resources/assets/imsm/models/block/useradded910.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded910.json +++ b/src/main/resources/assets/imsm/models/block/useradded910.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded911.json b/src/main/resources/assets/imsm/models/block/useradded911.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded911.json +++ b/src/main/resources/assets/imsm/models/block/useradded911.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded912.json b/src/main/resources/assets/imsm/models/block/useradded912.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded912.json +++ b/src/main/resources/assets/imsm/models/block/useradded912.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded913.json b/src/main/resources/assets/imsm/models/block/useradded913.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded913.json +++ b/src/main/resources/assets/imsm/models/block/useradded913.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded914.json b/src/main/resources/assets/imsm/models/block/useradded914.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded914.json +++ b/src/main/resources/assets/imsm/models/block/useradded914.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded915.json b/src/main/resources/assets/imsm/models/block/useradded915.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded915.json +++ b/src/main/resources/assets/imsm/models/block/useradded915.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded916.json b/src/main/resources/assets/imsm/models/block/useradded916.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded916.json +++ b/src/main/resources/assets/imsm/models/block/useradded916.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded917.json b/src/main/resources/assets/imsm/models/block/useradded917.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded917.json +++ b/src/main/resources/assets/imsm/models/block/useradded917.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded918.json b/src/main/resources/assets/imsm/models/block/useradded918.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded918.json +++ b/src/main/resources/assets/imsm/models/block/useradded918.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded919.json b/src/main/resources/assets/imsm/models/block/useradded919.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded919.json +++ b/src/main/resources/assets/imsm/models/block/useradded919.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded92.json b/src/main/resources/assets/imsm/models/block/useradded92.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded92.json +++ b/src/main/resources/assets/imsm/models/block/useradded92.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded920.json b/src/main/resources/assets/imsm/models/block/useradded920.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded920.json +++ b/src/main/resources/assets/imsm/models/block/useradded920.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded921.json b/src/main/resources/assets/imsm/models/block/useradded921.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded921.json +++ b/src/main/resources/assets/imsm/models/block/useradded921.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded922.json b/src/main/resources/assets/imsm/models/block/useradded922.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded922.json +++ b/src/main/resources/assets/imsm/models/block/useradded922.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded923.json b/src/main/resources/assets/imsm/models/block/useradded923.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded923.json +++ b/src/main/resources/assets/imsm/models/block/useradded923.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded924.json b/src/main/resources/assets/imsm/models/block/useradded924.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded924.json +++ b/src/main/resources/assets/imsm/models/block/useradded924.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded925.json b/src/main/resources/assets/imsm/models/block/useradded925.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded925.json +++ b/src/main/resources/assets/imsm/models/block/useradded925.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded926.json b/src/main/resources/assets/imsm/models/block/useradded926.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded926.json +++ b/src/main/resources/assets/imsm/models/block/useradded926.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded927.json b/src/main/resources/assets/imsm/models/block/useradded927.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded927.json +++ b/src/main/resources/assets/imsm/models/block/useradded927.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded928.json b/src/main/resources/assets/imsm/models/block/useradded928.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded928.json +++ b/src/main/resources/assets/imsm/models/block/useradded928.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded929.json b/src/main/resources/assets/imsm/models/block/useradded929.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded929.json +++ b/src/main/resources/assets/imsm/models/block/useradded929.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded93.json b/src/main/resources/assets/imsm/models/block/useradded93.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded93.json +++ b/src/main/resources/assets/imsm/models/block/useradded93.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded930.json b/src/main/resources/assets/imsm/models/block/useradded930.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded930.json +++ b/src/main/resources/assets/imsm/models/block/useradded930.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded931.json b/src/main/resources/assets/imsm/models/block/useradded931.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded931.json +++ b/src/main/resources/assets/imsm/models/block/useradded931.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded932.json b/src/main/resources/assets/imsm/models/block/useradded932.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded932.json +++ b/src/main/resources/assets/imsm/models/block/useradded932.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded933.json b/src/main/resources/assets/imsm/models/block/useradded933.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded933.json +++ b/src/main/resources/assets/imsm/models/block/useradded933.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded934.json b/src/main/resources/assets/imsm/models/block/useradded934.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded934.json +++ b/src/main/resources/assets/imsm/models/block/useradded934.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded935.json b/src/main/resources/assets/imsm/models/block/useradded935.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded935.json +++ b/src/main/resources/assets/imsm/models/block/useradded935.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded936.json b/src/main/resources/assets/imsm/models/block/useradded936.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded936.json +++ b/src/main/resources/assets/imsm/models/block/useradded936.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded937.json b/src/main/resources/assets/imsm/models/block/useradded937.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded937.json +++ b/src/main/resources/assets/imsm/models/block/useradded937.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded938.json b/src/main/resources/assets/imsm/models/block/useradded938.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded938.json +++ b/src/main/resources/assets/imsm/models/block/useradded938.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded939.json b/src/main/resources/assets/imsm/models/block/useradded939.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded939.json +++ b/src/main/resources/assets/imsm/models/block/useradded939.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded94.json b/src/main/resources/assets/imsm/models/block/useradded94.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded94.json +++ b/src/main/resources/assets/imsm/models/block/useradded94.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded940.json b/src/main/resources/assets/imsm/models/block/useradded940.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded940.json +++ b/src/main/resources/assets/imsm/models/block/useradded940.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded941.json b/src/main/resources/assets/imsm/models/block/useradded941.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded941.json +++ b/src/main/resources/assets/imsm/models/block/useradded941.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded942.json b/src/main/resources/assets/imsm/models/block/useradded942.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded942.json +++ b/src/main/resources/assets/imsm/models/block/useradded942.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded943.json b/src/main/resources/assets/imsm/models/block/useradded943.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded943.json +++ b/src/main/resources/assets/imsm/models/block/useradded943.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded944.json b/src/main/resources/assets/imsm/models/block/useradded944.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded944.json +++ b/src/main/resources/assets/imsm/models/block/useradded944.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded945.json b/src/main/resources/assets/imsm/models/block/useradded945.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded945.json +++ b/src/main/resources/assets/imsm/models/block/useradded945.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded946.json b/src/main/resources/assets/imsm/models/block/useradded946.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded946.json +++ b/src/main/resources/assets/imsm/models/block/useradded946.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded947.json b/src/main/resources/assets/imsm/models/block/useradded947.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded947.json +++ b/src/main/resources/assets/imsm/models/block/useradded947.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded948.json b/src/main/resources/assets/imsm/models/block/useradded948.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded948.json +++ b/src/main/resources/assets/imsm/models/block/useradded948.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded949.json b/src/main/resources/assets/imsm/models/block/useradded949.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded949.json +++ b/src/main/resources/assets/imsm/models/block/useradded949.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded95.json b/src/main/resources/assets/imsm/models/block/useradded95.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded95.json +++ b/src/main/resources/assets/imsm/models/block/useradded95.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded950.json b/src/main/resources/assets/imsm/models/block/useradded950.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded950.json +++ b/src/main/resources/assets/imsm/models/block/useradded950.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded951.json b/src/main/resources/assets/imsm/models/block/useradded951.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded951.json +++ b/src/main/resources/assets/imsm/models/block/useradded951.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded952.json b/src/main/resources/assets/imsm/models/block/useradded952.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded952.json +++ b/src/main/resources/assets/imsm/models/block/useradded952.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded953.json b/src/main/resources/assets/imsm/models/block/useradded953.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded953.json +++ b/src/main/resources/assets/imsm/models/block/useradded953.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded954.json b/src/main/resources/assets/imsm/models/block/useradded954.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded954.json +++ b/src/main/resources/assets/imsm/models/block/useradded954.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded955.json b/src/main/resources/assets/imsm/models/block/useradded955.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded955.json +++ b/src/main/resources/assets/imsm/models/block/useradded955.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded956.json b/src/main/resources/assets/imsm/models/block/useradded956.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded956.json +++ b/src/main/resources/assets/imsm/models/block/useradded956.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded957.json b/src/main/resources/assets/imsm/models/block/useradded957.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded957.json +++ b/src/main/resources/assets/imsm/models/block/useradded957.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded958.json b/src/main/resources/assets/imsm/models/block/useradded958.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded958.json +++ b/src/main/resources/assets/imsm/models/block/useradded958.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded959.json b/src/main/resources/assets/imsm/models/block/useradded959.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded959.json +++ b/src/main/resources/assets/imsm/models/block/useradded959.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded96.json b/src/main/resources/assets/imsm/models/block/useradded96.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded96.json +++ b/src/main/resources/assets/imsm/models/block/useradded96.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded960.json b/src/main/resources/assets/imsm/models/block/useradded960.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded960.json +++ b/src/main/resources/assets/imsm/models/block/useradded960.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded961.json b/src/main/resources/assets/imsm/models/block/useradded961.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded961.json +++ b/src/main/resources/assets/imsm/models/block/useradded961.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded962.json b/src/main/resources/assets/imsm/models/block/useradded962.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded962.json +++ b/src/main/resources/assets/imsm/models/block/useradded962.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded963.json b/src/main/resources/assets/imsm/models/block/useradded963.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded963.json +++ b/src/main/resources/assets/imsm/models/block/useradded963.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded964.json b/src/main/resources/assets/imsm/models/block/useradded964.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded964.json +++ b/src/main/resources/assets/imsm/models/block/useradded964.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded965.json b/src/main/resources/assets/imsm/models/block/useradded965.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded965.json +++ b/src/main/resources/assets/imsm/models/block/useradded965.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded966.json b/src/main/resources/assets/imsm/models/block/useradded966.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded966.json +++ b/src/main/resources/assets/imsm/models/block/useradded966.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded967.json b/src/main/resources/assets/imsm/models/block/useradded967.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded967.json +++ b/src/main/resources/assets/imsm/models/block/useradded967.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded968.json b/src/main/resources/assets/imsm/models/block/useradded968.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded968.json +++ b/src/main/resources/assets/imsm/models/block/useradded968.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded969.json b/src/main/resources/assets/imsm/models/block/useradded969.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded969.json +++ b/src/main/resources/assets/imsm/models/block/useradded969.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded97.json b/src/main/resources/assets/imsm/models/block/useradded97.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded97.json +++ b/src/main/resources/assets/imsm/models/block/useradded97.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded970.json b/src/main/resources/assets/imsm/models/block/useradded970.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded970.json +++ b/src/main/resources/assets/imsm/models/block/useradded970.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded971.json b/src/main/resources/assets/imsm/models/block/useradded971.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded971.json +++ b/src/main/resources/assets/imsm/models/block/useradded971.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded972.json b/src/main/resources/assets/imsm/models/block/useradded972.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded972.json +++ b/src/main/resources/assets/imsm/models/block/useradded972.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded973.json b/src/main/resources/assets/imsm/models/block/useradded973.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded973.json +++ b/src/main/resources/assets/imsm/models/block/useradded973.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded974.json b/src/main/resources/assets/imsm/models/block/useradded974.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded974.json +++ b/src/main/resources/assets/imsm/models/block/useradded974.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded975.json b/src/main/resources/assets/imsm/models/block/useradded975.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded975.json +++ b/src/main/resources/assets/imsm/models/block/useradded975.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded976.json b/src/main/resources/assets/imsm/models/block/useradded976.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded976.json +++ b/src/main/resources/assets/imsm/models/block/useradded976.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded977.json b/src/main/resources/assets/imsm/models/block/useradded977.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded977.json +++ b/src/main/resources/assets/imsm/models/block/useradded977.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded978.json b/src/main/resources/assets/imsm/models/block/useradded978.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded978.json +++ b/src/main/resources/assets/imsm/models/block/useradded978.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded979.json b/src/main/resources/assets/imsm/models/block/useradded979.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded979.json +++ b/src/main/resources/assets/imsm/models/block/useradded979.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded98.json b/src/main/resources/assets/imsm/models/block/useradded98.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded98.json +++ b/src/main/resources/assets/imsm/models/block/useradded98.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded980.json b/src/main/resources/assets/imsm/models/block/useradded980.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded980.json +++ b/src/main/resources/assets/imsm/models/block/useradded980.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded981.json b/src/main/resources/assets/imsm/models/block/useradded981.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded981.json +++ b/src/main/resources/assets/imsm/models/block/useradded981.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded982.json b/src/main/resources/assets/imsm/models/block/useradded982.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded982.json +++ b/src/main/resources/assets/imsm/models/block/useradded982.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded983.json b/src/main/resources/assets/imsm/models/block/useradded983.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded983.json +++ b/src/main/resources/assets/imsm/models/block/useradded983.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded984.json b/src/main/resources/assets/imsm/models/block/useradded984.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded984.json +++ b/src/main/resources/assets/imsm/models/block/useradded984.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded985.json b/src/main/resources/assets/imsm/models/block/useradded985.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded985.json +++ b/src/main/resources/assets/imsm/models/block/useradded985.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded986.json b/src/main/resources/assets/imsm/models/block/useradded986.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded986.json +++ b/src/main/resources/assets/imsm/models/block/useradded986.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded987.json b/src/main/resources/assets/imsm/models/block/useradded987.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded987.json +++ b/src/main/resources/assets/imsm/models/block/useradded987.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded988.json b/src/main/resources/assets/imsm/models/block/useradded988.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded988.json +++ b/src/main/resources/assets/imsm/models/block/useradded988.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded989.json b/src/main/resources/assets/imsm/models/block/useradded989.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded989.json +++ b/src/main/resources/assets/imsm/models/block/useradded989.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded99.json b/src/main/resources/assets/imsm/models/block/useradded99.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded99.json +++ b/src/main/resources/assets/imsm/models/block/useradded99.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded990.json b/src/main/resources/assets/imsm/models/block/useradded990.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded990.json +++ b/src/main/resources/assets/imsm/models/block/useradded990.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded991.json b/src/main/resources/assets/imsm/models/block/useradded991.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded991.json +++ b/src/main/resources/assets/imsm/models/block/useradded991.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded992.json b/src/main/resources/assets/imsm/models/block/useradded992.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded992.json +++ b/src/main/resources/assets/imsm/models/block/useradded992.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded993.json b/src/main/resources/assets/imsm/models/block/useradded993.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded993.json +++ b/src/main/resources/assets/imsm/models/block/useradded993.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded994.json b/src/main/resources/assets/imsm/models/block/useradded994.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded994.json +++ b/src/main/resources/assets/imsm/models/block/useradded994.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded995.json b/src/main/resources/assets/imsm/models/block/useradded995.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded995.json +++ b/src/main/resources/assets/imsm/models/block/useradded995.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded996.json b/src/main/resources/assets/imsm/models/block/useradded996.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded996.json +++ b/src/main/resources/assets/imsm/models/block/useradded996.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded997.json b/src/main/resources/assets/imsm/models/block/useradded997.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded997.json +++ b/src/main/resources/assets/imsm/models/block/useradded997.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded998.json b/src/main/resources/assets/imsm/models/block/useradded998.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded998.json +++ b/src/main/resources/assets/imsm/models/block/useradded998.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/useradded999.json b/src/main/resources/assets/imsm/models/block/useradded999.json index a52ad1a8..1e6036a1 100644 --- a/src/main/resources/assets/imsm/models/block/useradded999.json +++ b/src/main/resources/assets/imsm/models/block/useradded999.json @@ -1 +1 @@ -{"parent":"block/cube_all","textures":{"all":"imsm:blocks/u"}} +{"parent": "block/cube_all", "textures": {"all": "imsm:block/u"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_nucleareast.json b/src/main/resources/assets/imsm/models/block/utilitypower_nucleareast.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_nucleareast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_nuclearnorth.json b/src/main/resources/assets/imsm/models/block/utilitypower_nuclearnorth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_nuclearnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_nuclearsouth.json b/src/main/resources/assets/imsm/models/block/utilitypower_nuclearsouth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_nuclearsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_nuclearwest.json b/src/main/resources/assets/imsm/models/block/utilitypower_nuclearwest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_nuclearwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_oilcoaleast.json b/src/main/resources/assets/imsm/models/block/utilitypower_oilcoaleast.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_oilcoaleast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_oilcoalnorth.json b/src/main/resources/assets/imsm/models/block/utilitypower_oilcoalnorth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_oilcoalnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_oilcoalsouth.json b/src/main/resources/assets/imsm/models/block/utilitypower_oilcoalsouth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_oilcoalsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_oilcoalwest.json b/src/main/resources/assets/imsm/models/block/utilitypower_oilcoalwest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_oilcoalwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_sunnortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/utilitypower_sunnortheastsouthwest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_sunnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_windeast.json b/src/main/resources/assets/imsm/models/block/utilitypower_windeast.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_windeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_windnorth.json b/src/main/resources/assets/imsm/models/block/utilitypower_windnorth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_windnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_windsouth.json b/src/main/resources/assets/imsm/models/block/utilitypower_windsouth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_windsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypower_windwest.json b/src/main/resources/assets/imsm/models/block/utilitypower_windwest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypower_windwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypumpjackeastwest.json b/src/main/resources/assets/imsm/models/block/utilitypumpjackeastwest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypumpjackeastwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitypumpjacknorthsouth.json b/src/main/resources/assets/imsm/models/block/utilitypumpjacknorthsouth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitypumpjacknorthsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_burningeast.json b/src/main/resources/assets/imsm/models/block/utilityscrap_burningeast.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_burningeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_burningnorth.json b/src/main/resources/assets/imsm/models/block/utilityscrap_burningnorth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_burningnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_burningsouth.json b/src/main/resources/assets/imsm/models/block/utilityscrap_burningsouth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_burningsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_burningwest.json b/src/main/resources/assets/imsm/models/block/utilityscrap_burningwest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_burningwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_heapeast.json b/src/main/resources/assets/imsm/models/block/utilityscrap_heapeast.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_heapeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_heapnorth.json b/src/main/resources/assets/imsm/models/block/utilityscrap_heapnorth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_heapnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_heapsouth.json b/src/main/resources/assets/imsm/models/block/utilityscrap_heapsouth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_heapsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_heapwest.json b/src/main/resources/assets/imsm/models/block/utilityscrap_heapwest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_heapwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_recycleeast.json b/src/main/resources/assets/imsm/models/block/utilityscrap_recycleeast.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_recycleeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_recyclenorth.json b/src/main/resources/assets/imsm/models/block/utilityscrap_recyclenorth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_recyclenorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_recyclesouth.json b/src/main/resources/assets/imsm/models/block/utilityscrap_recyclesouth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_recyclesouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilityscrap_recyclewest.json b/src/main/resources/assets/imsm/models/block/utilityscrap_recyclewest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilityscrap_recyclewest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitywater_pumpeast.json b/src/main/resources/assets/imsm/models/block/utilitywater_pumpeast.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitywater_pumpeast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitywater_pumpnorth.json b/src/main/resources/assets/imsm/models/block/utilitywater_pumpnorth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitywater_pumpnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitywater_pumpsouth.json b/src/main/resources/assets/imsm/models/block/utilitywater_pumpsouth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitywater_pumpsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitywater_pumpwest.json b/src/main/resources/assets/imsm/models/block/utilitywater_pumpwest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitywater_pumpwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitywater_towernortheastsouthwest.json b/src/main/resources/assets/imsm/models/block/utilitywater_towernortheastsouthwest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitywater_towernortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitywater_treatmenteast.json b/src/main/resources/assets/imsm/models/block/utilitywater_treatmenteast.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitywater_treatmenteast.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitywater_treatmentnorth.json b/src/main/resources/assets/imsm/models/block/utilitywater_treatmentnorth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitywater_treatmentnorth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitywater_treatmentsouth.json b/src/main/resources/assets/imsm/models/block/utilitywater_treatmentsouth.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitywater_treatmentsouth.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/utilitywater_treatmentwest.json b/src/main/resources/assets/imsm/models/block/utilitywater_treatmentwest.json new file mode 100644 index 00000000..ba710277 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/utilitywater_treatmentwest.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/utility"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/block/woodenhouse.json b/src/main/resources/assets/imsm/models/block/woodenhouse.json new file mode 100644 index 00000000..a93ec518 --- /dev/null +++ b/src/main/resources/assets/imsm/models/block/woodenhouse.json @@ -0,0 +1 @@ +{"parent": "block/cube_all", "textures": {"all": "imsm:block/blockmegahouse"}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/BlockAirBalloon.json b/src/main/resources/assets/imsm/models/item/BlockAirBalloon.json deleted file mode 100644 index 70314157..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockAirBalloon.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockAirBalloon", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockAirplane.json b/src/main/resources/assets/imsm/models/item/BlockAirplane.json deleted file mode 100644 index 54cf3d10..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockAirplane.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockAirplane", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockApplepie.json b/src/main/resources/assets/imsm/models/item/BlockApplepie.json deleted file mode 100644 index 7a773e6d..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockApplepie.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockApplepie", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockArena1.json b/src/main/resources/assets/imsm/models/item/BlockArena1.json deleted file mode 100644 index 4ec51245..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockArena1.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockArena1", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockArena2.json b/src/main/resources/assets/imsm/models/item/BlockArena2.json deleted file mode 100644 index 736b0fa7..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockArena2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockArena2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockAtlantis.json b/src/main/resources/assets/imsm/models/item/BlockAtlantis.json deleted file mode 100644 index 0cf6e9e2..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockAtlantis.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockAtlantis", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockBigPyramid.json b/src/main/resources/assets/imsm/models/item/BlockBigPyramid.json deleted file mode 100644 index 10fdf47e..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockBigPyramid.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockBigPyramid", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockBigWorld.json b/src/main/resources/assets/imsm/models/item/BlockBigWorld.json deleted file mode 100644 index bcc0a79c..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockBigWorld.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockBigWorld", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockBlackRock.json b/src/main/resources/assets/imsm/models/item/BlockBlackRock.json deleted file mode 100644 index 4bb0e0f7..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockBlackRock.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockBlackRock", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockBoat.json b/src/main/resources/assets/imsm/models/item/BlockBoat.json deleted file mode 100644 index a899b282..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockBoat.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockBoat", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockBunker.json b/src/main/resources/assets/imsm/models/item/BlockBunker.json deleted file mode 100644 index 995917ed..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockBunker.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockBunker", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockCactus2.json b/src/main/resources/assets/imsm/models/item/BlockCactus2.json deleted file mode 100644 index 54be8de8..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockCactus2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockCactus2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockCake2.json b/src/main/resources/assets/imsm/models/item/BlockCake2.json deleted file mode 100644 index 4fb6e00a..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockCake2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockCake2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockCastleTower.json b/src/main/resources/assets/imsm/models/item/BlockCastleTower.json deleted file mode 100644 index f11ff6e6..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockCastleTower.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockCastleTower", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockCave.json b/src/main/resources/assets/imsm/models/item/BlockCave.json deleted file mode 100644 index aa49f396..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockCave.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockCave", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockChallengeEight.json b/src/main/resources/assets/imsm/models/item/BlockChallengeEight.json deleted file mode 100644 index 55e4132b..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockChallengeEight.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockChallengeEight", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockChallengeFive.json b/src/main/resources/assets/imsm/models/item/BlockChallengeFive.json deleted file mode 100644 index 4bd9dd3e..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockChallengeFive.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockChallengeFive", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockChallengeFour.json b/src/main/resources/assets/imsm/models/item/BlockChallengeFour.json deleted file mode 100644 index eff164ef..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockChallengeFour.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockChallengeFour", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockChallengeNine.json b/src/main/resources/assets/imsm/models/item/BlockChallengeNine.json deleted file mode 100644 index a6127a1f..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockChallengeNine.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockChallengeNine", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockChallengeOne.json b/src/main/resources/assets/imsm/models/item/BlockChallengeOne.json deleted file mode 100644 index 7cecfc3e..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockChallengeOne.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockChallengeOne", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockChallengeSeven.json b/src/main/resources/assets/imsm/models/item/BlockChallengeSeven.json deleted file mode 100644 index 6c5b526b..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockChallengeSeven.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockChallengeSeven", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockChallengeSix.json b/src/main/resources/assets/imsm/models/item/BlockChallengeSix.json deleted file mode 100644 index e8492865..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockChallengeSix.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockChallengeSix", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockChallengeTen.json b/src/main/resources/assets/imsm/models/item/BlockChallengeTen.json deleted file mode 100644 index cd210cab..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockChallengeTen.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockChallengeTen", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockChallengeThree.json b/src/main/resources/assets/imsm/models/item/BlockChallengeThree.json deleted file mode 100644 index 3bf49ecc..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockChallengeThree.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockChallengeThree", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockChallengeTwo.json b/src/main/resources/assets/imsm/models/item/BlockChallengeTwo.json deleted file mode 100644 index db091a84..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockChallengeTwo.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockChallengeTwo", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockCheckerboard.json b/src/main/resources/assets/imsm/models/item/BlockCheckerboard.json deleted file mode 100644 index 2661ac58..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockCheckerboard.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockCheckerboard", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockCloud.json b/src/main/resources/assets/imsm/models/item/BlockCloud.json deleted file mode 100644 index 1718b0f8..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockCloud.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockCloud", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockColumn.json b/src/main/resources/assets/imsm/models/item/BlockColumn.json deleted file mode 100644 index bf93ec47..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockColumn.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockColumn", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockCosyHouse.json b/src/main/resources/assets/imsm/models/item/BlockCosyHouse.json deleted file mode 100644 index 8dfe158a..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockCosyHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockCosyHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockDungeon.json b/src/main/resources/assets/imsm/models/item/BlockDungeon.json deleted file mode 100644 index 931a824b..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockDungeon.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockDungeon", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockEnchantmentRoom.json b/src/main/resources/assets/imsm/models/item/BlockEnchantmentRoom.json deleted file mode 100644 index ef3941aa..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockEnchantmentRoom.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockEnchantmentRoom", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockFarm.json b/src/main/resources/assets/imsm/models/item/BlockFarm.json deleted file mode 100644 index 3c3f204f..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockFarm.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockFarm", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockFarm2.json b/src/main/resources/assets/imsm/models/item/BlockFarm2.json deleted file mode 100644 index 8d00cdb8..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockFarm2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockFarm2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockFarm3.json b/src/main/resources/assets/imsm/models/item/BlockFarm3.json deleted file mode 100644 index b82cda9b..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockFarm3.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockFarm3", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockFarm4.json b/src/main/resources/assets/imsm/models/item/BlockFarm4.json deleted file mode 100644 index 1a07dc1f..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockFarm4.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockFarm4", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockFerrisWheel.json b/src/main/resources/assets/imsm/models/item/BlockFerrisWheel.json deleted file mode 100644 index 4fa27038..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockFerrisWheel.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockFerrisWheel", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockFloatingSphere.json b/src/main/resources/assets/imsm/models/item/BlockFloatingSphere.json deleted file mode 100644 index b75c96cd..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockFloatingSphere.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockFloatingSphere", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockGiantTree.json b/src/main/resources/assets/imsm/models/item/BlockGiantTree.json deleted file mode 100644 index 0dea987a..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockGiantTree.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockGiantTree", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockGlassHouse.json b/src/main/resources/assets/imsm/models/item/BlockGlassHouse.json deleted file mode 100644 index 93585099..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockGlassHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockGlassHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockHountedHouse.json b/src/main/resources/assets/imsm/models/item/BlockHountedHouse.json deleted file mode 100644 index 83e1a1ef..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockHountedHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockHountedHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockHouse.json b/src/main/resources/assets/imsm/models/item/BlockHouse.json deleted file mode 100644 index e7556f6a..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockHouse2.json b/src/main/resources/assets/imsm/models/item/BlockHouse2.json deleted file mode 100644 index 50067683..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockHouse2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockHouse2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockHouseTrap1.json b/src/main/resources/assets/imsm/models/item/BlockHouseTrap1.json deleted file mode 100644 index 25c4d291..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockHouseTrap1.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockHouseTrap1", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockHouseTrap2.json b/src/main/resources/assets/imsm/models/item/BlockHouseTrap2.json deleted file mode 100644 index 41bfe3e4..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockHouseTrap2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockHouseTrap2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockLeaves2.json b/src/main/resources/assets/imsm/models/item/BlockLeaves2.json deleted file mode 100644 index 8ee6feca..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockLeaves2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockLeaves2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockLighthouse.json b/src/main/resources/assets/imsm/models/item/BlockLighthouse.json deleted file mode 100644 index 284419bc..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockLighthouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockLighthouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockMegaHouse.json b/src/main/resources/assets/imsm/models/item/BlockMegaHouse.json deleted file mode 100644 index cd9a0278..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockMegaHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockMegaHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockMegaHouse2.json b/src/main/resources/assets/imsm/models/item/BlockMegaHouse2.json deleted file mode 100644 index 558b519e..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockMegaHouse2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockMegaHouse2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockMegaTower.json b/src/main/resources/assets/imsm/models/item/BlockMegaTower.json deleted file mode 100644 index ab4312d2..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockMegaTower.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockMegaTower", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockPenIron.json b/src/main/resources/assets/imsm/models/item/BlockPenIron.json deleted file mode 100644 index 151e9c88..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockPenIron.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockPenIron", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockPenNether.json b/src/main/resources/assets/imsm/models/item/BlockPenNether.json deleted file mode 100644 index 366ceb62..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockPenNether.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockPenNether", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockPenWood.json b/src/main/resources/assets/imsm/models/item/BlockPenWood.json deleted file mode 100644 index c67f8279..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockPenWood.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockPenWood", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockPlane.json b/src/main/resources/assets/imsm/models/item/BlockPlane.json deleted file mode 100644 index 6b5d3a82..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockPlane.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockPlane", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockPrison.json b/src/main/resources/assets/imsm/models/item/BlockPrison.json deleted file mode 100644 index 1d3279c2..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockPrison.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockPrison", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockPrison2.json b/src/main/resources/assets/imsm/models/item/BlockPrison2.json deleted file mode 100644 index bdd8360b..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockPrison2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockPrison2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockPyramid.json b/src/main/resources/assets/imsm/models/item/BlockPyramid.json deleted file mode 100644 index da352618..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockPyramid.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockPyramid", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockRollerCoaster2.json b/src/main/resources/assets/imsm/models/item/BlockRollerCoaster2.json deleted file mode 100644 index 99a31d28..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockRollerCoaster2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockRollerCoaster2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockRollercoaster.json b/src/main/resources/assets/imsm/models/item/BlockRollercoaster.json deleted file mode 100644 index 0a220d70..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockRollercoaster.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockRollercoaster", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockShelter.json b/src/main/resources/assets/imsm/models/item/BlockShelter.json deleted file mode 100644 index 78d86982..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockShelter.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockShelter", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockSkyscraper.json b/src/main/resources/assets/imsm/models/item/BlockSkyscraper.json deleted file mode 100644 index 86ccb662..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockSkyscraper.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockSkyscraper", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockSkyscraper2.json b/src/main/resources/assets/imsm/models/item/BlockSkyscraper2.json deleted file mode 100644 index 168b0e02..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockSkyscraper2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockSkyscraper2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockStadium.json b/src/main/resources/assets/imsm/models/item/BlockStadium.json deleted file mode 100644 index 717b54ef..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockStadium.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockStadium", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockStadium2.json b/src/main/resources/assets/imsm/models/item/BlockStadium2.json deleted file mode 100644 index d5d6a64b..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockStadium2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockStadium2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockStandardBrickHouse.json b/src/main/resources/assets/imsm/models/item/BlockStandardBrickHouse.json deleted file mode 100644 index cdea6ef5..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockStandardBrickHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockStandardBrickHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockStoreHouse.json b/src/main/resources/assets/imsm/models/item/BlockStoreHouse.json deleted file mode 100644 index 1b82d075..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockStoreHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockStoreHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockStreet.json b/src/main/resources/assets/imsm/models/item/BlockStreet.json deleted file mode 100644 index 8d507e28..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockStreet.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockStreet", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockTorch2.json b/src/main/resources/assets/imsm/models/item/BlockTorch2.json deleted file mode 100644 index d79588fd..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockTorch2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockTorch2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockTouchable.json b/src/main/resources/assets/imsm/models/item/BlockTouchable.json deleted file mode 100644 index 7e0ed2fe..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockTouchable.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockTouchable", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockTower.json b/src/main/resources/assets/imsm/models/item/BlockTower.json deleted file mode 100644 index 30cd0c15..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockTower.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockTower", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockUnlimited.json b/src/main/resources/assets/imsm/models/item/BlockUnlimited.json deleted file mode 100644 index 92a4b47f..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockUnlimited.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockUnlimited", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/BlockWaterSlide.json b/src/main/resources/assets/imsm/models/item/BlockWaterSlide.json deleted file mode 100644 index 3c096455..00000000 --- a/src/main/resources/assets/imsm/models/item/BlockWaterSlide.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/BlockWaterSlide", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ChristmasHouse.json b/src/main/resources/assets/imsm/models/item/ChristmasHouse.json deleted file mode 100644 index e596ab05..00000000 --- a/src/main/resources/assets/imsm/models/item/ChristmasHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ChristmasHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ChristmasHouse2.json b/src/main/resources/assets/imsm/models/item/ChristmasHouse2.json deleted file mode 100644 index fe7f2c98..00000000 --- a/src/main/resources/assets/imsm/models/item/ChristmasHouse2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ChristmasHouse2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ChristmasHouse3.json b/src/main/resources/assets/imsm/models/item/ChristmasHouse3.json deleted file mode 100644 index 33af6b75..00000000 --- a/src/main/resources/assets/imsm/models/item/ChristmasHouse3.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ChristmasHouse3", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ChristmasMarket.json b/src/main/resources/assets/imsm/models/item/ChristmasMarket.json deleted file mode 100644 index 7941e1b4..00000000 --- a/src/main/resources/assets/imsm/models/item/ChristmasMarket.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ChristmasMarket", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ChristmasSleigh.json b/src/main/resources/assets/imsm/models/item/ChristmasSleigh.json deleted file mode 100644 index 5bb71ec3..00000000 --- a/src/main/resources/assets/imsm/models/item/ChristmasSleigh.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ChristmasSleigh", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ChristmasSleigh2.json b/src/main/resources/assets/imsm/models/item/ChristmasSleigh2.json deleted file mode 100644 index 405da548..00000000 --- a/src/main/resources/assets/imsm/models/item/ChristmasSleigh2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ChristmasSleigh2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ChristmasSnowman.json b/src/main/resources/assets/imsm/models/item/ChristmasSnowman.json deleted file mode 100644 index 02b87d3a..00000000 --- a/src/main/resources/assets/imsm/models/item/ChristmasSnowman.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ChristmasSnowman", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ChristmasTree.json b/src/main/resources/assets/imsm/models/item/ChristmasTree.json deleted file mode 100644 index e4773958..00000000 --- a/src/main/resources/assets/imsm/models/item/ChristmasTree.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ChristmasTree", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationGrassNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/DecorationGrassNorthEastSouthWest.json deleted file mode 100644 index d1c83697..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationGrassNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationGrassNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkEast.json b/src/main/resources/assets/imsm/models/item/DecorationParkEast.json deleted file mode 100644 index f046b752..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkNorth.json b/src/main/resources/assets/imsm/models/item/DecorationParkNorth.json deleted file mode 100644 index f5716011..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkSouth.json b/src/main/resources/assets/imsm/models/item/DecorationParkSouth.json deleted file mode 100644 index a497ac96..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkWest.json b/src/main/resources/assets/imsm/models/item/DecorationParkWest.json deleted file mode 100644 index 99ec2479..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkingGarageEast.json b/src/main/resources/assets/imsm/models/item/DecorationParkingGarageEast.json deleted file mode 100644 index a27f7f5b..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkingGarageEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkingGarageEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkingGarageNorth.json b/src/main/resources/assets/imsm/models/item/DecorationParkingGarageNorth.json deleted file mode 100644 index fd21c5d1..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkingGarageNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkingGarageNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkingGarageSouth.json b/src/main/resources/assets/imsm/models/item/DecorationParkingGarageSouth.json deleted file mode 100644 index c1253257..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkingGarageSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkingGarageSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkingGarageWest.json b/src/main/resources/assets/imsm/models/item/DecorationParkingGarageWest.json deleted file mode 100644 index c3ade0cd..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkingGarageWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkingGarageWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkingLotsEast.json b/src/main/resources/assets/imsm/models/item/DecorationParkingLotsEast.json deleted file mode 100644 index 9c9d252a..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkingLotsEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkingLotsEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkingLotsNorth.json b/src/main/resources/assets/imsm/models/item/DecorationParkingLotsNorth.json deleted file mode 100644 index abe8a972..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkingLotsNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkingLotsNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkingLotsSouth.json b/src/main/resources/assets/imsm/models/item/DecorationParkingLotsSouth.json deleted file mode 100644 index b8508318..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkingLotsSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkingLotsSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationParkingLotsWest.json b/src/main/resources/assets/imsm/models/item/DecorationParkingLotsWest.json deleted file mode 100644 index e5726037..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationParkingLotsWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationParkingLotsWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationPlazaFountainNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/DecorationPlazaFountainNorthEastSouthWest.json deleted file mode 100644 index c994d86c..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationPlazaFountainNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationPlazaFountainNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationPlazaNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/DecorationPlazaNorthEastSouthWest.json deleted file mode 100644 index 41972eb7..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationPlazaNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationPlazaNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationSoccerStadiumEastWest.json b/src/main/resources/assets/imsm/models/item/DecorationSoccerStadiumEastWest.json deleted file mode 100644 index 8032105f..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationSoccerStadiumEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationSoccerStadiumEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationSoccerStadiumNorthSouth.json b/src/main/resources/assets/imsm/models/item/DecorationSoccerStadiumNorthSouth.json deleted file mode 100644 index 5fcef52c..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationSoccerStadiumNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationSoccerStadiumNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationSquareNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/DecorationSquareNorthEastSouthWest.json deleted file mode 100644 index fe609927..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationSquareNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationSquareNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationSquareTreeEast.json b/src/main/resources/assets/imsm/models/item/DecorationSquareTreeEast.json deleted file mode 100644 index 4228db9c..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationSquareTreeEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationSquareTreeEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationSquareTreeNorth.json b/src/main/resources/assets/imsm/models/item/DecorationSquareTreeNorth.json deleted file mode 100644 index 9a581b6f..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationSquareTreeNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationSquareTreeNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationSquareTreeSouth.json b/src/main/resources/assets/imsm/models/item/DecorationSquareTreeSouth.json deleted file mode 100644 index 07316d92..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationSquareTreeSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationSquareTreeSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/DecorationSquareTreeWest.json b/src/main/resources/assets/imsm/models/item/DecorationSquareTreeWest.json deleted file mode 100644 index 494cd472..00000000 --- a/src/main/resources/assets/imsm/models/item/DecorationSquareTreeWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/DecorationSquareTreeWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/FoodCarrotsEastWest.json b/src/main/resources/assets/imsm/models/item/FoodCarrotsEastWest.json deleted file mode 100644 index f2897e10..00000000 --- a/src/main/resources/assets/imsm/models/item/FoodCarrotsEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/FoodCarrotsEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/FoodCarrotsNorthSouth.json b/src/main/resources/assets/imsm/models/item/FoodCarrotsNorthSouth.json deleted file mode 100644 index 9320c1ca..00000000 --- a/src/main/resources/assets/imsm/models/item/FoodCarrotsNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/FoodCarrotsNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/FoodFarmEast.json b/src/main/resources/assets/imsm/models/item/FoodFarmEast.json deleted file mode 100644 index 713653ef..00000000 --- a/src/main/resources/assets/imsm/models/item/FoodFarmEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/FoodFarmEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/FoodFarmNorth.json b/src/main/resources/assets/imsm/models/item/FoodFarmNorth.json deleted file mode 100644 index 5f945d78..00000000 --- a/src/main/resources/assets/imsm/models/item/FoodFarmNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/FoodFarmNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/FoodFarmSouth.json b/src/main/resources/assets/imsm/models/item/FoodFarmSouth.json deleted file mode 100644 index cc363b95..00000000 --- a/src/main/resources/assets/imsm/models/item/FoodFarmSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/FoodFarmSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/FoodFarmWest.json b/src/main/resources/assets/imsm/models/item/FoodFarmWest.json deleted file mode 100644 index 4bb735bc..00000000 --- a/src/main/resources/assets/imsm/models/item/FoodFarmWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/FoodFarmWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/FoodPotatoesNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/FoodPotatoesNorthEastSouthWest.json deleted file mode 100644 index edef5cfc..00000000 --- a/src/main/resources/assets/imsm/models/item/FoodPotatoesNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/FoodPotatoesNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/FoodStableEastWest.json b/src/main/resources/assets/imsm/models/item/FoodStableEastWest.json deleted file mode 100644 index d868df40..00000000 --- a/src/main/resources/assets/imsm/models/item/FoodStableEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/FoodStableEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/FoodStableNorthSouth.json b/src/main/resources/assets/imsm/models/item/FoodStableNorthSouth.json deleted file mode 100644 index 878366be..00000000 --- a/src/main/resources/assets/imsm/models/item/FoodStableNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/FoodStableNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/FoodWheatNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/FoodWheatNorthEastSouthWest.json deleted file mode 100644 index 50139de5..00000000 --- a/src/main/resources/assets/imsm/models/item/FoodWheatNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/FoodWheatNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueEast.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueEast.json deleted file mode 100644 index 525fc568..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityBlueEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueNorth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueNorth.json deleted file mode 100644 index 109bf4c5..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityBlueNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueSouth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueSouth.json deleted file mode 100644 index ef9757df..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityBlueSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueWest.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueWest.json deleted file mode 100644 index fe865fbe..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBlueWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityBlueWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickEast.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickEast.json deleted file mode 100644 index 8372e278..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityBrickEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickNorth.json deleted file mode 100644 index 0da0fb25..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityBrickNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickSouth.json deleted file mode 100644 index 8a57a225..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityBrickSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickWest.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickWest.json deleted file mode 100644 index 94142930..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityBrickWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityBrickWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneyEast.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneyEast.json deleted file mode 100644 index 4f33f6ab..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneyEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityChimneyEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneyNorth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneyNorth.json deleted file mode 100644 index 9a2686bd..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneyNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityChimneyNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneySouth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneySouth.json deleted file mode 100644 index 3b7f62c3..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneySouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityChimneySouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneyWest.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneyWest.json deleted file mode 100644 index 6547f41a..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityChimneyWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityChimneyWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipEast.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipEast.json deleted file mode 100644 index cd27b5a0..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityComputerChipEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipNorth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipNorth.json deleted file mode 100644 index 1a89bf9f..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityComputerChipNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipSouth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipSouth.json deleted file mode 100644 index 25627e3b..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityComputerChipSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipWest.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipWest.json deleted file mode 100644 index 1465a668..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityComputerChipWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityComputerChipWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenEast.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenEast.json deleted file mode 100644 index 56c6fd9a..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityGreenEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenNorth.json deleted file mode 100644 index 2b877349..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityGreenNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenSouth.json deleted file mode 100644 index f9e75eb1..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityGreenSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenWest.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenWest.json deleted file mode 100644 index a24b6eae..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityGreenWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityGreenWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueEast.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueEast.json deleted file mode 100644 index a8c31a3a..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityLightBlueEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueNorth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueNorth.json deleted file mode 100644 index 430a87b2..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityLightBlueNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueSouth.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueSouth.json deleted file mode 100644 index 7945968c..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityLightBlueSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueWest.json b/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueWest.json deleted file mode 100644 index 66a7c2f6..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryHigh_DensityLightBlueWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryHigh_DensityLightBlueWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingEast.json b/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingEast.json deleted file mode 100644 index 7367276e..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_Density3DPrintingEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingNorth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingNorth.json deleted file mode 100644 index f7be2a2c..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_Density3DPrintingNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingSouth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingSouth.json deleted file mode 100644 index c810a94a..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_Density3DPrintingSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingWest.json deleted file mode 100644 index 4b3d7aca..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_Density3DPrintingWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_Density3DPrintingWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueEast.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueEast.json deleted file mode 100644 index 5f6f1625..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBlueEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueNorth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueNorth.json deleted file mode 100644 index f5f97844..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBlueNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueSouth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueSouth.json deleted file mode 100644 index d8441b88..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBlueSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueWest.json deleted file mode 100644 index 0758ec66..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBlueWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBlueWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickEast.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickEast.json deleted file mode 100644 index 3d10d43c..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrickEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickEastWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickEastWest.json deleted file mode 100644 index e277d53b..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrickEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickNorth.json deleted file mode 100644 index 570ee34a..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrickNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickNorthSouth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickNorthSouth.json deleted file mode 100644 index cc8ad179..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrickNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickSouth.json deleted file mode 100644 index 86dcc504..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrickSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickWest.json deleted file mode 100644 index 591503c6..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrickWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrickWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownEast.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownEast.json deleted file mode 100644 index f8b6f072..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrownEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownEast2.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownEast2.json deleted file mode 100644 index 04314642..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownEast2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrownEast2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownNorth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownNorth.json deleted file mode 100644 index 7bb437bb..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrownNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownNorth2.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownNorth2.json deleted file mode 100644 index a0aa6522..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownNorth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrownNorth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownSouth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownSouth.json deleted file mode 100644 index 5d4a7146..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrownSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownSouth2.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownSouth2.json deleted file mode 100644 index dc966bfe..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownSouth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrownSouth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownWest.json deleted file mode 100644 index 800e959d..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrownWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownWest2.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownWest2.json deleted file mode 100644 index 6bf1ceb7..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityBrownWest2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityBrownWest2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneyEast.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneyEast.json deleted file mode 100644 index 13d15ef0..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneyEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityChimneyEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneyNorth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneyNorth.json deleted file mode 100644 index 8833434d..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneyNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityChimneyNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneySouth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneySouth.json deleted file mode 100644 index 003fe860..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneySouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityChimneySouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneyWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneyWest.json deleted file mode 100644 index aed6e328..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityChimneyWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityChimneyWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenEast.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenEast.json deleted file mode 100644 index 8da0b874..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityGreenEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenNorth.json deleted file mode 100644 index 7ea90172..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityGreenNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenSouth.json deleted file mode 100644 index 02fb7f28..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityGreenSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenWest.json deleted file mode 100644 index 2d404958..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityGreenWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityGreenWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronEast.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronEast.json deleted file mode 100644 index 1e9d27cd..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityIronEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronNorth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronNorth.json deleted file mode 100644 index 550f0a3e..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityIronNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronSouth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronSouth.json deleted file mode 100644 index 5e60f76b..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityIronSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronWest.json deleted file mode 100644 index 4c67a573..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityIronWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityIronWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaEast.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaEast.json deleted file mode 100644 index adcf1a71..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityParabolicAntennaEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaNorth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaNorth.json deleted file mode 100644 index 3e0f064c..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityParabolicAntennaNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaSouth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaSouth.json deleted file mode 100644 index 553f9eca..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityParabolicAntennaSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaWest.json deleted file mode 100644 index 36d8dcef..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityParabolicAntennaWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityParabolicAntennaWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTankNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTankNorthEastSouthWest.json deleted file mode 100644 index 5ba619d5..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTankNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityTankNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeEast.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeEast.json deleted file mode 100644 index 9b5f0ad6..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityTelescopeEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeNorth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeNorth.json deleted file mode 100644 index 4e04839d..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityTelescopeNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeSouth.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeSouth.json deleted file mode 100644 index 359111ae..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityTelescopeSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeWest.json b/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeWest.json deleted file mode 100644 index ec7e5d7c..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryLow_DensityTelescopeWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryLow_DensityTelescopeWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueEast.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueEast.json deleted file mode 100644 index 76085f90..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBlueEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueNorth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueNorth.json deleted file mode 100644 index a0b9d727..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBlueNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueSouth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueSouth.json deleted file mode 100644 index db80a890..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBlueSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueWest.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueWest.json deleted file mode 100644 index f88751a3..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBlueWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBlueWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickEast.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickEast.json deleted file mode 100644 index 729897fb..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBrickEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickNorth.json deleted file mode 100644 index 7208a83a..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBrickNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickSouth.json deleted file mode 100644 index e85a2107..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBrickSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickWest.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickWest.json deleted file mode 100644 index f7951b35..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrickWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBrickWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownEast.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownEast.json deleted file mode 100644 index 6b529076..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBrownEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownNorth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownNorth.json deleted file mode 100644 index e229308a..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBrownNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownSouth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownSouth.json deleted file mode 100644 index 2dda8249..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBrownSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownWest.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownWest.json deleted file mode 100644 index f34def15..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityBrownWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityBrownWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChemicalPressEastWest.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChemicalPressEastWest.json deleted file mode 100644 index 54275755..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChemicalPressEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityChemicalPressEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChemicalPressNorthSouth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChemicalPressNorthSouth.json deleted file mode 100644 index cf9861dd..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChemicalPressNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityChemicalPressNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneyEast.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneyEast.json deleted file mode 100644 index f58a7113..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneyEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityChimneyEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneyNorth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneyNorth.json deleted file mode 100644 index d65f3cd7..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneyNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityChimneyNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneySouth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneySouth.json deleted file mode 100644 index c655ce5b..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneySouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityChimneySouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneyWest.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneyWest.json deleted file mode 100644 index 12878234..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityChimneyWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityChimneyWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenEast.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenEast.json deleted file mode 100644 index bd42c2a4..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityGreenEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenNorth.json deleted file mode 100644 index b495c465..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityGreenNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenSouth.json deleted file mode 100644 index 00c9c9a0..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityGreenSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenWest.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenWest.json deleted file mode 100644 index 1ae40284..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityGreenWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityGreenWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceEast.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceEast.json deleted file mode 100644 index 1ca8fbab..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityIceEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceNorth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceNorth.json deleted file mode 100644 index e6b8edaf..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityIceNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceSouth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceSouth.json deleted file mode 100644 index ee9aa90b..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityIceSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceWest.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceWest.json deleted file mode 100644 index 087da37f..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityIceWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityIceWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneEast.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneEast.json deleted file mode 100644 index ca88a0a9..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensitySandstoneEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneNorth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneNorth.json deleted file mode 100644 index 23557588..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensitySandstoneNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneSouth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneSouth.json deleted file mode 100644 index 048fb9d8..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensitySandstoneSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneWest.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneWest.json deleted file mode 100644 index 4e559dcf..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensitySandstoneWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensitySandstoneWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankEast.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankEast.json deleted file mode 100644 index 2ab7a832..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityTankEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankNorth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankNorth.json deleted file mode 100644 index 9dfb8ac2..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityTankNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankSouth.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankSouth.json deleted file mode 100644 index 80bdfc6f..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityTankSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankWest.json b/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankWest.json deleted file mode 100644 index e42731ce..00000000 --- a/src/main/resources/assets/imsm/models/item/IndustryMedium_DensityTankWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/IndustryMedium_DensityTankWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/LiveAirBalloon.json b/src/main/resources/assets/imsm/models/item/LiveAirBalloon.json deleted file mode 100644 index 633f9bc6..00000000 --- a/src/main/resources/assets/imsm/models/item/LiveAirBalloon.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/LiveAirBalloon", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/LiveAirplane.json b/src/main/resources/assets/imsm/models/item/LiveAirplane.json deleted file mode 100644 index 6c293855..00000000 --- a/src/main/resources/assets/imsm/models/item/LiveAirplane.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/LiveAirplane", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/LiveBoat.json b/src/main/resources/assets/imsm/models/item/LiveBoat.json deleted file mode 100644 index 6d2b8e75..00000000 --- a/src/main/resources/assets/imsm/models/item/LiveBoat.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/LiveBoat", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/LiveFlyingShip.json b/src/main/resources/assets/imsm/models/item/LiveFlyingShip.json deleted file mode 100644 index 5c190ce6..00000000 --- a/src/main/resources/assets/imsm/models/item/LiveFlyingShip.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/LiveFlyingShip", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/LiveFlyingShip2.json b/src/main/resources/assets/imsm/models/item/LiveFlyingShip2.json deleted file mode 100644 index 5b93d6ad..00000000 --- a/src/main/resources/assets/imsm/models/item/LiveFlyingShip2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/LiveFlyingShip2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/LivePlane.json b/src/main/resources/assets/imsm/models/item/LivePlane.json deleted file mode 100644 index 9a55eee2..00000000 --- a/src/main/resources/assets/imsm/models/item/LivePlane.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/LivePlane", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/LiveStructureRemover.json b/src/main/resources/assets/imsm/models/item/LiveStructureRemover.json deleted file mode 100644 index 4cd4ee9c..00000000 --- a/src/main/resources/assets/imsm/models/item/LiveStructureRemover.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/LiveStructureRemover", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Live_Bus.json b/src/main/resources/assets/imsm/models/item/Live_Bus.json deleted file mode 100644 index 53b5dcd1..00000000 --- a/src/main/resources/assets/imsm/models/item/Live_Bus.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Live_Bus", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Live_Bus2.json b/src/main/resources/assets/imsm/models/item/Live_Bus2.json deleted file mode 100644 index 26d9d6bc..00000000 --- a/src/main/resources/assets/imsm/models/item/Live_Bus2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Live_Bus2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Live_Cinema.json b/src/main/resources/assets/imsm/models/item/Live_Cinema.json deleted file mode 100644 index f22af23a..00000000 --- a/src/main/resources/assets/imsm/models/item/Live_Cinema.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Live_Cinema", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Live_Fair_FreeFall.json b/src/main/resources/assets/imsm/models/item/Live_Fair_FreeFall.json deleted file mode 100644 index 35b5247e..00000000 --- a/src/main/resources/assets/imsm/models/item/Live_Fair_FreeFall.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Live_Fair_FreeFall", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Live_Flying_Helicopter.json b/src/main/resources/assets/imsm/models/item/Live_Flying_Helicopter.json deleted file mode 100644 index d9468c4e..00000000 --- a/src/main/resources/assets/imsm/models/item/Live_Flying_Helicopter.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Live_Flying_Helicopter", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Live_Helicopter.json b/src/main/resources/assets/imsm/models/item/Live_Helicopter.json deleted file mode 100644 index 7983f686..00000000 --- a/src/main/resources/assets/imsm/models/item/Live_Helicopter.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Live_Helicopter", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Live_Mill.json b/src/main/resources/assets/imsm/models/item/Live_Mill.json deleted file mode 100644 index 66328aab..00000000 --- a/src/main/resources/assets/imsm/models/item/Live_Mill.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Live_Mill", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Live_Power_Windmill_East.json b/src/main/resources/assets/imsm/models/item/Live_Power_Windmill_East.json deleted file mode 100644 index da5dc88d..00000000 --- a/src/main/resources/assets/imsm/models/item/Live_Power_Windmill_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Live_Power_Windmill_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Live_WaterMill.json b/src/main/resources/assets/imsm/models/item/Live_WaterMill.json deleted file mode 100644 index ef9e273e..00000000 --- a/src/main/resources/assets/imsm/models/item/Live_WaterMill.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Live_WaterMill", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityBrickEastWest.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityBrickEastWest.json deleted file mode 100644 index 1e097e69..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityBrickEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityBrickEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityBrickNorthSouth.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityBrickNorthSouth.json deleted file mode 100644 index 1e64c6c5..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityBrickNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityBrickNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanEast.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanEast.json deleted file mode 100644 index 1377c039..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityCyanEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanNorth.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanNorth.json deleted file mode 100644 index 63c13427..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityCyanNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanSouth.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanSouth.json deleted file mode 100644 index 50220ec5..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityCyanSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanWest.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanWest.json deleted file mode 100644 index ccf96071..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityCyanWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityCyanWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopEast.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopEast.json deleted file mode 100644 index 3a9c3991..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityHoleOnTopEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopNorth.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopNorth.json deleted file mode 100644 index 604b4fe3..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityHoleOnTopNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopSouth.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopSouth.json deleted file mode 100644 index 673c563e..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityHoleOnTopSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopWest.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopWest.json deleted file mode 100644 index e895d603..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityHoleOnTopWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityHoleOnTopWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityLightBlueEastWest.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityLightBlueEastWest.json deleted file mode 100644 index 1cd01127..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityLightBlueEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityLightBlueEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityLightBlueNorthSouth.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityLightBlueNorthSouth.json deleted file mode 100644 index a20bbca1..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensityLightBlueNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensityLightBlueNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingEast.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingEast.json deleted file mode 100644 index ef33d5ce..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensitySpirolBuildingEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingNorth.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingNorth.json deleted file mode 100644 index ef8c17ec..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensitySpirolBuildingNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingSouth.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingSouth.json deleted file mode 100644 index f578b78b..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensitySpirolBuildingSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingWest.json b/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingWest.json deleted file mode 100644 index 0df7ef8d..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeHigh_DensitySpirolBuildingWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeHigh_DensitySpirolBuildingWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueEast.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueEast.json deleted file mode 100644 index 37e72ffc..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityBlueEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueNorth.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueNorth.json deleted file mode 100644 index 68eeefff..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityBlueNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueSouth.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueSouth.json deleted file mode 100644 index 8ca861b3..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityBlueSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueWest.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueWest.json deleted file mode 100644 index 4b155b9b..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityBlueWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityBlueWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenEast.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenEast.json deleted file mode 100644 index 8f7ffff5..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityGreenEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenNorth.json deleted file mode 100644 index 687ab381..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityGreenNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenSouth.json deleted file mode 100644 index c856d68c..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityGreenSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenWest.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenWest.json deleted file mode 100644 index 8c52004d..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityGreenWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityGreenWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteEast.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteEast.json deleted file mode 100644 index 4adc2ec5..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityWhiteEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteNorth.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteNorth.json deleted file mode 100644 index 81118993..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityWhiteNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteSouth.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteSouth.json deleted file mode 100644 index 1d4d43d4..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityWhiteSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteWest.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteWest.json deleted file mode 100644 index 3579bc35..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityWhiteWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityWhiteWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowEast.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowEast.json deleted file mode 100644 index 754b847e..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityYellowEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowNorth.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowNorth.json deleted file mode 100644 index 7ae4e65e..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityYellowNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowSouth.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowSouth.json deleted file mode 100644 index b218f881..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityYellowSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowWest.json b/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowWest.json deleted file mode 100644 index e8a7135b..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeLow_DensityYellowWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeLow_DensityYellowWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanEast.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanEast.json deleted file mode 100644 index aa97d667..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityCyanEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanNorth.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanNorth.json deleted file mode 100644 index 1e55e37f..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityCyanNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanSouth.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanSouth.json deleted file mode 100644 index 9eb25997..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityCyanSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanWest.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanWest.json deleted file mode 100644 index 6fea18fa..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityCyanWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityCyanWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueEast.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueEast.json deleted file mode 100644 index 5150c1e0..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityLightBlueEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueNorth.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueNorth.json deleted file mode 100644 index 5f24b864..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityLightBlueNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueSouth.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueSouth.json deleted file mode 100644 index 902b3656..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityLightBlueSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueWest.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueWest.json deleted file mode 100644 index c4df742f..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityLightBlueWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityLightBlueWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkEast.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkEast.json deleted file mode 100644 index 06b792b7..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityPinkEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkNorth.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkNorth.json deleted file mode 100644 index 0b5bdddf..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityPinkNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkSouth.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkSouth.json deleted file mode 100644 index a756e06d..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityPinkSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkWest.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkWest.json deleted file mode 100644 index 11f20fe1..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensityPinkWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensityPinkWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneEast.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneEast.json deleted file mode 100644 index b0e47d3c..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensitySandstoneEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneNorth.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneNorth.json deleted file mode 100644 index deb4f125..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensitySandstoneNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneSouth.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneSouth.json deleted file mode 100644 index db6948b3..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensitySandstoneSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneWest.json b/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneWest.json deleted file mode 100644 index 88b9fc13..00000000 --- a/src/main/resources/assets/imsm/models/item/OfficeMedium_DensitySandstoneWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OfficeMedium_DensitySandstoneWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherBrickHouse.json b/src/main/resources/assets/imsm/models/item/OtherBrickHouse.json deleted file mode 100644 index 9cd6a1af..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherBrickHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherBrickHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherGrandHouse.json b/src/main/resources/assets/imsm/models/item/OtherGrandHouse.json deleted file mode 100644 index 689e2159..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherGrandHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherGrandHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherLighthouse.json b/src/main/resources/assets/imsm/models/item/OtherLighthouse.json deleted file mode 100644 index 49e54619..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherLighthouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherLighthouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherStable.json b/src/main/resources/assets/imsm/models/item/OtherStable.json deleted file mode 100644 index c9fab76c..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherStable.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherStable", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse.json b/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse.json deleted file mode 100644 index 2ed7e8de..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherSurvivorHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse2.json b/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse2.json deleted file mode 100644 index 66b9ec80..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherSurvivorHouse2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse3.json b/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse3.json deleted file mode 100644 index df66abc5..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse3.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherSurvivorHouse3", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse4.json b/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse4.json deleted file mode 100644 index 25b0f78d..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse4.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherSurvivorHouse4", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse5.json b/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse5.json deleted file mode 100644 index 1be0a58f..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse5.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherSurvivorHouse5", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse6.json b/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse6.json deleted file mode 100644 index 79a321b7..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse6.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherSurvivorHouse6", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse7.json b/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse7.json deleted file mode 100644 index 3a5b47b5..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse7.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherSurvivorHouse7", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse8.json b/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse8.json deleted file mode 100644 index 1cf434e1..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherSurvivorHouse8.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherSurvivorHouse8", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/OtherTemple.json b/src/main/resources/assets/imsm/models/item/OtherTemple.json deleted file mode 100644 index c89f611d..00000000 --- a/src/main/resources/assets/imsm/models/item/OtherTemple.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/OtherTemple", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicFireServiceBigEast.json b/src/main/resources/assets/imsm/models/item/PublicFireServiceBigEast.json deleted file mode 100644 index ccf90554..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicFireServiceBigEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicFireServiceBigEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicFireServiceBigNorth.json b/src/main/resources/assets/imsm/models/item/PublicFireServiceBigNorth.json deleted file mode 100644 index ac9c795b..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicFireServiceBigNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicFireServiceBigNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicFireServiceBigSouth.json b/src/main/resources/assets/imsm/models/item/PublicFireServiceBigSouth.json deleted file mode 100644 index 9e0cc1ea..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicFireServiceBigSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicFireServiceBigSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicFireServiceBigWest.json b/src/main/resources/assets/imsm/models/item/PublicFireServiceBigWest.json deleted file mode 100644 index 82b6e72c..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicFireServiceBigWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicFireServiceBigWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallEast.json b/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallEast.json deleted file mode 100644 index 29c698b5..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicFireServiceSmallEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallNorth.json b/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallNorth.json deleted file mode 100644 index 6d831d36..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicFireServiceSmallNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallSouth.json b/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallSouth.json deleted file mode 100644 index 13f6ddb8..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicFireServiceSmallSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallWest.json b/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallWest.json deleted file mode 100644 index dfaac587..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicFireServiceSmallWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicFireServiceSmallWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicHospitalBigEast.json b/src/main/resources/assets/imsm/models/item/PublicHospitalBigEast.json deleted file mode 100644 index 02d2977b..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicHospitalBigEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicHospitalBigEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicHospitalBigNorth.json b/src/main/resources/assets/imsm/models/item/PublicHospitalBigNorth.json deleted file mode 100644 index 6e512836..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicHospitalBigNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicHospitalBigNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicHospitalBigSouth.json b/src/main/resources/assets/imsm/models/item/PublicHospitalBigSouth.json deleted file mode 100644 index dc63383a..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicHospitalBigSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicHospitalBigSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicHospitalBigWest.json b/src/main/resources/assets/imsm/models/item/PublicHospitalBigWest.json deleted file mode 100644 index 452a32f5..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicHospitalBigWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicHospitalBigWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicHospitalSmallEast.json b/src/main/resources/assets/imsm/models/item/PublicHospitalSmallEast.json deleted file mode 100644 index 85bc71ab..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicHospitalSmallEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicHospitalSmallEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicHospitalSmallNorth.json b/src/main/resources/assets/imsm/models/item/PublicHospitalSmallNorth.json deleted file mode 100644 index 6332d604..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicHospitalSmallNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicHospitalSmallNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicHospitalSmallSouth.json b/src/main/resources/assets/imsm/models/item/PublicHospitalSmallSouth.json deleted file mode 100644 index 0e4d018e..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicHospitalSmallSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicHospitalSmallSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicHospitalSmallWest.json b/src/main/resources/assets/imsm/models/item/PublicHospitalSmallWest.json deleted file mode 100644 index 3aff90f5..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicHospitalSmallWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicHospitalSmallWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicLibraryEastWest.json b/src/main/resources/assets/imsm/models/item/PublicLibraryEastWest.json deleted file mode 100644 index c648f935..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicLibraryEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicLibraryEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicLibraryNorthSouth.json b/src/main/resources/assets/imsm/models/item/PublicLibraryNorthSouth.json deleted file mode 100644 index 9344143d..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicLibraryNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicLibraryNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicPoliceBigEast.json b/src/main/resources/assets/imsm/models/item/PublicPoliceBigEast.json deleted file mode 100644 index a9974191..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicPoliceBigEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicPoliceBigEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicPoliceBigNorth.json b/src/main/resources/assets/imsm/models/item/PublicPoliceBigNorth.json deleted file mode 100644 index e5506728..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicPoliceBigNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicPoliceBigNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicPoliceBigSouth.json b/src/main/resources/assets/imsm/models/item/PublicPoliceBigSouth.json deleted file mode 100644 index cc09a9a2..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicPoliceBigSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicPoliceBigSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicPoliceBigWest.json b/src/main/resources/assets/imsm/models/item/PublicPoliceBigWest.json deleted file mode 100644 index bc66c139..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicPoliceBigWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicPoliceBigWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicPoliceSmallEast.json b/src/main/resources/assets/imsm/models/item/PublicPoliceSmallEast.json deleted file mode 100644 index 8c7530ec..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicPoliceSmallEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicPoliceSmallEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicPoliceSmallNorth.json b/src/main/resources/assets/imsm/models/item/PublicPoliceSmallNorth.json deleted file mode 100644 index 2fbc559a..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicPoliceSmallNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicPoliceSmallNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicPoliceSmallSouth.json b/src/main/resources/assets/imsm/models/item/PublicPoliceSmallSouth.json deleted file mode 100644 index 50713c35..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicPoliceSmallSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicPoliceSmallSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicPoliceSmallWest.json b/src/main/resources/assets/imsm/models/item/PublicPoliceSmallWest.json deleted file mode 100644 index 0331b439..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicPoliceSmallWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicPoliceSmallWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicSchoolBigNorthEast.json b/src/main/resources/assets/imsm/models/item/PublicSchoolBigNorthEast.json deleted file mode 100644 index 09ff983b..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicSchoolBigNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicSchoolBigNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicSchoolBigNorthWest.json b/src/main/resources/assets/imsm/models/item/PublicSchoolBigNorthWest.json deleted file mode 100644 index 67247dd1..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicSchoolBigNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicSchoolBigNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicSchoolBigSouthEast.json b/src/main/resources/assets/imsm/models/item/PublicSchoolBigSouthEast.json deleted file mode 100644 index 6fc8f68b..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicSchoolBigSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicSchoolBigSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicSchoolBigSouthWest.json b/src/main/resources/assets/imsm/models/item/PublicSchoolBigSouthWest.json deleted file mode 100644 index e159de8a..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicSchoolBigSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicSchoolBigSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicSchoolSmallNorthEast.json b/src/main/resources/assets/imsm/models/item/PublicSchoolSmallNorthEast.json deleted file mode 100644 index cbb45433..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicSchoolSmallNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicSchoolSmallNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicSchoolSmallNorthWest.json b/src/main/resources/assets/imsm/models/item/PublicSchoolSmallNorthWest.json deleted file mode 100644 index f6580d1b..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicSchoolSmallNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicSchoolSmallNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicSchoolSmallSouthEast.json b/src/main/resources/assets/imsm/models/item/PublicSchoolSmallSouthEast.json deleted file mode 100644 index be12dbba..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicSchoolSmallSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicSchoolSmallSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicSchoolSmallSouthWest.json b/src/main/resources/assets/imsm/models/item/PublicSchoolSmallSouthWest.json deleted file mode 100644 index 9469df01..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicSchoolSmallSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicSchoolSmallSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicTownhallBigEastWest.json b/src/main/resources/assets/imsm/models/item/PublicTownhallBigEastWest.json deleted file mode 100644 index 5bb69683..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicTownhallBigEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicTownhallBigEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicTownhallBigNorthSouth.json b/src/main/resources/assets/imsm/models/item/PublicTownhallBigNorthSouth.json deleted file mode 100644 index 460fd6ae..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicTownhallBigNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicTownhallBigNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicTownhallSmallEast.json b/src/main/resources/assets/imsm/models/item/PublicTownhallSmallEast.json deleted file mode 100644 index 28ccc5e8..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicTownhallSmallEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicTownhallSmallEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicTownhallSmallNorth.json b/src/main/resources/assets/imsm/models/item/PublicTownhallSmallNorth.json deleted file mode 100644 index fc7f724d..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicTownhallSmallNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicTownhallSmallNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicTownhallSmallSouth.json b/src/main/resources/assets/imsm/models/item/PublicTownhallSmallSouth.json deleted file mode 100644 index 80306733..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicTownhallSmallSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicTownhallSmallSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicTownhallSmallWest.json b/src/main/resources/assets/imsm/models/item/PublicTownhallSmallWest.json deleted file mode 100644 index 3ae59ef3..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicTownhallSmallWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicTownhallSmallWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicUniversityEast.json b/src/main/resources/assets/imsm/models/item/PublicUniversityEast.json deleted file mode 100644 index ab4540aa..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicUniversityEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicUniversityEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicUniversityNorth.json b/src/main/resources/assets/imsm/models/item/PublicUniversityNorth.json deleted file mode 100644 index a7a4359d..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicUniversityNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicUniversityNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicUniversitySouth.json b/src/main/resources/assets/imsm/models/item/PublicUniversitySouth.json deleted file mode 100644 index e8f2edf9..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicUniversitySouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicUniversitySouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/PublicUniversityWest.json b/src/main/resources/assets/imsm/models/item/PublicUniversityWest.json deleted file mode 100644 index 341f77d7..00000000 --- a/src/main/resources/assets/imsm/models/item/PublicUniversityWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/PublicUniversityWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomAirballoon2.json b/src/main/resources/assets/imsm/models/item/RandomAirballoon2.json deleted file mode 100644 index afb637cc..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomAirballoon2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomAirballoon2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomBuildingComplex.json b/src/main/resources/assets/imsm/models/item/RandomBuildingComplex.json deleted file mode 100644 index b008a863..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomBuildingComplex.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomBuildingComplex", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomEntrance.json b/src/main/resources/assets/imsm/models/item/RandomEntrance.json deleted file mode 100644 index 27d3a937..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomEntrance.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomEntrance", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomFlyingShip.json b/src/main/resources/assets/imsm/models/item/RandomFlyingShip.json deleted file mode 100644 index 0c284ec2..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomFlyingShip.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomFlyingShip", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomGreenTent.json b/src/main/resources/assets/imsm/models/item/RandomGreenTent.json deleted file mode 100644 index a697b76e..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomGreenTent.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomGreenTent", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomGreyTent.json b/src/main/resources/assets/imsm/models/item/RandomGreyTent.json deleted file mode 100644 index 584239ff..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomGreyTent.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomGreyTent", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomImmense_Buildingcomplex.json b/src/main/resources/assets/imsm/models/item/RandomImmense_Buildingcomplex.json deleted file mode 100644 index 2be19c6d..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomImmense_Buildingcomplex.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomImmense_Buildingcomplex", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomImmense_White_House.json b/src/main/resources/assets/imsm/models/item/RandomImmense_White_House.json deleted file mode 100644 index e685b0f4..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomImmense_White_House.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomImmense_White_House", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomImmense_WorkingBuilding.json b/src/main/resources/assets/imsm/models/item/RandomImmense_WorkingBuilding.json deleted file mode 100644 index f6e535c1..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomImmense_WorkingBuilding.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomImmense_WorkingBuilding", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomImmense_greenroof.json b/src/main/resources/assets/imsm/models/item/RandomImmense_greenroof.json deleted file mode 100644 index 9289b4ad..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomImmense_greenroof.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomImmense_greenroof", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomLightHouse.json b/src/main/resources/assets/imsm/models/item/RandomLightHouse.json deleted file mode 100644 index 3da8cb6f..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomLightHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomLightHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomLittlePalace.json b/src/main/resources/assets/imsm/models/item/RandomLittlePalace.json deleted file mode 100644 index 03f77601..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomLittlePalace.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomLittlePalace", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomLittleWoodenCabin.json b/src/main/resources/assets/imsm/models/item/RandomLittleWoodenCabin.json deleted file mode 100644 index cdf08056..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomLittleWoodenCabin.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomLittleWoodenCabin", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomMinerTent.json b/src/main/resources/assets/imsm/models/item/RandomMinerTent.json deleted file mode 100644 index 212970ec..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomMinerTent.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomMinerTent", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomNetherEntranceSurvival.json b/src/main/resources/assets/imsm/models/item/RandomNetherEntranceSurvival.json deleted file mode 100644 index 3cada096..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomNetherEntranceSurvival.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomNetherEntranceSurvival", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomRandomBrickHouse.json b/src/main/resources/assets/imsm/models/item/RandomRandomBrickHouse.json deleted file mode 100644 index dd803594..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomRandomBrickHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomRandomBrickHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomSandStoneChurch.json b/src/main/resources/assets/imsm/models/item/RandomSandStoneChurch.json deleted file mode 100644 index 81ad6985..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomSandStoneChurch.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomSandStoneChurch", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomSandstoneBuilding.json b/src/main/resources/assets/imsm/models/item/RandomSandstoneBuilding.json deleted file mode 100644 index fbc43b48..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomSandstoneBuilding.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomSandstoneBuilding", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomSandstonewithFarm.json b/src/main/resources/assets/imsm/models/item/RandomSandstonewithFarm.json deleted file mode 100644 index 8eab8f6e..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomSandstonewithFarm.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomSandstonewithFarm", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomSimpleSandstone.json b/src/main/resources/assets/imsm/models/item/RandomSimpleSandstone.json deleted file mode 100644 index 7ef72efb..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomSimpleSandstone.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomSimpleSandstone", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomSpawnHouseProd.json b/src/main/resources/assets/imsm/models/item/RandomSpawnHouseProd.json deleted file mode 100644 index 6d8c4e61..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomSpawnHouseProd.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomSpawnHouseProd", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomSurvivalHouse1.json b/src/main/resources/assets/imsm/models/item/RandomSurvivalHouse1.json deleted file mode 100644 index 0fe446b8..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomSurvivalHouse1.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomSurvivalHouse1", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomSurvivalHouseSandstone.json b/src/main/resources/assets/imsm/models/item/RandomSurvivalHouseSandstone.json deleted file mode 100644 index 3140578d..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomSurvivalHouseSandstone.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomSurvivalHouseSandstone", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomTentCamp.json b/src/main/resources/assets/imsm/models/item/RandomTentCamp.json deleted file mode 100644 index b267b984..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomTentCamp.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomTentCamp", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomWoodenHouse.json b/src/main/resources/assets/imsm/models/item/RandomWoodenHouse.json deleted file mode 100644 index 71e666e0..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomWoodenHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomWoodenHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RandomWoodenStonebrickHouse.json b/src/main/resources/assets/imsm/models/item/RandomWoodenStonebrickHouse.json deleted file mode 100644 index 28826177..00000000 --- a/src/main/resources/assets/imsm/models/item/RandomWoodenStonebrickHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RandomWoodenStonebrickHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover16.json b/src/main/resources/assets/imsm/models/item/Remover16.json deleted file mode 100644 index 771b7acf..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover16.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover16", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover16256.json b/src/main/resources/assets/imsm/models/item/Remover16256.json deleted file mode 100644 index 72d53a4c..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover16256.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover16256", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover1632.json b/src/main/resources/assets/imsm/models/item/Remover1632.json deleted file mode 100644 index 39f8c48d..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover1632.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover1632", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover168.json b/src/main/resources/assets/imsm/models/item/Remover168.json deleted file mode 100644 index 637e0aef..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover168.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover168", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover32.json b/src/main/resources/assets/imsm/models/item/Remover32.json deleted file mode 100644 index 62b849d9..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover32.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover32", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover3216.json b/src/main/resources/assets/imsm/models/item/Remover3216.json deleted file mode 100644 index 0a2dcbcf..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover3216.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover3216", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover32256.json b/src/main/resources/assets/imsm/models/item/Remover32256.json deleted file mode 100644 index 83f07178..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover32256.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover32256", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover328.json b/src/main/resources/assets/imsm/models/item/Remover328.json deleted file mode 100644 index 057cefbf..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover328.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover328", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover64.json b/src/main/resources/assets/imsm/models/item/Remover64.json deleted file mode 100644 index 36f5a2e7..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover64.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover64", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover64256.json b/src/main/resources/assets/imsm/models/item/Remover64256.json deleted file mode 100644 index 9edd633a..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover64256.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover64256", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover8.json b/src/main/resources/assets/imsm/models/item/Remover8.json deleted file mode 100644 index 810431e0..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover8.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover8", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover816.json b/src/main/resources/assets/imsm/models/item/Remover816.json deleted file mode 100644 index 9708c083..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover816.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover816", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover8256.json b/src/main/resources/assets/imsm/models/item/Remover8256.json deleted file mode 100644 index 211d3cf8..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover8256.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover8256", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/Remover832.json b/src/main/resources/assets/imsm/models/item/Remover832.json deleted file mode 100644 index 2546aa49..00000000 --- a/src/main/resources/assets/imsm/models/item/Remover832.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/Remover832", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/RemoverLast.json b/src/main/resources/assets/imsm/models/item/RemoverLast.json deleted file mode 100644 index b6373ec3..00000000 --- a/src/main/resources/assets/imsm/models/item/RemoverLast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/RemoverLast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBlockNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBlockNorthEastSouthWest.json deleted file mode 100644 index 61df4f98..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBlockNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityBlockNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigEast.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigEast.json deleted file mode 100644 index acccfc65..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityBrickBigEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigNorth.json deleted file mode 100644 index 5c4e17c8..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityBrickBigNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigSouth.json deleted file mode 100644 index 650c016b..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityBrickBigSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigWest.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigWest.json deleted file mode 100644 index 0e9ab64e..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickBigWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityBrickBigWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.json deleted file mode 100644 index fac84ee4..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityBrickSmallNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityBrickSmallNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreyEast.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreyEast.json deleted file mode 100644 index 5e2ecf53..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreyEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityGreyEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreyNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreyNorth.json deleted file mode 100644 index c6361889..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreyNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityGreyNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreySouth.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreySouth.json deleted file mode 100644 index 8ef9623f..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreySouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityGreySouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreyWest.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreyWest.json deleted file mode 100644 index 52f63214..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityGreyWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityGreyWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernEast.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernEast.json deleted file mode 100644 index c883e338..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityModernEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernNorth.json deleted file mode 100644 index 5a020400..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityModernNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernSouth.json deleted file mode 100644 index 40a9003a..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityModernSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernWest.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernWest.json deleted file mode 100644 index 9d48d6d3..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityModernWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityModernWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityRedEastWest.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityRedEastWest.json deleted file mode 100644 index 158c0b0d..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityRedEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityRedEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityRedNorthSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityRedNorthSouth.json deleted file mode 100644 index c94e4287..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityRedNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityRedNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityRoundNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityRoundNorthEastSouthWest.json deleted file mode 100644 index 92d0938a..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityRoundNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityRoundNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneEast.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneEast.json deleted file mode 100644 index 2bbf85fc..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityStoneEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneEast2.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneEast2.json deleted file mode 100644 index 139d42e4..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneEast2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityStoneEast2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneNorth.json deleted file mode 100644 index 9108e288..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityStoneNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneNorth2.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneNorth2.json deleted file mode 100644 index e8d9aecd..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneNorth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityStoneNorth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneSouth.json deleted file mode 100644 index 77aca6e5..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityStoneSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneSouth2.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneSouth2.json deleted file mode 100644 index 7062b3e6..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneSouth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityStoneSouth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneWest.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneWest.json deleted file mode 100644 index a7bc95f6..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityStoneWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneWest2.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneWest2.json deleted file mode 100644 index 85d8132d..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityStoneWest2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityStoneWest2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityYellowNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityYellowNorthEastSouthWest.json deleted file mode 100644 index 41b72dd3..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalEnormous_DensityYellowNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalEnormous_DensityYellowNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueEast.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueEast.json deleted file mode 100644 index 74cf055c..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBlueEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueEastWest.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueEastWest.json deleted file mode 100644 index 44576606..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBlueEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueNorth.json deleted file mode 100644 index 301af2f0..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBlueNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueNorthSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueNorthSouth.json deleted file mode 100644 index 2c4b5f57..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBlueNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueSouth.json deleted file mode 100644 index 15802eb9..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBlueSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueWest.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueWest.json deleted file mode 100644 index 4fdbf099..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBlueWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBlueWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickEast.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickEast.json deleted file mode 100644 index a0693072..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBrickEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickEastWest.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickEastWest.json deleted file mode 100644 index 39b83a69..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBrickEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickNorth.json deleted file mode 100644 index 7303f14b..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBrickNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickNorthSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickNorthSouth.json deleted file mode 100644 index 0fc03141..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBrickNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickSouth.json deleted file mode 100644 index 03d5d5e1..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBrickSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickWest.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickWest.json deleted file mode 100644 index 616224ff..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityBrickWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityBrickWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreyEast.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreyEast.json deleted file mode 100644 index f1379a93..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreyEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityGreenGreyEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreyNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreyNorth.json deleted file mode 100644 index 0c1a5f80..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreyNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityGreenGreyNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreySouth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreySouth.json deleted file mode 100644 index b150f500..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreySouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityGreenGreySouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreyWest.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreyWest.json deleted file mode 100644 index 10bbac21..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityGreenGreyWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityGreenGreyWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerNorthEast.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerNorthEast.json deleted file mode 100644 index 0529a536..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityRedCornerNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerNorthWest.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerNorthWest.json deleted file mode 100644 index 0eeae0e0..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityRedCornerNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerSouthEast.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerSouthEast.json deleted file mode 100644 index 24bbf261..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityRedCornerSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerSouthWest.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerSouthWest.json deleted file mode 100644 index fd676061..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedCornerSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityRedCornerSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowEast.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowEast.json deleted file mode 100644 index a9a76d79..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityRedYellowEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowNorth.json deleted file mode 100644 index c679b865..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityRedYellowNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowSouth.json deleted file mode 100644 index e0a91e37..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityRedYellowSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowWest.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowWest.json deleted file mode 100644 index bfa3e9bc..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityRedYellowWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityRedYellowWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneEast.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneEast.json deleted file mode 100644 index 04357bae..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityStoneEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneEast2.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneEast2.json deleted file mode 100644 index 71e7af2a..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneEast2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityStoneEast2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneNorth.json deleted file mode 100644 index d6e0986b..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityStoneNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneNorth2.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneNorth2.json deleted file mode 100644 index f29c637a..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneNorth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityStoneNorth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneSouth.json deleted file mode 100644 index de6f6776..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityStoneSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneSouth2.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneSouth2.json deleted file mode 100644 index a9e5920d..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneSouth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityStoneSouth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneWest.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneWest.json deleted file mode 100644 index 60d59566..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityStoneWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneWest2.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneWest2.json deleted file mode 100644 index 6ff797dc..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityStoneWest2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityStoneWest2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowEast.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowEast.json deleted file mode 100644 index 96188fac..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityYellowEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowNorth.json deleted file mode 100644 index 7c9c512b..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityYellowNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowSouth.json deleted file mode 100644 index f5a22119..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityYellowSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowWest.json b/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowWest.json deleted file mode 100644 index 1921cacf..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalHigh_DensityYellowWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalHigh_DensityYellowWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeEast.json deleted file mode 100644 index 11e505ef..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityBeigeEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeNorth.json deleted file mode 100644 index dc455a3d..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityBeigeNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeSouth.json deleted file mode 100644 index 38ce73ab..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityBeigeSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeWest.json deleted file mode 100644 index 4fb2eac1..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityBeigeWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityBeigeWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanEast.json deleted file mode 100644 index dedaacf7..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityCyanEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanNorth.json deleted file mode 100644 index 6b95d4c6..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityCyanNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanSouth.json deleted file mode 100644 index 099ee47c..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityCyanSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanWest.json deleted file mode 100644 index ef92ff41..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityCyanWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityCyanWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenEast.json deleted file mode 100644 index c4d94e92..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityGreenEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenEast2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenEast2.json deleted file mode 100644 index bbd84e23..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenEast2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityGreenEast2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenNorth.json deleted file mode 100644 index f4db3fd6..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityGreenNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenNorth2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenNorth2.json deleted file mode 100644 index eede1a7a..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenNorth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityGreenNorth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenSouth.json deleted file mode 100644 index f26832fc..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityGreenSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenSouth2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenSouth2.json deleted file mode 100644 index ac085949..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenSouth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityGreenSouth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenWest.json deleted file mode 100644 index df1ac948..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityGreenWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenWest2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenWest2.json deleted file mode 100644 index 592aa71f..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityGreenWest2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityGreenWest2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueEast.json deleted file mode 100644 index b5aadadc..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightBlueEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueEast2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueEast2.json deleted file mode 100644 index 4509e55a..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueEast2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightBlueEast2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueNorth.json deleted file mode 100644 index 2363e398..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightBlueNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueNorth2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueNorth2.json deleted file mode 100644 index 69d4b8eb..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueNorth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightBlueNorth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueSouth.json deleted file mode 100644 index bfaf95df..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightBlueSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueSouth2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueSouth2.json deleted file mode 100644 index 9ae6c60d..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueSouth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightBlueSouth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueWest.json deleted file mode 100644 index 6119eb1b..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightBlueWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueWest2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueWest2.json deleted file mode 100644 index 9734a7a7..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightBlueWest2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightBlueWest2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreyEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreyEast.json deleted file mode 100644 index 5297656b..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreyEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightGreyEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreyNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreyNorth.json deleted file mode 100644 index 83907aff..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreyNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightGreyNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreySouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreySouth.json deleted file mode 100644 index 99b1195f..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreySouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightGreySouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreyWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreyWest.json deleted file mode 100644 index 659314a5..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityLightGreyWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityLightGreyWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernEast.json deleted file mode 100644 index f7aaeb66..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityModernEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernNorth.json deleted file mode 100644 index 2047f573..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityModernNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernSouth.json deleted file mode 100644 index e5e2410e..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityModernSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernWest.json deleted file mode 100644 index 276854bb..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityModernWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityModernWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeEast.json deleted file mode 100644 index 2e69e0af..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityOrangeEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeNorth.json deleted file mode 100644 index 40fcbfe6..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityOrangeNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeSouth.json deleted file mode 100644 index 106d8944..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityOrangeSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeWest.json deleted file mode 100644 index ec1728f4..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityOrangeWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityOrangeWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedEast.json deleted file mode 100644 index 581c52ec..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityRedEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedNorth.json deleted file mode 100644 index 65fb95ab..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityRedNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedSouth.json deleted file mode 100644 index 8c98e369..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityRedSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedWest.json deleted file mode 100644 index 4e97ec7d..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityRedWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityRedWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneEast.json deleted file mode 100644 index a4330a06..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityStoneEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneNorth.json deleted file mode 100644 index 576395c9..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityStoneNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneSouth.json deleted file mode 100644 index 91530b4e..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityStoneSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneWest.json deleted file mode 100644 index 2190b05f..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityStoneWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityStoneWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteEast.json deleted file mode 100644 index 5a7d6e4b..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityWhiteEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteNorth.json deleted file mode 100644 index c1a45968..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityWhiteNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteSouth.json deleted file mode 100644 index b47e60e5..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityWhiteSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteWest.json deleted file mode 100644 index b9767f64..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWhiteWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityWhiteWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodEast.json deleted file mode 100644 index 4dd18fa3..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityWoodEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodNorth.json deleted file mode 100644 index e26a7fa0..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityWoodNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodSouth.json deleted file mode 100644 index 64b4253a..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityWoodSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodWest.json deleted file mode 100644 index e184b486..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityWoodWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityWoodWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowEast.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowEast.json deleted file mode 100644 index aae4575e..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityYellowEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowEast2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowEast2.json deleted file mode 100644 index aa868575..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowEast2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityYellowEast2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowNorth.json deleted file mode 100644 index c6e0ef9a..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityYellowNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowNorth2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowNorth2.json deleted file mode 100644 index 2682e0cf..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowNorth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityYellowNorth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowSouth.json deleted file mode 100644 index a599e9ce..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityYellowSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowSouth2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowSouth2.json deleted file mode 100644 index cfb27af9..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowSouth2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityYellowSouth2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowWest.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowWest.json deleted file mode 100644 index aec1c226..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityYellowWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowWest2.json b/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowWest2.json deleted file mode 100644 index c50cb405..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalLow_DensityYellowWest2.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalLow_DensityYellowWest2", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenEast.json deleted file mode 100644 index 23d074ba..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBlueGreenEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenNorth.json deleted file mode 100644 index f0dd0311..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBlueGreenNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenSouth.json deleted file mode 100644 index 4db41f7b..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBlueGreenSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenWest.json deleted file mode 100644 index ff7f6a1e..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueGreenWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBlueGreenWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedEast.json deleted file mode 100644 index f8b9b8d3..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBlueRedEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedNorth.json deleted file mode 100644 index e4bb90b2..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBlueRedNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedSouth.json deleted file mode 100644 index 5af4affd..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBlueRedSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedWest.json deleted file mode 100644 index e2061c4f..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBlueRedWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBlueRedWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickEast.json deleted file mode 100644 index f1fcafb0..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBrickEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickNorth.json deleted file mode 100644 index b2bdfc79..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBrickNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickSouth.json deleted file mode 100644 index 065259f3..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBrickSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickWest.json deleted file mode 100644 index 8d174baf..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityBrickWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityBrickWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalEast.json deleted file mode 100644 index 9a36ef17..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityHorizontalEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalNorth.json deleted file mode 100644 index e3f67437..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityHorizontalNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalSouth.json deleted file mode 100644 index d48ddd66..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityHorizontalSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalWest.json deleted file mode 100644 index ed4bcdb5..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityHorizontalWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityHorizontalWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenEast.json deleted file mode 100644 index 6e41ee53..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityOrangeGreenEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenNorth.json deleted file mode 100644 index d563841d..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityOrangeGreenNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenSouth.json deleted file mode 100644 index 6644d08b..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityOrangeGreenSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenWest.json deleted file mode 100644 index f5f788f4..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityOrangeGreenWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityOrangeGreenWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzEast.json deleted file mode 100644 index 803c7a15..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityQuartzEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzNorth.json deleted file mode 100644 index 7d97e828..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityQuartzNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzSouth.json deleted file mode 100644 index 221417d5..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityQuartzSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzWest.json deleted file mode 100644 index b120ea98..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityQuartzWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityQuartzWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenEast.json deleted file mode 100644 index de9329f7..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityRedGreenEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenNorth.json deleted file mode 100644 index 72b05300..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityRedGreenNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenSouth.json deleted file mode 100644 index e62a30ca..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityRedGreenSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenWest.json deleted file mode 100644 index 378f6c5c..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRedGreenWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityRedGreenWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofEast.json deleted file mode 100644 index 8701e079..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityRoofEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofNorth.json deleted file mode 100644 index d5e4494f..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityRoofNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofSouth.json deleted file mode 100644 index 5875a8e1..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityRoofSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofWest.json deleted file mode 100644 index bb2e9a0f..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityRoofWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityRoofWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone1EastWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone1EastWest.json deleted file mode 100644 index 59f05670..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStone1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone1NorthSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone1NorthSouth.json deleted file mode 100644 index 05374d63..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStone1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone2EastWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone2EastWest.json deleted file mode 100644 index ff8955d2..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone2EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStone2EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone2NorthSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone2NorthSouth.json deleted file mode 100644 index 5666086f..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStone2NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStone2NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerNorthEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerNorthEast.json deleted file mode 100644 index bc13afa8..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneCornerNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerNorthWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerNorthWest.json deleted file mode 100644 index 6c991bf8..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneCornerNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerSouthEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerSouthEast.json deleted file mode 100644 index a7370c8f..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneCornerSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerSouthWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerSouthWest.json deleted file mode 100644 index f40067ed..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneCornerSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneCornerSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEast.json deleted file mode 100644 index 113e4a08..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndNorthEastWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndNorthEastWest.json deleted file mode 100644 index 15047371..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndNorthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneEndNorthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndNorthSouthEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndNorthSouthEast.json deleted file mode 100644 index 47bf3006..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndNorthSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneEndNorthSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndNorthSouthWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndNorthSouthWest.json deleted file mode 100644 index e9642581..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndNorthSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneEndNorthSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndSouthEastWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndSouthEastWest.json deleted file mode 100644 index 427268de..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneEndSouthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneEndSouthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneNorth.json deleted file mode 100644 index c7976f81..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneSouth.json deleted file mode 100644 index 4efca5b1..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneWest.json deleted file mode 100644 index bb0415ed..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityStoneWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityStoneWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalEast.json deleted file mode 100644 index 90920239..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityVerticalEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalNorth.json deleted file mode 100644 index 7c6f1d0e..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityVerticalNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalSouth.json deleted file mode 100644 index f88046b3..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityVerticalSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalWest.json deleted file mode 100644 index 1d7d3a0b..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityVerticalWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityVerticalWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedEast.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedEast.json deleted file mode 100644 index 19b637f8..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityYellowRedEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedNorth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedNorth.json deleted file mode 100644 index 4a649cad..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityYellowRedNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedSouth.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedSouth.json deleted file mode 100644 index b734ca61..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityYellowRedSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedWest.json b/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedWest.json deleted file mode 100644 index 10b1bbf9..00000000 --- a/src/main/resources/assets/imsm/models/item/ResidentalMedium_DensityYellowRedWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ResidentalMedium_DensityYellowRedWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingHigh_DensityQuartzEastWest.json b/src/main/resources/assets/imsm/models/item/ShoppingHigh_DensityQuartzEastWest.json deleted file mode 100644 index ec22bd25..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingHigh_DensityQuartzEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingHigh_DensityQuartzEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingHigh_DensityQuartzNorthSouth.json b/src/main/resources/assets/imsm/models/item/ShoppingHigh_DensityQuartzNorthSouth.json deleted file mode 100644 index 007f1f91..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingHigh_DensityQuartzNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingHigh_DensityQuartzNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickEast.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickEast.json deleted file mode 100644 index 6a2c1b9e..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityBrickEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickNorth.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickNorth.json deleted file mode 100644 index b5ca9e55..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityBrickNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickSouth.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickSouth.json deleted file mode 100644 index 3d2567a2..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityBrickSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickWest.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickWest.json deleted file mode 100644 index 2c3614d4..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityBrickWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityBrickWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenEast.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenEast.json deleted file mode 100644 index b8677f88..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityGreenEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenNorth.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenNorth.json deleted file mode 100644 index 3c49eab3..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityGreenNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenSouth.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenSouth.json deleted file mode 100644 index bf3296ab..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityGreenSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenWest.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenWest.json deleted file mode 100644 index 3ead056b..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityGreenWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityGreenWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeEast.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeEast.json deleted file mode 100644 index 7b1802c6..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityOrangeEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeNorth.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeNorth.json deleted file mode 100644 index 8a9d581b..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityOrangeNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeSouth.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeSouth.json deleted file mode 100644 index 81f1fc97..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityOrangeSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeWest.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeWest.json deleted file mode 100644 index 5bc69364..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityOrangeWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityOrangeWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkEast.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkEast.json deleted file mode 100644 index 44a97d3b..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityPinkEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkNorth.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkNorth.json deleted file mode 100644 index 93464c2f..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityPinkNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkSouth.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkSouth.json deleted file mode 100644 index c9e24ad4..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityPinkSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkWest.json b/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkWest.json deleted file mode 100644 index 4dfc348b..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingLow_DensityPinkWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingLow_DensityPinkWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernEast.json b/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernEast.json deleted file mode 100644 index c23f2204..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingMedium_DensityModernEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernNorth.json b/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernNorth.json deleted file mode 100644 index 5866f3b5..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingMedium_DensityModernNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernSouth.json b/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernSouth.json deleted file mode 100644 index 910bfb28..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingMedium_DensityModernSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernWest.json b/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernWest.json deleted file mode 100644 index 8479872b..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityModernWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingMedium_DensityModernWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzEast.json b/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzEast.json deleted file mode 100644 index 5352366b..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingMedium_DensityQuartzEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzNorth.json b/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzNorth.json deleted file mode 100644 index b4ab57fe..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingMedium_DensityQuartzNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzSouth.json b/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzSouth.json deleted file mode 100644 index dc5d9650..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingMedium_DensityQuartzSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzWest.json b/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzWest.json deleted file mode 100644 index af303ec4..00000000 --- a/src/main/resources/assets/imsm/models/item/ShoppingMedium_DensityQuartzWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/ShoppingMedium_DensityQuartzWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/SurvivalSmallBuilding.json b/src/main/resources/assets/imsm/models/item/SurvivalSmallBuilding.json deleted file mode 100644 index 83b72089..00000000 --- a/src/main/resources/assets/imsm/models/item/SurvivalSmallBuilding.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/SurvivalSmallBuilding", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/SurvivalWoodenHouse.json b/src/main/resources/assets/imsm/models/item/SurvivalWoodenHouse.json deleted file mode 100644 index f7141a6f..00000000 --- a/src/main/resources/assets/imsm/models/item/SurvivalWoodenHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/SurvivalWoodenHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAirportRunway_EastWestBuilding_North.json b/src/main/resources/assets/imsm/models/item/TransportAirportRunway_EastWestBuilding_North.json deleted file mode 100644 index b9a2348e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAirportRunway_EastWestBuilding_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAirportRunway_EastWestBuilding_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAirportRunway_EastWestBuilding_South.json b/src/main/resources/assets/imsm/models/item/TransportAirportRunway_EastWestBuilding_South.json deleted file mode 100644 index de4bf359..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAirportRunway_EastWestBuilding_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAirportRunway_EastWestBuilding_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAirportRunway_NorthSouthBuilding_East.json b/src/main/resources/assets/imsm/models/item/TransportAirportRunway_NorthSouthBuilding_East.json deleted file mode 100644 index 0221466b..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAirportRunway_NorthSouthBuilding_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAirportRunway_NorthSouthBuilding_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAirportRunway_NorthSouthBuilding_West.json b/src/main/resources/assets/imsm/models/item/TransportAirportRunway_NorthSouthBuilding_West.json deleted file mode 100644 index 0aba04fb..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAirportRunway_NorthSouthBuilding_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAirportRunway_NorthSouthBuilding_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenue1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportAvenue1EastWest.json deleted file mode 100644 index 54105035..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenue1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenue1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenue1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportAvenue1NorthSouth.json deleted file mode 100644 index b5c2ed95..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenue1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenue1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenue2EastWest.json b/src/main/resources/assets/imsm/models/item/TransportAvenue2EastWest.json deleted file mode 100644 index 31c2f788..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenue2EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenue2EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenue2NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportAvenue2NorthSouth.json deleted file mode 100644 index 5f300c27..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenue2NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenue2NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueEEast.json b/src/main/resources/assets/imsm/models/item/TransportAvenueEEast.json deleted file mode 100644 index 9998ff31..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueEEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueEEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueENorth.json b/src/main/resources/assets/imsm/models/item/TransportAvenueENorth.json deleted file mode 100644 index 16caf39d..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueENorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueENorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueESouth.json b/src/main/resources/assets/imsm/models/item/TransportAvenueESouth.json deleted file mode 100644 index 674790c7..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueESouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueESouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueEWest.json b/src/main/resources/assets/imsm/models/item/TransportAvenueEWest.json deleted file mode 100644 index 2653330b..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueEWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueEWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportAvenueLNorthEast.json deleted file mode 100644 index 38645dab..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportAvenueLNorthWest.json deleted file mode 100644 index 64545716..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportAvenueLSouthEast.json deleted file mode 100644 index fb06784f..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportAvenueLSouthWest.json deleted file mode 100644 index d1611e18..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueTNorthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportAvenueTNorthEastWest.json deleted file mode 100644 index 26868464..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueTNorthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueTNorthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueTNorthSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportAvenueTNorthSouthEast.json deleted file mode 100644 index ac8b1d93..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueTNorthSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueTNorthSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueTNorthSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportAvenueTNorthSouthWest.json deleted file mode 100644 index 6707449f..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueTNorthSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueTNorthSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueTSouthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportAvenueTSouthEastWest.json deleted file mode 100644 index 5036ac09..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueTSouthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueTSouthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportAvenueXNorthSouthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportAvenueXNorthSouthEastWest.json deleted file mode 100644 index c9862246..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportAvenueXNorthSouthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportAvenueXNorthSouthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue1EastWest.json deleted file mode 100644 index 8ececb7b..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenue1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue1NorthSouth.json deleted file mode 100644 index 91bee652..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenue1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue2NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue2NorthSouth.json deleted file mode 100644 index 0ed0bef7..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue2NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenue2NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue2SouthWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue2SouthWest.json deleted file mode 100644 index efd90085..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue2SouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenue2SouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue3EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue3EastWest.json deleted file mode 100644 index 64edc462..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue3EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenue3EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue3NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue3NorthSouth.json deleted file mode 100644 index 144cf84e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue3NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenue3NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue4EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue4EastWest.json deleted file mode 100644 index c207ab56..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue4EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenue4EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue4NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue4NorthSouth.json deleted file mode 100644 index 3f5d7517..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenue4NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenue4NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLNorthEast.json deleted file mode 100644 index d137fc91..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenueLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLNorthWest.json deleted file mode 100644 index 4c0ce4fc..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenueLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLSouthEast.json deleted file mode 100644 index f369071e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenueLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLSouthWest.json deleted file mode 100644 index 835229a6..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeAvenueLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeAvenueLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighway1EastWest.json deleted file mode 100644 index 2d48b032..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighway1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighway1NorthSouth.json deleted file mode 100644 index be37bb0d..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighway1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway2EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighway2EastWest.json deleted file mode 100644 index 87cd3570..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway2EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighway2EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway2NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighway2NorthSouth.json deleted file mode 100644 index ae901a77..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway2NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighway2NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway3EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighway3EastWest.json deleted file mode 100644 index 61c68f49..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway3EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighway3EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway3NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighway3NorthSouth.json deleted file mode 100644 index ea68c11b..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway3NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighway3NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway4EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighway4EastWest.json deleted file mode 100644 index 004e8e25..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway4EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighway4EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway4NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighway4NorthSouth.json deleted file mode 100644 index 59b7ce79..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighway4NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighway4NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLNorthEast.json deleted file mode 100644 index 90d898bd..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighwayLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLNorthWest.json deleted file mode 100644 index c3001020..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighwayLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLSouthEast.json deleted file mode 100644 index edae0bd5..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighwayLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLSouthWest.json deleted file mode 100644 index 62f9fe66..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeHighwayLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeHighwayLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeRoad1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeRoad1EastWest.json deleted file mode 100644 index 0e1c01c6..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeRoad1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeRoad1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeRoad1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeRoad1NorthSouth.json deleted file mode 100644 index 68746d50..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeRoad1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeRoad1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeRoad2EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeRoad2EastWest.json deleted file mode 100644 index daa01e55..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeRoad2EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeRoad2EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeRoad2NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeRoad2NorthSouth.json deleted file mode 100644 index 99e530b5..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeRoad2NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeRoad2NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLNorthEast.json deleted file mode 100644 index 4ce51c26..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeRoadLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLNorthWest.json deleted file mode 100644 index ae0a6af4..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeRoadLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLSouthEast.json deleted file mode 100644 index fd856cbd..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeRoadLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLSouthWest.json deleted file mode 100644 index d505c7f9..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeRoadLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeRoadLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeStreet1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeStreet1EastWest.json deleted file mode 100644 index 3d7004f7..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeStreet1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeStreet1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeStreet1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeStreet1NorthSouth.json deleted file mode 100644 index d7f1c027..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeStreet1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeStreet1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeStreet2EastWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeStreet2EastWest.json deleted file mode 100644 index cd3207f4..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeStreet2EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeStreet2EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeStreet2NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportBridgeStreet2NorthSouth.json deleted file mode 100644 index 86d4663a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeStreet2NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeStreet2NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLNorthEast.json deleted file mode 100644 index 9c4e2824..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeStreetLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLNorthWest.json deleted file mode 100644 index 0fd51131..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeStreetLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLSouthEast.json deleted file mode 100644 index 27f64af2..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeStreetLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLSouthWest.json deleted file mode 100644 index bf812fa3..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportBridgeStreetLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportBridgeStreetLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.json deleted file mode 100644 index 01b2dfe7..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_Street1Avenue_EastStreet_NorthWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.json deleted file mode 100644 index 4999545b..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_Street1Avenue_EastStreet_SouthWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.json deleted file mode 100644 index d57d3130..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.json deleted file mode 100644 index ac9d8b9c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_Street1Avenue_NorthStreet_SouthWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.json deleted file mode 100644 index 2b3d1487..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.json deleted file mode 100644 index 436306e8..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_Street1Avenue_SouthStreet_NorthWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.json deleted file mode 100644 index 75126bd4..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_Street1Avenue_WestStreet_NorthEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.json deleted file mode 100644 index c77b5ac0..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_Street1Avenue_WestStreet_SouthEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_EastStreet_North.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_EastStreet_North.json deleted file mode 100644 index d52fb756..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_EastStreet_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetLAvenue_EastStreet_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_EastStreet_South.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_EastStreet_South.json deleted file mode 100644 index 8981b590..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_EastStreet_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetLAvenue_EastStreet_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.json deleted file mode 100644 index 3cee8300..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_NorthStreet_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetLAvenue_NorthStreet_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.json deleted file mode 100644 index 908d508b..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_NorthStreet_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetLAvenue_NorthStreet_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.json deleted file mode 100644 index 385c1975..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_SouthStreet_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetLAvenue_SouthStreet_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.json deleted file mode 100644 index b622867c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_SouthStreet_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetLAvenue_SouthStreet_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_WestStreet_North.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_WestStreet_North.json deleted file mode 100644 index ffbc3b35..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_WestStreet_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetLAvenue_WestStreet_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_WestStreet_South.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_WestStreet_South.json deleted file mode 100644 index 0231ebcb..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetLAvenue_WestStreet_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetLAvenue_WestStreet_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.json deleted file mode 100644 index e38d8894..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetTAvenue_EastStreet_NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.json deleted file mode 100644 index 88561c26..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.json deleted file mode 100644 index c8c26635..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetTAvenue_EastWestStreet_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.json deleted file mode 100644 index 94a39302..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.json deleted file mode 100644 index 117090ab..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetTAvenue_NorthSouthStreet_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.json deleted file mode 100644 index d6f72aef..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetTAvenue_NorthStreet_EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.json deleted file mode 100644 index b9bd5d7a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetTAvenue_SouthStreet_EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.json deleted file mode 100644 index 63d84dfc..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetTAvenue_WestStreet_NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.json deleted file mode 100644 index a325f9c5..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetXAvenue_EastWestStreet_NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.json b/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.json deleted file mode 100644 index 22e05996..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorAvenue_StreetXAvenue_NorthSouthStreet_EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_EastAvenue_West.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_EastAvenue_West.json deleted file mode 100644 index bc32b8f5..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_EastAvenue_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_AvenueBridge_EastAvenue_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_NorthAvenue_South.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_NorthAvenue_South.json deleted file mode 100644 index b6502546..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_NorthAvenue_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_AvenueBridge_NorthAvenue_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_SouthAvenue_North.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_SouthAvenue_North.json deleted file mode 100644 index de0f8e53..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_SouthAvenue_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_AvenueBridge_SouthAvenue_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_WestAvenue_East.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_WestAvenue_East.json deleted file mode 100644 index a4578b82..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_AvenueBridge_WestAvenue_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_AvenueBridge_WestAvenue_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_EastRoad_West.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_EastRoad_West.json deleted file mode 100644 index bbe9a770..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_EastRoad_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_RoadBridge_EastRoad_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_NorthRoad_South.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_NorthRoad_South.json deleted file mode 100644 index ad16a11c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_NorthRoad_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_RoadBridge_NorthRoad_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_SouthRoad_North.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_SouthRoad_North.json deleted file mode 100644 index bb7516ea..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_SouthRoad_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_RoadBridge_SouthRoad_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_WestRoad_East.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_WestRoad_East.json deleted file mode 100644 index 116c09c5..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_RoadBridge_WestRoad_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_RoadBridge_WestRoad_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_EastStreet_West.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_EastStreet_West.json deleted file mode 100644 index eff8df0d..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_EastStreet_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_StreetBridge_EastStreet_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_NorthStreet_South.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_NorthStreet_South.json deleted file mode 100644 index e1b67e2d..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_NorthStreet_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_StreetBridge_NorthStreet_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_SouthStreet_North.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_SouthStreet_North.json deleted file mode 100644 index 8083814f..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_SouthStreet_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_StreetBridge_SouthStreet_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_WestStreet_East.json b/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_WestStreet_East.json deleted file mode 100644 index 92f26955..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorBridge_StreetBridge_WestStreet_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorBridge_StreetBridge_WestStreet_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.json deleted file mode 100644 index 0e8c1146..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighwayFloor_AvenueHighwayFloor_EastAvenue_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.json deleted file mode 100644 index 9e8ba6cb..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighwayFloor_AvenueHighwayFloor_NorthAvenue_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.json deleted file mode 100644 index 4cd45d58..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighwayFloor_AvenueHighwayFloor_SouthAvenue_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.json deleted file mode 100644 index e315c41e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighwayFloor_AvenueHighwayFloor_WestAvenueFloor_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_EastAvenue_West.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_EastAvenue_West.json deleted file mode 100644 index d6fd312c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_EastAvenue_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighway_AvenueHighway_EastAvenue_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_NorthAvenue_South.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_NorthAvenue_South.json deleted file mode 100644 index c5c4b5f5..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_NorthAvenue_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighway_AvenueHighway_NorthAvenue_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_SouthAvenue_North.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_SouthAvenue_North.json deleted file mode 100644 index 315f9c28..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_SouthAvenue_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighway_AvenueHighway_SouthAvenue_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_WestAvenue_East.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_WestAvenue_East.json deleted file mode 100644 index 0c36b0ff..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_AvenueHighway_WestAvenue_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighway_AvenueHighway_WestAvenue_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.json deleted file mode 100644 index 0b6e8cf2..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighway_HighwayFloorHighway_EastHighwayFloor_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.json deleted file mode 100644 index 6e432207..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighway_HighwayFloorHighway_NorthHighwayFloor_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.json deleted file mode 100644 index 7190835e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighway_HighwayFloorHighway_SouthHighwayFloor_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.json b/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.json deleted file mode 100644 index 1429bfae..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportConnectorHighway_HighwayFloorHighway_WestHighwayFloor_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourBigEast.json b/src/main/resources/assets/imsm/models/item/TransportHarbourBigEast.json deleted file mode 100644 index 77a98fd8..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourBigEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourBigEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourBigNorth.json b/src/main/resources/assets/imsm/models/item/TransportHarbourBigNorth.json deleted file mode 100644 index cbca2ea2..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourBigNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourBigNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourBigSouth.json b/src/main/resources/assets/imsm/models/item/TransportHarbourBigSouth.json deleted file mode 100644 index a2f0680f..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourBigSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourBigSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourBigWest.json b/src/main/resources/assets/imsm/models/item/TransportHarbourBigWest.json deleted file mode 100644 index 738d0cb4..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourBigWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourBigWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerNorthEast.json deleted file mode 100644 index 77c69904..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide1CornerNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerNorthWest.json deleted file mode 100644 index a7a91710..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide1CornerNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerSouthEast.json deleted file mode 100644 index add5ebce..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide1CornerSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerSouthWest.json deleted file mode 100644 index 19934c3a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide1CornerSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide1CornerSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneEast.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneEast.json deleted file mode 100644 index 96380c86..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide2CornerCraneEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneNorth.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneNorth.json deleted file mode 100644 index a27c7d3b..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide2CornerCraneNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneSouth.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneSouth.json deleted file mode 100644 index eb5f3516..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide2CornerCraneSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneWest.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneWest.json deleted file mode 100644 index 6cb10140..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerCraneWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide2CornerCraneWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerEast.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerEast.json deleted file mode 100644 index ea451942..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide2CornerEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerNorth.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerNorth.json deleted file mode 100644 index 836bb7de..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide2CornerNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerSouth.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerSouth.json deleted file mode 100644 index c8dc07c5..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide2CornerSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerWest.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerWest.json deleted file mode 100644 index 8509ff89..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide2CornerWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide2CornerWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.json deleted file mode 100644 index 9310530e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide3CornerNorthEast_NorthWest_SouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.json deleted file mode 100644 index de7e3937..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide3CornerNorthEast_NorthWest_SouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.json deleted file mode 100644 index 82903d62..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide3CornerNorthEast_SouthEast_SouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.json deleted file mode 100644 index a1bd2ecb..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSide3CornerNorthWest_SouthEast_SouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSmallEast.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSmallEast.json deleted file mode 100644 index bb194645..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSmallEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSmallEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSmallNorth.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSmallNorth.json deleted file mode 100644 index 2a615eec..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSmallNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSmallNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSmallSouth.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSmallSouth.json deleted file mode 100644 index b50bd805..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSmallSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSmallSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHarbourSmallWest.json b/src/main/resources/assets/imsm/models/item/TransportHarbourSmallWest.json deleted file mode 100644 index 9291dac1..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHarbourSmallWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHarbourSmallWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighway05EastWestNorthside.json b/src/main/resources/assets/imsm/models/item/TransportHighway05EastWestNorthside.json deleted file mode 100644 index 3c1d011e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighway05EastWestNorthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighway05EastWestNorthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighway05EastWestSouthside.json b/src/main/resources/assets/imsm/models/item/TransportHighway05EastWestSouthside.json deleted file mode 100644 index 73ec7e2c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighway05EastWestSouthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighway05EastWestSouthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighway05NorthSouthEastside.json b/src/main/resources/assets/imsm/models/item/TransportHighway05NorthSouthEastside.json deleted file mode 100644 index 683bc94a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighway05NorthSouthEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighway05NorthSouthEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighway05NorthSouthWestside.json b/src/main/resources/assets/imsm/models/item/TransportHighway05NorthSouthWestside.json deleted file mode 100644 index 99ecf8a6..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighway05NorthSouthWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighway05NorthSouthWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighway1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportHighway1EastWest.json deleted file mode 100644 index e69ecaad..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighway1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighway1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighway1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportHighway1NorthSouth.json deleted file mode 100644 index 31fd5138..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighway1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighway1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighway2EastWest.json b/src/main/resources/assets/imsm/models/item/TransportHighway2EastWest.json deleted file mode 100644 index fc54f83b..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighway2EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighway2EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighway2NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportHighway2NorthSouth.json deleted file mode 100644 index 531aab10..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighway2NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighway2NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayEastWestEastside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayEastWestEastside.json deleted file mode 100644 index 83b6e359..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayEastWestEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayDrivewayEastWestEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayEastWestWestside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayEastWestWestside.json deleted file mode 100644 index ede05156..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayEastWestWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayDrivewayEastWestWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitEastWestEastside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitEastWestEastside.json deleted file mode 100644 index 8be560de..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitEastWestEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayDrivewayExitEastWestEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitEastWestWestside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitEastWestWestside.json deleted file mode 100644 index b7ee1dff..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitEastWestWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayDrivewayExitEastWestWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitNorthSouthNorthside.json deleted file mode 100644 index b869c324..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitNorthSouthNorthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayDrivewayExitNorthSouthNorthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitNorthSouthSouthside.json deleted file mode 100644 index 50e5339d..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayExitNorthSouthSouthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayDrivewayExitNorthSouthSouthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayNorthSouthNorthside.json deleted file mode 100644 index 28271c39..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayNorthSouthNorthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayDrivewayNorthSouthNorthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayNorthSouthSouthside.json deleted file mode 100644 index b2a021e1..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayDrivewayNorthSouthSouthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayDrivewayNorthSouthSouthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayExitEastWestEastside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayExitEastWestEastside.json deleted file mode 100644 index ccf2f7dd..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayExitEastWestEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayExitEastWestEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayExitEastWestWestside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayExitEastWestWestside.json deleted file mode 100644 index deaf64f1..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayExitEastWestWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayExitEastWestWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayExitNorthSouthNorthside.json deleted file mode 100644 index 8c71118d..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayExitNorthSouthNorthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayExitNorthSouthNorthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayExitNorthSouthSouthside.json deleted file mode 100644 index 3f57cd13..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayExitNorthSouthSouthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayExitNorthSouthSouthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05EastWestNorthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05EastWestNorthside.json deleted file mode 100644 index 3871ad11..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05EastWestNorthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloor05EastWestNorthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05EastWestSouthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05EastWestSouthside.json deleted file mode 100644 index 86e0ab6c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05EastWestSouthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloor05EastWestSouthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05NorthSouthEastside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05NorthSouthEastside.json deleted file mode 100644 index 62924618..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05NorthSouthEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloor05NorthSouthEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05NorthSouthWestside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05NorthSouthWestside.json deleted file mode 100644 index 9074a430..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor05NorthSouthWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloor05NorthSouthWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloor1EastWest.json deleted file mode 100644 index 0dfe4b9a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloor1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloor1NorthSouth.json deleted file mode 100644 index 5bbdf5fc..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloor1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor2EastWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloor2EastWest.json deleted file mode 100644 index dabfa1cd..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor2EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloor2EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor2NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloor2NorthSouth.json deleted file mode 100644 index cc5e3860..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloor2NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloor2NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayEastWestEastside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayEastWestEastside.json deleted file mode 100644 index f0bad396..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayEastWestEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorDrivewayEastWestEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayEastWestWestside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayEastWestWestside.json deleted file mode 100644 index 4c2137f8..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayEastWestWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorDrivewayEastWestWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitEastWestEastside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitEastWestEastside.json deleted file mode 100644 index 48a1ad24..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitEastWestEastside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorDrivewayExitEastWestEastside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitEastWestWestside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitEastWestWestside.json deleted file mode 100644 index 2b0c48d7..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitEastWestWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorDrivewayExitEastWestWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitNorthSouthNorthside.json deleted file mode 100644 index 7a996648..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitNorthSouthNorthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorDrivewayExitNorthSouthNorthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitNorthSouthSouthside.json deleted file mode 100644 index ec21a0ec..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayExitNorthSouthSouthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorDrivewayExitNorthSouthSouthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayNorthSouthNorthside.json deleted file mode 100644 index 433d1d35..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayNorthSouthNorthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorDrivewayNorthSouthNorthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayNorthSouthSouthside.json deleted file mode 100644 index 99ff0357..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorDrivewayNorthSouthSouthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorDrivewayNorthSouthSouthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitEastWestEast.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitEastWestEast.json deleted file mode 100644 index 2bda332a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitEastWestEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorExitEastWestEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitEastWestWestside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitEastWestWestside.json deleted file mode 100644 index 2956a284..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitEastWestWestside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorExitEastWestWestside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitNorthSouthNorthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitNorthSouthNorthside.json deleted file mode 100644 index dcc8b7ea..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitNorthSouthNorthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorExitNorthSouthNorthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitNorthSouthSouthside.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitNorthSouthSouthside.json deleted file mode 100644 index 93cfaf46..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorExitNorthSouthSouthside.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorExitNorthSouthSouthside", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLNorthEast.json deleted file mode 100644 index 856cde95..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLNorthWest.json deleted file mode 100644 index 1cb587f8..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLSouthEast.json deleted file mode 100644 index 82b58b6a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLSouthWest.json deleted file mode 100644 index aefddcb7..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTNorthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTNorthEastWest.json deleted file mode 100644 index 2e2d8a65..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTNorthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorTNorthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTNorthSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTNorthSouthEast.json deleted file mode 100644 index e4a5bbc1..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTNorthSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorTNorthSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTNorthSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTNorthSouthWest.json deleted file mode 100644 index 299884e2..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTNorthSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorTNorthSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTSouthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTSouthEastWest.json deleted file mode 100644 index 1f62aae2..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorTSouthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorTSouthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayFloorXNorthEastSouthWest.json deleted file mode 100644 index 5c83f0e7..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayFloorXNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayFloorXNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportHighwayLNorthEast.json deleted file mode 100644 index 9b3aa96e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayLNorthWest.json deleted file mode 100644 index 78f7f5ba..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportHighwayLSouthEast.json deleted file mode 100644 index 48b460e7..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayLSouthWest.json deleted file mode 100644 index ecca1de3..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayTNorthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayTNorthEastWest.json deleted file mode 100644 index e0c542d3..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayTNorthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayTNorthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayTNorthSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportHighwayTNorthSouthEast.json deleted file mode 100644 index c6a1a169..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayTNorthSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayTNorthSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayTNorthSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayTNorthSouthWest.json deleted file mode 100644 index efdac5dc..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayTNorthSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayTNorthSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayTSouthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayTSouthEastWest.json deleted file mode 100644 index 25583065..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayTSouthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayTSouthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportHighwayXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportHighwayXNorthEastSouthWest.json deleted file mode 100644 index 78c98bb2..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportHighwayXNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportHighwayXNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_EastTram_West.json b/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_EastTram_West.json deleted file mode 100644 index 36c714e0..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_EastTram_West.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicConnectorHightram_TramHightram_EastTram_West", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_NorthTram_South.json b/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_NorthTram_South.json deleted file mode 100644 index 2d4019e8..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_NorthTram_South.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicConnectorHightram_TramHightram_NorthTram_South", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_SouthTram_North.json b/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_SouthTram_North.json deleted file mode 100644 index 6ff779af..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_SouthTram_North.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicConnectorHightram_TramHightram_SouthTram_North", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_WestTram_East.json b/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_WestTram_East.json deleted file mode 100644 index 1d93387f..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicConnectorHightram_TramHightram_WestTram_East.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicConnectorHightram_TramHightram_WestTram_East", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightram1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightram1EastWest.json deleted file mode 100644 index e1f3f8ee..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightram1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightram1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightram1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightram1NorthSouth.json deleted file mode 100644 index a454388e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightram1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightram1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramEEast.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramEEast.json deleted file mode 100644 index 3a75bd58..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramEEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramEEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramENorth.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramENorth.json deleted file mode 100644 index 0c591fd9..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramENorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramENorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramESouth.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramESouth.json deleted file mode 100644 index da46515f..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramESouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramESouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramEWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramEWest.json deleted file mode 100644 index a260ef9a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramEWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramEWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramLNorthEast.json deleted file mode 100644 index aab84c56..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramLNorthWest.json deleted file mode 100644 index b8523aec..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramLSouthEast.json deleted file mode 100644 index 520f4d76..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramLSouthWest.json deleted file mode 100644 index 7ccc545d..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramStationEastWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramStationEastWest.json deleted file mode 100644 index 2051ab2b..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramStationEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramStationEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramStationNorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramStationNorthSouth.json deleted file mode 100644 index 3d76a958..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramStationNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramStationNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicHightramXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicHightramXNorthEastSouthWest.json deleted file mode 100644 index 0cc8a7e9..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicHightramXNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicHightramXNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram1EastWest.json deleted file mode 100644 index 58647409..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram1NorthSouth.json deleted file mode 100644 index 953cdd5f..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramEEast.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramEEast.json deleted file mode 100644 index f569c15e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramEEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramEEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramENorth.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramENorth.json deleted file mode 100644 index 92fb0004..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramENorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramENorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramESouth.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramESouth.json deleted file mode 100644 index 92a70f18..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramESouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramESouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramEWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramEWest.json deleted file mode 100644 index d7767cd0..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramEWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramEWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramLNorthEast.json deleted file mode 100644 index 8efc845a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramLNorthWest.json deleted file mode 100644 index 627195c9..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramLSouthEast.json deleted file mode 100644 index b00a7185..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramLSouthWest.json deleted file mode 100644 index b1dcbf4a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramStationEastWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramStationEastWest.json deleted file mode 100644 index 7e839651..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramStationEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramStationEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramStationNorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramStationNorthSouth.json deleted file mode 100644 index b7a49fdc..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramStationNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramStationNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTramXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicTramXNorthEastSouthWest.json deleted file mode 100644 index af14496c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTramXNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTramXNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_road1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_road1EastWest.json deleted file mode 100644 index 6cdcbaff..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_road1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram_on_road1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_road1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_road1NorthSouth.json deleted file mode 100644 index 4d6fc218..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_road1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram_on_road1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadEEast.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadEEast.json deleted file mode 100644 index 6c0fd380..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadEEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram_on_roadEEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadENorth.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadENorth.json deleted file mode 100644 index fa278d93..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadENorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram_on_roadENorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadESouth.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadESouth.json deleted file mode 100644 index f11b5283..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadESouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram_on_roadESouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadEWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadEWest.json deleted file mode 100644 index 69fb0ba0..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadEWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram_on_roadEWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLNorthEast.json deleted file mode 100644 index 5ac2ee59..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram_on_roadLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLNorthWest.json deleted file mode 100644 index 63ffdb5c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram_on_roadLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLSouthEast.json deleted file mode 100644 index 6da5d48c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram_on_roadLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLSouthWest.json deleted file mode 100644 index 22474f30..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportPublicTram_on_roadLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportPublicTram_on_roadLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoad1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportRoad1EastWest.json deleted file mode 100644 index 0832f121..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoad1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoad1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoad1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportRoad1NorthSouth.json deleted file mode 100644 index 39d83763..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoad1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoad1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadEEast.json b/src/main/resources/assets/imsm/models/item/TransportRoadEEast.json deleted file mode 100644 index 83f46bce..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadEEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadEEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadENorth.json b/src/main/resources/assets/imsm/models/item/TransportRoadENorth.json deleted file mode 100644 index d44ce679..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadENorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadENorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadESouth.json b/src/main/resources/assets/imsm/models/item/TransportRoadESouth.json deleted file mode 100644 index 16b55e4d..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadESouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadESouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadEWest.json b/src/main/resources/assets/imsm/models/item/TransportRoadEWest.json deleted file mode 100644 index 125d4407..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadEWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadEWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportRoadLNorthEast.json deleted file mode 100644 index 4f1b4cb0..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportRoadLNorthWest.json deleted file mode 100644 index ea6dfc5e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportRoadLSouthEast.json deleted file mode 100644 index b674cd78..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportRoadLSouthWest.json deleted file mode 100644 index caa0d4dd..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadTNorthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportRoadTNorthEastWest.json deleted file mode 100644 index 5e62e07d..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadTNorthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadTNorthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadTNorthSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportRoadTNorthSouthEast.json deleted file mode 100644 index da28c263..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadTNorthSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadTNorthSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadTNorthSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportRoadTNorthSouthWest.json deleted file mode 100644 index 04c4ab67..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadTNorthSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadTNorthSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadTSouthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportRoadTSouthEastWest.json deleted file mode 100644 index 35333221..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadTSouthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadTSouthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportRoadXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportRoadXNorthEastSouthWest.json deleted file mode 100644 index cc9a2e4c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportRoadXNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportRoadXNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreet1EastWest.json b/src/main/resources/assets/imsm/models/item/TransportStreet1EastWest.json deleted file mode 100644 index 5f0eda39..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreet1EastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreet1EastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreet1NorthSouth.json b/src/main/resources/assets/imsm/models/item/TransportStreet1NorthSouth.json deleted file mode 100644 index b99d9eb4..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreet1NorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreet1NorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetEEast.json b/src/main/resources/assets/imsm/models/item/TransportStreetEEast.json deleted file mode 100644 index 2e247e37..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetEEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetEEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetENorth.json b/src/main/resources/assets/imsm/models/item/TransportStreetENorth.json deleted file mode 100644 index 68a95170..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetENorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetENorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetESouth.json b/src/main/resources/assets/imsm/models/item/TransportStreetESouth.json deleted file mode 100644 index b3f6c187..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetESouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetESouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetEWest.json b/src/main/resources/assets/imsm/models/item/TransportStreetEWest.json deleted file mode 100644 index 765f66c5..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetEWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetEWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetLNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportStreetLNorthEast.json deleted file mode 100644 index 169c3983..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetLNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetLNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetLNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportStreetLNorthWest.json deleted file mode 100644 index ebb099da..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetLNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetLNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetLSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportStreetLSouthEast.json deleted file mode 100644 index 7a8f6448..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetLSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetLSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetLSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportStreetLSouthWest.json deleted file mode 100644 index c5d9f949..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetLSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetLSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetRoundaboutNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportStreetRoundaboutNorthEastSouthWest.json deleted file mode 100644 index 4c9d12d2..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetRoundaboutNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetRoundaboutNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetTNorthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportStreetTNorthEastWest.json deleted file mode 100644 index da7612be..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetTNorthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetTNorthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetTNorthSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportStreetTNorthSouthEast.json deleted file mode 100644 index 725e912b..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetTNorthSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetTNorthSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetTNorthSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportStreetTNorthSouthWest.json deleted file mode 100644 index 13786ba7..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetTNorthSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetTNorthSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetTSouthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportStreetTSouthEastWest.json deleted file mode 100644 index 03454ad3..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetTSouthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetTSouthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportStreetXNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportStreetXNorthEastSouthWest.json deleted file mode 100644 index da7c832a..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportStreetXNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportStreetXNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater1CornerNorthEast.json b/src/main/resources/assets/imsm/models/item/TransportWater1CornerNorthEast.json deleted file mode 100644 index d98b6008..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater1CornerNorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater1CornerNorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater1CornerNorthWest.json b/src/main/resources/assets/imsm/models/item/TransportWater1CornerNorthWest.json deleted file mode 100644 index 165c9b74..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater1CornerNorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater1CornerNorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater1CornerSouthEast.json b/src/main/resources/assets/imsm/models/item/TransportWater1CornerSouthEast.json deleted file mode 100644 index 43646196..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater1CornerSouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater1CornerSouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater1CornerSouthWest.json b/src/main/resources/assets/imsm/models/item/TransportWater1CornerSouthWest.json deleted file mode 100644 index cf44662e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater1CornerSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater1CornerSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater2CornerEast.json b/src/main/resources/assets/imsm/models/item/TransportWater2CornerEast.json deleted file mode 100644 index 93175bab..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater2CornerEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater2CornerEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater2CornerNorth.json b/src/main/resources/assets/imsm/models/item/TransportWater2CornerNorth.json deleted file mode 100644 index 14445bc4..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater2CornerNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater2CornerNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater2CornerSouth.json b/src/main/resources/assets/imsm/models/item/TransportWater2CornerSouth.json deleted file mode 100644 index d21455cc..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater2CornerSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater2CornerSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater2CornerWest.json b/src/main/resources/assets/imsm/models/item/TransportWater2CornerWest.json deleted file mode 100644 index 668d1123..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater2CornerWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater2CornerWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater3CornerNorthEast_NorthWest_SouthEast.json b/src/main/resources/assets/imsm/models/item/TransportWater3CornerNorthEast_NorthWest_SouthEast.json deleted file mode 100644 index fa0cdb6c..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater3CornerNorthEast_NorthWest_SouthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater3CornerNorthEast_NorthWest_SouthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater3CornerNorthEast_NorthWest_SouthWest.json b/src/main/resources/assets/imsm/models/item/TransportWater3CornerNorthEast_NorthWest_SouthWest.json deleted file mode 100644 index 28264d46..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater3CornerNorthEast_NorthWest_SouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater3CornerNorthEast_NorthWest_SouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater3CornerSouthEast_SouthWest_NorthEast.json b/src/main/resources/assets/imsm/models/item/TransportWater3CornerSouthEast_SouthWest_NorthEast.json deleted file mode 100644 index 014b099e..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater3CornerSouthEast_SouthWest_NorthEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater3CornerSouthEast_SouthWest_NorthEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater3CornerSouthEast_SouthWest_NorthWest.json b/src/main/resources/assets/imsm/models/item/TransportWater3CornerSouthEast_SouthWest_NorthWest.json deleted file mode 100644 index 3bcef5be..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater3CornerSouthEast_SouthWest_NorthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater3CornerSouthEast_SouthWest_NorthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/TransportWater4CornerNorthSouthEastWest.json b/src/main/resources/assets/imsm/models/item/TransportWater4CornerNorthSouthEastWest.json deleted file mode 100644 index a6f37da1..00000000 --- a/src/main/resources/assets/imsm/models/item/TransportWater4CornerNorthSouthEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/TransportWater4CornerNorthSouthEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearEast.json b/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearEast.json deleted file mode 100644 index 54e95a53..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_NuclearEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearNorth.json b/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearNorth.json deleted file mode 100644 index e1eee610..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_NuclearNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearSouth.json b/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearSouth.json deleted file mode 100644 index f6de7008..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_NuclearSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearWest.json b/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearWest.json deleted file mode 100644 index 721d5291..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_NuclearWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_NuclearWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalEast.json b/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalEast.json deleted file mode 100644 index 557511b8..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_OilCoalEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalNorth.json b/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalNorth.json deleted file mode 100644 index 9a0b8a5d..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_OilCoalNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalSouth.json b/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalSouth.json deleted file mode 100644 index 775f5759..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_OilCoalSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalWest.json b/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalWest.json deleted file mode 100644 index 181f47ad..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_OilCoalWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_OilCoalWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_SunNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/UtilityPower_SunNorthEastSouthWest.json deleted file mode 100644 index 176c63c1..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_SunNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_SunNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_WindEast.json b/src/main/resources/assets/imsm/models/item/UtilityPower_WindEast.json deleted file mode 100644 index 1d176563..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_WindEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_WindEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_WindNorth.json b/src/main/resources/assets/imsm/models/item/UtilityPower_WindNorth.json deleted file mode 100644 index c2526cd1..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_WindNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_WindNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_WindSouth.json b/src/main/resources/assets/imsm/models/item/UtilityPower_WindSouth.json deleted file mode 100644 index 9d2803d6..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_WindSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_WindSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPower_WindWest.json b/src/main/resources/assets/imsm/models/item/UtilityPower_WindWest.json deleted file mode 100644 index ac0b7869..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPower_WindWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPower_WindWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPumpjackEastWest.json b/src/main/resources/assets/imsm/models/item/UtilityPumpjackEastWest.json deleted file mode 100644 index 08392cc7..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPumpjackEastWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPumpjackEastWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityPumpjackNorthSouth.json b/src/main/resources/assets/imsm/models/item/UtilityPumpjackNorthSouth.json deleted file mode 100644 index 3f4b1248..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityPumpjackNorthSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityPumpjackNorthSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningEast.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningEast.json deleted file mode 100644 index e1349616..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_BurningEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningNorth.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningNorth.json deleted file mode 100644 index cd35cbbe..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_BurningNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningSouth.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningSouth.json deleted file mode 100644 index a95d4057..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_BurningSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningWest.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningWest.json deleted file mode 100644 index f429c14d..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_BurningWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_BurningWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapEast.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapEast.json deleted file mode 100644 index 832858f0..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_HeapEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapNorth.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapNorth.json deleted file mode 100644 index 532fb7b8..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_HeapNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapSouth.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapSouth.json deleted file mode 100644 index 7d1f0b5b..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_HeapSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapWest.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapWest.json deleted file mode 100644 index d9761505..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_HeapWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_HeapWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleEast.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleEast.json deleted file mode 100644 index ab4da06a..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_RecycleEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleNorth.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleNorth.json deleted file mode 100644 index 30aa83e5..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_RecycleNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleSouth.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleSouth.json deleted file mode 100644 index 1e8411ff..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_RecycleSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleWest.json b/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleWest.json deleted file mode 100644 index 2450d373..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityScrap_RecycleWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityScrap_RecycleWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityWater_PumpEast.json b/src/main/resources/assets/imsm/models/item/UtilityWater_PumpEast.json deleted file mode 100644 index 7048be77..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityWater_PumpEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityWater_PumpEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityWater_PumpNorth.json b/src/main/resources/assets/imsm/models/item/UtilityWater_PumpNorth.json deleted file mode 100644 index c94ff2cd..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityWater_PumpNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityWater_PumpNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityWater_PumpSouth.json b/src/main/resources/assets/imsm/models/item/UtilityWater_PumpSouth.json deleted file mode 100644 index 36c59072..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityWater_PumpSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityWater_PumpSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityWater_PumpWest.json b/src/main/resources/assets/imsm/models/item/UtilityWater_PumpWest.json deleted file mode 100644 index 7ecb9f1c..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityWater_PumpWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityWater_PumpWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityWater_TowerNorthEastSouthWest.json b/src/main/resources/assets/imsm/models/item/UtilityWater_TowerNorthEastSouthWest.json deleted file mode 100644 index 01c11b6f..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityWater_TowerNorthEastSouthWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityWater_TowerNorthEastSouthWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentEast.json b/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentEast.json deleted file mode 100644 index a05f6beb..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentEast.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityWater_TreatmentEast", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentNorth.json b/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentNorth.json deleted file mode 100644 index 6aa83d65..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentNorth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityWater_TreatmentNorth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentSouth.json b/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentSouth.json deleted file mode 100644 index d0c52701..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentSouth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityWater_TreatmentSouth", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentWest.json b/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentWest.json deleted file mode 100644 index 63778665..00000000 --- a/src/main/resources/assets/imsm/models/item/UtilityWater_TreatmentWest.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/UtilityWater_TreatmentWest", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/WoodenHouse.json b/src/main/resources/assets/imsm/models/item/WoodenHouse.json deleted file mode 100644 index dbcc5dda..00000000 --- a/src/main/resources/assets/imsm/models/item/WoodenHouse.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "imsm:block/WoodenHouse", - "display": { - "thirdperson": { - "rotation": [ 10, -45, 170 ], - "translation": [ 0, 1.5, -2.75 ], - "scale": [ 0.375, 0.375, 0.375 ] - } - } -} diff --git a/src/main/resources/assets/imsm/models/item/blockairballoon.json b/src/main/resources/assets/imsm/models/item/blockairballoon.json new file mode 100644 index 00000000..61505292 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockairballoon.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockairballoon", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockairplane.json b/src/main/resources/assets/imsm/models/item/blockairplane.json new file mode 100644 index 00000000..75e3153a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockairplane.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockairplane", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockapplepie.json b/src/main/resources/assets/imsm/models/item/blockapplepie.json new file mode 100644 index 00000000..8dbaf85a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockapplepie.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockapplepie", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockarena1.json b/src/main/resources/assets/imsm/models/item/blockarena1.json new file mode 100644 index 00000000..c00838bb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockarena1.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockarena1", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockarena2.json b/src/main/resources/assets/imsm/models/item/blockarena2.json new file mode 100644 index 00000000..9e1f02ce --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockarena2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockarena2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockatlantis.json b/src/main/resources/assets/imsm/models/item/blockatlantis.json new file mode 100644 index 00000000..c8f6f4ee --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockatlantis.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockatlantis", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockbigpyramid.json b/src/main/resources/assets/imsm/models/item/blockbigpyramid.json new file mode 100644 index 00000000..c8d41b3c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockbigpyramid.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockbigpyramid", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockbigworld.json b/src/main/resources/assets/imsm/models/item/blockbigworld.json new file mode 100644 index 00000000..d30d288e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockbigworld.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockbigworld", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockblackrock.json b/src/main/resources/assets/imsm/models/item/blockblackrock.json new file mode 100644 index 00000000..249d24af --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockblackrock.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockblackrock", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockboat.json b/src/main/resources/assets/imsm/models/item/blockboat.json new file mode 100644 index 00000000..9fc5b199 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockboat.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockboat", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockbunker.json b/src/main/resources/assets/imsm/models/item/blockbunker.json new file mode 100644 index 00000000..ee7a35bd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockbunker.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockbunker", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockcactus2.json b/src/main/resources/assets/imsm/models/item/blockcactus2.json new file mode 100644 index 00000000..9fd6c53b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockcactus2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockcactus2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockcake2.json b/src/main/resources/assets/imsm/models/item/blockcake2.json new file mode 100644 index 00000000..64891206 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockcake2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockcake2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockcastletower.json b/src/main/resources/assets/imsm/models/item/blockcastletower.json new file mode 100644 index 00000000..3b069a3a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockcastletower.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockcastletower", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockcave.json b/src/main/resources/assets/imsm/models/item/blockcave.json new file mode 100644 index 00000000..564b1d1c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockcave.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockcave", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockchallengeeight.json b/src/main/resources/assets/imsm/models/item/blockchallengeeight.json new file mode 100644 index 00000000..5b81ee17 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockchallengeeight.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockchallengeeight", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockchallengefive.json b/src/main/resources/assets/imsm/models/item/blockchallengefive.json new file mode 100644 index 00000000..ca718f65 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockchallengefive.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockchallengefive", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockchallengefour.json b/src/main/resources/assets/imsm/models/item/blockchallengefour.json new file mode 100644 index 00000000..1d360852 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockchallengefour.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockchallengefour", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockchallengenine.json b/src/main/resources/assets/imsm/models/item/blockchallengenine.json new file mode 100644 index 00000000..b547a735 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockchallengenine.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockchallengenine", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockchallengeone.json b/src/main/resources/assets/imsm/models/item/blockchallengeone.json new file mode 100644 index 00000000..4aa2b15f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockchallengeone.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockchallengeone", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockchallengeseven.json b/src/main/resources/assets/imsm/models/item/blockchallengeseven.json new file mode 100644 index 00000000..af19acf8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockchallengeseven.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockchallengeseven", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockchallengesix.json b/src/main/resources/assets/imsm/models/item/blockchallengesix.json new file mode 100644 index 00000000..babff6f7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockchallengesix.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockchallengesix", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockchallengeten.json b/src/main/resources/assets/imsm/models/item/blockchallengeten.json new file mode 100644 index 00000000..31ab95c7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockchallengeten.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockchallengeten", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockchallengethree.json b/src/main/resources/assets/imsm/models/item/blockchallengethree.json new file mode 100644 index 00000000..c95e50ff --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockchallengethree.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockchallengethree", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockchallengetwo.json b/src/main/resources/assets/imsm/models/item/blockchallengetwo.json new file mode 100644 index 00000000..72aec06d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockchallengetwo.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockchallengetwo", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockcheckerboard.json b/src/main/resources/assets/imsm/models/item/blockcheckerboard.json new file mode 100644 index 00000000..a5f68dde --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockcheckerboard.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockcheckerboard", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockcloud.json b/src/main/resources/assets/imsm/models/item/blockcloud.json new file mode 100644 index 00000000..4808f0bf --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockcloud.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockcloud", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockcolumn.json b/src/main/resources/assets/imsm/models/item/blockcolumn.json new file mode 100644 index 00000000..d14d6e7e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockcolumn.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockcolumn", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockcosyhouse.json b/src/main/resources/assets/imsm/models/item/blockcosyhouse.json new file mode 100644 index 00000000..42bddca8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockcosyhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockcosyhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockdungeon.json b/src/main/resources/assets/imsm/models/item/blockdungeon.json new file mode 100644 index 00000000..43960769 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockdungeon.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockdungeon", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockenchantmentroom.json b/src/main/resources/assets/imsm/models/item/blockenchantmentroom.json new file mode 100644 index 00000000..5cc0d143 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockenchantmentroom.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockenchantmentroom", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockfarm.json b/src/main/resources/assets/imsm/models/item/blockfarm.json new file mode 100644 index 00000000..0b3b1a69 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockfarm.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockfarm", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockfarm2.json b/src/main/resources/assets/imsm/models/item/blockfarm2.json new file mode 100644 index 00000000..c28b34f2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockfarm2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockfarm2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockfarm3.json b/src/main/resources/assets/imsm/models/item/blockfarm3.json new file mode 100644 index 00000000..6926acb4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockfarm3.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockfarm3", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockfarm4.json b/src/main/resources/assets/imsm/models/item/blockfarm4.json new file mode 100644 index 00000000..1f073ce9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockfarm4.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockfarm4", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockferriswheel.json b/src/main/resources/assets/imsm/models/item/blockferriswheel.json new file mode 100644 index 00000000..5b119011 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockferriswheel.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockferriswheel", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockfloatingsphere.json b/src/main/resources/assets/imsm/models/item/blockfloatingsphere.json new file mode 100644 index 00000000..647125db --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockfloatingsphere.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockfloatingsphere", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockgianttree.json b/src/main/resources/assets/imsm/models/item/blockgianttree.json new file mode 100644 index 00000000..6b3998df --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockgianttree.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockgianttree", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockglasshouse.json b/src/main/resources/assets/imsm/models/item/blockglasshouse.json new file mode 100644 index 00000000..eea7a33d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockglasshouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockglasshouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockhountedhouse.json b/src/main/resources/assets/imsm/models/item/blockhountedhouse.json new file mode 100644 index 00000000..d3f38fe3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockhountedhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockhountedhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockhouse.json b/src/main/resources/assets/imsm/models/item/blockhouse.json new file mode 100644 index 00000000..d8674648 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockhouse2.json b/src/main/resources/assets/imsm/models/item/blockhouse2.json new file mode 100644 index 00000000..892666e0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockhouse2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockhouse2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockhousetrap1.json b/src/main/resources/assets/imsm/models/item/blockhousetrap1.json new file mode 100644 index 00000000..20fd4793 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockhousetrap1.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockhousetrap1", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockhousetrap2.json b/src/main/resources/assets/imsm/models/item/blockhousetrap2.json new file mode 100644 index 00000000..137e159f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockhousetrap2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockhousetrap2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockleaves2.json b/src/main/resources/assets/imsm/models/item/blockleaves2.json new file mode 100644 index 00000000..45617d30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockleaves2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockleaves2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blocklighthouse.json b/src/main/resources/assets/imsm/models/item/blocklighthouse.json new file mode 100644 index 00000000..6f55e4fa --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blocklighthouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blocklighthouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockmegahouse.json b/src/main/resources/assets/imsm/models/item/blockmegahouse.json new file mode 100644 index 00000000..7c7e468c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockmegahouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockmegahouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockmegahouse2.json b/src/main/resources/assets/imsm/models/item/blockmegahouse2.json new file mode 100644 index 00000000..ec812fd0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockmegahouse2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockmegahouse2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockmegatower.json b/src/main/resources/assets/imsm/models/item/blockmegatower.json new file mode 100644 index 00000000..04e60d62 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockmegatower.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockmegatower", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockpeniron.json b/src/main/resources/assets/imsm/models/item/blockpeniron.json new file mode 100644 index 00000000..58e3e2ae --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockpeniron.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockpeniron", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockpennether.json b/src/main/resources/assets/imsm/models/item/blockpennether.json new file mode 100644 index 00000000..cc7e4c09 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockpennether.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockpennether", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockpenwood.json b/src/main/resources/assets/imsm/models/item/blockpenwood.json new file mode 100644 index 00000000..abdb399b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockpenwood.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockpenwood", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockplane.json b/src/main/resources/assets/imsm/models/item/blockplane.json new file mode 100644 index 00000000..5c074212 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockplane.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockplane", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockprison.json b/src/main/resources/assets/imsm/models/item/blockprison.json new file mode 100644 index 00000000..b46ac6bd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockprison.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockprison", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockprison2.json b/src/main/resources/assets/imsm/models/item/blockprison2.json new file mode 100644 index 00000000..218993b6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockprison2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockprison2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockpyramid.json b/src/main/resources/assets/imsm/models/item/blockpyramid.json new file mode 100644 index 00000000..9a861a7f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockpyramid.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockpyramid", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockrollercoaster.json b/src/main/resources/assets/imsm/models/item/blockrollercoaster.json new file mode 100644 index 00000000..f072a58a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockrollercoaster.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockrollercoaster", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockrollercoaster2.json b/src/main/resources/assets/imsm/models/item/blockrollercoaster2.json new file mode 100644 index 00000000..d0c97616 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockrollercoaster2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockrollercoaster2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockshelter.json b/src/main/resources/assets/imsm/models/item/blockshelter.json new file mode 100644 index 00000000..ce4ce600 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockshelter.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockshelter", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockskyscraper.json b/src/main/resources/assets/imsm/models/item/blockskyscraper.json new file mode 100644 index 00000000..e775c849 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockskyscraper.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockskyscraper", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockskyscraper2.json b/src/main/resources/assets/imsm/models/item/blockskyscraper2.json new file mode 100644 index 00000000..4cc0fc9c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockskyscraper2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockskyscraper2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockstadium.json b/src/main/resources/assets/imsm/models/item/blockstadium.json new file mode 100644 index 00000000..6aae166d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockstadium.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockstadium", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockstadium2.json b/src/main/resources/assets/imsm/models/item/blockstadium2.json new file mode 100644 index 00000000..cdcdf84e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockstadium2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockstadium2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockstandardbrickhouse.json b/src/main/resources/assets/imsm/models/item/blockstandardbrickhouse.json new file mode 100644 index 00000000..2f30d565 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockstandardbrickhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockstandardbrickhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockstorehouse.json b/src/main/resources/assets/imsm/models/item/blockstorehouse.json new file mode 100644 index 00000000..f2a9f862 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockstorehouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockstorehouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockstreet.json b/src/main/resources/assets/imsm/models/item/blockstreet.json new file mode 100644 index 00000000..f11ee7fb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockstreet.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockstreet", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blocktorch2.json b/src/main/resources/assets/imsm/models/item/blocktorch2.json new file mode 100644 index 00000000..a435e84c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blocktorch2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blocktorch2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blocktouchable.json b/src/main/resources/assets/imsm/models/item/blocktouchable.json new file mode 100644 index 00000000..b2482fa1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blocktouchable.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blocktouchable", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blocktower.json b/src/main/resources/assets/imsm/models/item/blocktower.json new file mode 100644 index 00000000..e4cbc3df --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blocktower.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blocktower", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockunlimited.json b/src/main/resources/assets/imsm/models/item/blockunlimited.json new file mode 100644 index 00000000..2d953212 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockunlimited.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockunlimited", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/blockwaterslide.json b/src/main/resources/assets/imsm/models/item/blockwaterslide.json new file mode 100644 index 00000000..deb94ec7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/blockwaterslide.json @@ -0,0 +1 @@ +{"parent": "imsm:block/blockwaterslide", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/christmashouse.json b/src/main/resources/assets/imsm/models/item/christmashouse.json new file mode 100644 index 00000000..a8754a29 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/christmashouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/christmashouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/christmashouse2.json b/src/main/resources/assets/imsm/models/item/christmashouse2.json new file mode 100644 index 00000000..51511cdc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/christmashouse2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/christmashouse2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/christmashouse3.json b/src/main/resources/assets/imsm/models/item/christmashouse3.json new file mode 100644 index 00000000..3f495e30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/christmashouse3.json @@ -0,0 +1 @@ +{"parent": "imsm:block/christmashouse3", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/christmasmarket.json b/src/main/resources/assets/imsm/models/item/christmasmarket.json new file mode 100644 index 00000000..762cd319 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/christmasmarket.json @@ -0,0 +1 @@ +{"parent": "imsm:block/christmasmarket", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/christmassleigh.json b/src/main/resources/assets/imsm/models/item/christmassleigh.json new file mode 100644 index 00000000..172f229e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/christmassleigh.json @@ -0,0 +1 @@ +{"parent": "imsm:block/christmassleigh", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/christmassleigh2.json b/src/main/resources/assets/imsm/models/item/christmassleigh2.json new file mode 100644 index 00000000..f1ea6260 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/christmassleigh2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/christmassleigh2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/christmassnowman.json b/src/main/resources/assets/imsm/models/item/christmassnowman.json new file mode 100644 index 00000000..3ee6281d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/christmassnowman.json @@ -0,0 +1 @@ +{"parent": "imsm:block/christmassnowman", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/christmastree.json b/src/main/resources/assets/imsm/models/item/christmastree.json new file mode 100644 index 00000000..35620f79 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/christmastree.json @@ -0,0 +1 @@ +{"parent": "imsm:block/christmastree", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationgrassnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/decorationgrassnortheastsouthwest.json new file mode 100644 index 00000000..cda4c55d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationgrassnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationgrassnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparkeast.json b/src/main/resources/assets/imsm/models/item/decorationparkeast.json new file mode 100644 index 00000000..6840c575 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparkeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparkeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparkinggarageeast.json b/src/main/resources/assets/imsm/models/item/decorationparkinggarageeast.json new file mode 100644 index 00000000..55157342 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparkinggarageeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparkinggarageeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparkinggaragenorth.json b/src/main/resources/assets/imsm/models/item/decorationparkinggaragenorth.json new file mode 100644 index 00000000..9d185a41 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparkinggaragenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparkinggaragenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparkinggaragesouth.json b/src/main/resources/assets/imsm/models/item/decorationparkinggaragesouth.json new file mode 100644 index 00000000..9c0254c9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparkinggaragesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparkinggaragesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparkinggaragewest.json b/src/main/resources/assets/imsm/models/item/decorationparkinggaragewest.json new file mode 100644 index 00000000..f83cba1b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparkinggaragewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparkinggaragewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparkinglotseast.json b/src/main/resources/assets/imsm/models/item/decorationparkinglotseast.json new file mode 100644 index 00000000..24bcfb1c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparkinglotseast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparkinglotseast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparkinglotsnorth.json b/src/main/resources/assets/imsm/models/item/decorationparkinglotsnorth.json new file mode 100644 index 00000000..13f6af5b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparkinglotsnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparkinglotsnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparkinglotssouth.json b/src/main/resources/assets/imsm/models/item/decorationparkinglotssouth.json new file mode 100644 index 00000000..f59ae6db --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparkinglotssouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparkinglotssouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparkinglotswest.json b/src/main/resources/assets/imsm/models/item/decorationparkinglotswest.json new file mode 100644 index 00000000..4982fc21 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparkinglotswest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparkinglotswest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparknorth.json b/src/main/resources/assets/imsm/models/item/decorationparknorth.json new file mode 100644 index 00000000..6104efb6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparknorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparknorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparksouth.json b/src/main/resources/assets/imsm/models/item/decorationparksouth.json new file mode 100644 index 00000000..024bb078 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparksouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparksouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationparkwest.json b/src/main/resources/assets/imsm/models/item/decorationparkwest.json new file mode 100644 index 00000000..602bb641 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationparkwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationparkwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationplazafountainnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/decorationplazafountainnortheastsouthwest.json new file mode 100644 index 00000000..d93f6134 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationplazafountainnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationplazafountainnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationplazanortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/decorationplazanortheastsouthwest.json new file mode 100644 index 00000000..7c9cbd7c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationplazanortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationplazanortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationsoccerstadiumeastwest.json b/src/main/resources/assets/imsm/models/item/decorationsoccerstadiumeastwest.json new file mode 100644 index 00000000..0494aa38 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationsoccerstadiumeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationsoccerstadiumeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationsoccerstadiumnorthsouth.json b/src/main/resources/assets/imsm/models/item/decorationsoccerstadiumnorthsouth.json new file mode 100644 index 00000000..baac5be3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationsoccerstadiumnorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationsoccerstadiumnorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationsquarenortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/decorationsquarenortheastsouthwest.json new file mode 100644 index 00000000..c39087e1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationsquarenortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationsquarenortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationsquaretreeeast.json b/src/main/resources/assets/imsm/models/item/decorationsquaretreeeast.json new file mode 100644 index 00000000..65e1f91b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationsquaretreeeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationsquaretreeeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationsquaretreenorth.json b/src/main/resources/assets/imsm/models/item/decorationsquaretreenorth.json new file mode 100644 index 00000000..b13cc997 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationsquaretreenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationsquaretreenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationsquaretreesouth.json b/src/main/resources/assets/imsm/models/item/decorationsquaretreesouth.json new file mode 100644 index 00000000..60828fe2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationsquaretreesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationsquaretreesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/decorationsquaretreewest.json b/src/main/resources/assets/imsm/models/item/decorationsquaretreewest.json new file mode 100644 index 00000000..6e8897f9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/decorationsquaretreewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/decorationsquaretreewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/foodcarrotseastwest.json b/src/main/resources/assets/imsm/models/item/foodcarrotseastwest.json new file mode 100644 index 00000000..72eab81d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/foodcarrotseastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/foodcarrotseastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/foodcarrotsnorthsouth.json b/src/main/resources/assets/imsm/models/item/foodcarrotsnorthsouth.json new file mode 100644 index 00000000..9236b245 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/foodcarrotsnorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/foodcarrotsnorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/foodfarmeast.json b/src/main/resources/assets/imsm/models/item/foodfarmeast.json new file mode 100644 index 00000000..6dc32952 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/foodfarmeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/foodfarmeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/foodfarmnorth.json b/src/main/resources/assets/imsm/models/item/foodfarmnorth.json new file mode 100644 index 00000000..25e90bd9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/foodfarmnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/foodfarmnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/foodfarmsouth.json b/src/main/resources/assets/imsm/models/item/foodfarmsouth.json new file mode 100644 index 00000000..1d594262 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/foodfarmsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/foodfarmsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/foodfarmwest.json b/src/main/resources/assets/imsm/models/item/foodfarmwest.json new file mode 100644 index 00000000..4fb3e2cd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/foodfarmwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/foodfarmwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/foodpotatoesnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/foodpotatoesnortheastsouthwest.json new file mode 100644 index 00000000..967f6fa2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/foodpotatoesnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/foodpotatoesnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/foodstableeastwest.json b/src/main/resources/assets/imsm/models/item/foodstableeastwest.json new file mode 100644 index 00000000..c5ab1519 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/foodstableeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/foodstableeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/foodstablenorthsouth.json b/src/main/resources/assets/imsm/models/item/foodstablenorthsouth.json new file mode 100644 index 00000000..090db19b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/foodstablenorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/foodstablenorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/foodwheatnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/foodwheatnortheastsouthwest.json new file mode 100644 index 00000000..7018c1e9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/foodwheatnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/foodwheatnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densityblueeast.json b/src/main/resources/assets/imsm/models/item/industryhigh_densityblueeast.json new file mode 100644 index 00000000..59422648 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densityblueeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densityblueeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitybluenorth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitybluenorth.json new file mode 100644 index 00000000..0205a3d0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitybluenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitybluenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitybluesouth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitybluesouth.json new file mode 100644 index 00000000..a7b9a28c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitybluesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitybluesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitybluewest.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitybluewest.json new file mode 100644 index 00000000..cc4721a5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitybluewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitybluewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitybrickeast.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitybrickeast.json new file mode 100644 index 00000000..16fe77ff --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitybrickeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitybricknorth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitybricknorth.json new file mode 100644 index 00000000..8c76119d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitybricknorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitybricksouth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitybricksouth.json new file mode 100644 index 00000000..75a48b2a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitybricksouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitybrickwest.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitybrickwest.json new file mode 100644 index 00000000..9478389f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitybrickwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneyeast.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneyeast.json new file mode 100644 index 00000000..556af020 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneyeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitychimneyeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneynorth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneynorth.json new file mode 100644 index 00000000..56d2eaca --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneynorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitychimneynorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneysouth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneysouth.json new file mode 100644 index 00000000..a983002e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneysouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitychimneysouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneywest.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneywest.json new file mode 100644 index 00000000..cbcfaad5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitychimneywest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitychimneywest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipeast.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipeast.json new file mode 100644 index 00000000..30524a12 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitycomputerchipeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipnorth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipnorth.json new file mode 100644 index 00000000..fe227865 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitycomputerchipnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipsouth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipsouth.json new file mode 100644 index 00000000..ff476ef1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitycomputerchipsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipwest.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipwest.json new file mode 100644 index 00000000..fe73a50b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitycomputerchipwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitycomputerchipwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitygreeneast.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitygreeneast.json new file mode 100644 index 00000000..2a9c13be --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitygreeneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitygreennorth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitygreennorth.json new file mode 100644 index 00000000..93c8713e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitygreennorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitygreensouth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitygreensouth.json new file mode 100644 index 00000000..5bc6ad2c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitygreensouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitygreenwest.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitygreenwest.json new file mode 100644 index 00000000..4a98318f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitygreenwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitylightblueeast.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitylightblueeast.json new file mode 100644 index 00000000..b3221301 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitylightblueeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitylightblueeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitylightbluenorth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitylightbluenorth.json new file mode 100644 index 00000000..520a75e4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitylightbluenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitylightbluenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitylightbluesouth.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitylightbluesouth.json new file mode 100644 index 00000000..60f70c88 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitylightbluesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitylightbluesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industryhigh_densitylightbluewest.json b/src/main/resources/assets/imsm/models/item/industryhigh_densitylightbluewest.json new file mode 100644 index 00000000..fcccb4fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industryhigh_densitylightbluewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industryhigh_densitylightbluewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingeast.json b/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingeast.json new file mode 100644 index 00000000..8ae133e6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_density3dprintingeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingnorth.json b/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingnorth.json new file mode 100644 index 00000000..82acda93 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_density3dprintingnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingsouth.json b/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingsouth.json new file mode 100644 index 00000000..efed797f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_density3dprintingsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingwest.json b/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingwest.json new file mode 100644 index 00000000..69cc6e58 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_density3dprintingwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_density3dprintingwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densityblueeast.json b/src/main/resources/assets/imsm/models/item/industrylow_densityblueeast.json new file mode 100644 index 00000000..57064984 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densityblueeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densityblueeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybluenorth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybluenorth.json new file mode 100644 index 00000000..d2a59833 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybluenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybluenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybluesouth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybluesouth.json new file mode 100644 index 00000000..713b693b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybluesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybluesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybluewest.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybluewest.json new file mode 100644 index 00000000..4da6c26e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybluewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybluewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrickeast.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrickeast.json new file mode 100644 index 00000000..388d0542 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrickeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrickeastwest.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrickeastwest.json new file mode 100644 index 00000000..7f8dfb44 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrickeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrickeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybricknorth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybricknorth.json new file mode 100644 index 00000000..35b44647 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybricknorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybricknorthsouth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybricknorthsouth.json new file mode 100644 index 00000000..72905f32 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybricknorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybricknorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybricksouth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybricksouth.json new file mode 100644 index 00000000..cbd5a3f8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybricksouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrickwest.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrickwest.json new file mode 100644 index 00000000..ae3829ba --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrickwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrowneast.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrowneast.json new file mode 100644 index 00000000..66baaa2b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrowneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrowneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrowneast2.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrowneast2.json new file mode 100644 index 00000000..c9524cb9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrowneast2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrowneast2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrownnorth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownnorth.json new file mode 100644 index 00000000..d74d2b36 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrownnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrownnorth2.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownnorth2.json new file mode 100644 index 00000000..766874e7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownnorth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrownnorth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrownsouth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownsouth.json new file mode 100644 index 00000000..c0fd9dc0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrownsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrownsouth2.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownsouth2.json new file mode 100644 index 00000000..0dffdeae --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownsouth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrownsouth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrownwest.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownwest.json new file mode 100644 index 00000000..74a566a5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrownwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitybrownwest2.json b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownwest2.json new file mode 100644 index 00000000..c75d0b06 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitybrownwest2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitybrownwest2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitychimneyeast.json b/src/main/resources/assets/imsm/models/item/industrylow_densitychimneyeast.json new file mode 100644 index 00000000..d6029cb8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitychimneyeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitychimneyeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitychimneynorth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitychimneynorth.json new file mode 100644 index 00000000..8474aa51 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitychimneynorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitychimneynorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitychimneysouth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitychimneysouth.json new file mode 100644 index 00000000..681f9dba --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitychimneysouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitychimneysouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitychimneywest.json b/src/main/resources/assets/imsm/models/item/industrylow_densitychimneywest.json new file mode 100644 index 00000000..0570d723 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitychimneywest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitychimneywest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitygreeneast.json b/src/main/resources/assets/imsm/models/item/industrylow_densitygreeneast.json new file mode 100644 index 00000000..fb8bd228 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitygreeneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitygreennorth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitygreennorth.json new file mode 100644 index 00000000..7fbd5b57 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitygreennorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitygreensouth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitygreensouth.json new file mode 100644 index 00000000..0234fef1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitygreensouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitygreenwest.json b/src/main/resources/assets/imsm/models/item/industrylow_densitygreenwest.json new file mode 100644 index 00000000..8f862a3a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitygreenwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densityironeast.json b/src/main/resources/assets/imsm/models/item/industrylow_densityironeast.json new file mode 100644 index 00000000..56bee191 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densityironeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densityironeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densityironnorth.json b/src/main/resources/assets/imsm/models/item/industrylow_densityironnorth.json new file mode 100644 index 00000000..65a3bdec --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densityironnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densityironnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densityironsouth.json b/src/main/resources/assets/imsm/models/item/industrylow_densityironsouth.json new file mode 100644 index 00000000..12f878c5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densityironsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densityironsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densityironwest.json b/src/main/resources/assets/imsm/models/item/industrylow_densityironwest.json new file mode 100644 index 00000000..5e10c03f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densityironwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densityironwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennaeast.json b/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennaeast.json new file mode 100644 index 00000000..9322f954 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennaeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densityparabolicantennaeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennanorth.json b/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennanorth.json new file mode 100644 index 00000000..a3000564 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennanorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densityparabolicantennanorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennasouth.json b/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennasouth.json new file mode 100644 index 00000000..3301d0dc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennasouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densityparabolicantennasouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennawest.json b/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennawest.json new file mode 100644 index 00000000..0115eb34 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densityparabolicantennawest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densityparabolicantennawest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitytanknortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/industrylow_densitytanknortheastsouthwest.json new file mode 100644 index 00000000..d27eec29 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitytanknortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitytanknortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopeeast.json b/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopeeast.json new file mode 100644 index 00000000..2e244134 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopeeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitytelescopeeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopenorth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopenorth.json new file mode 100644 index 00000000..196e27b5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitytelescopenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopesouth.json b/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopesouth.json new file mode 100644 index 00000000..8e7745b0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitytelescopesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopewest.json b/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopewest.json new file mode 100644 index 00000000..60ec71bf --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrylow_densitytelescopewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrylow_densitytelescopewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densityblueeast.json b/src/main/resources/assets/imsm/models/item/industrymedium_densityblueeast.json new file mode 100644 index 00000000..5b5cebfc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densityblueeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densityblueeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybluenorth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybluenorth.json new file mode 100644 index 00000000..2be5266f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybluenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybluenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybluesouth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybluesouth.json new file mode 100644 index 00000000..1dcf9bed --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybluesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybluesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybluewest.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybluewest.json new file mode 100644 index 00000000..c58a1648 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybluewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybluewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybrickeast.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrickeast.json new file mode 100644 index 00000000..80efc488 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybrickeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybricknorth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybricknorth.json new file mode 100644 index 00000000..5a7edd7f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybricknorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybricksouth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybricksouth.json new file mode 100644 index 00000000..b6d0e841 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybricksouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybrickwest.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrickwest.json new file mode 100644 index 00000000..779ef75c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybrickwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybrowneast.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrowneast.json new file mode 100644 index 00000000..7f7216e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrowneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybrowneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybrownnorth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrownnorth.json new file mode 100644 index 00000000..4982fc47 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrownnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybrownnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybrownsouth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrownsouth.json new file mode 100644 index 00000000..03a86c81 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrownsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybrownsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitybrownwest.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrownwest.json new file mode 100644 index 00000000..2d12070d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitybrownwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitybrownwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitychemicalpresseastwest.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitychemicalpresseastwest.json new file mode 100644 index 00000000..7ff758c0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitychemicalpresseastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitychemicalpresseastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitychemicalpressnorthsouth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitychemicalpressnorthsouth.json new file mode 100644 index 00000000..d095d26e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitychemicalpressnorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitychemicalpressnorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneyeast.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneyeast.json new file mode 100644 index 00000000..6c96c2cc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneyeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitychimneyeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneynorth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneynorth.json new file mode 100644 index 00000000..d5ef3e74 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneynorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitychimneynorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneysouth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneysouth.json new file mode 100644 index 00000000..863d7692 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneysouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitychimneysouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneywest.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneywest.json new file mode 100644 index 00000000..4b83a160 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitychimneywest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitychimneywest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitygreeneast.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitygreeneast.json new file mode 100644 index 00000000..4ba8a115 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitygreeneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitygreennorth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitygreennorth.json new file mode 100644 index 00000000..56aff69a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitygreennorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitygreensouth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitygreensouth.json new file mode 100644 index 00000000..0ad8dddd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitygreensouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitygreenwest.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitygreenwest.json new file mode 100644 index 00000000..aeb6e7ca --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitygreenwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densityiceeast.json b/src/main/resources/assets/imsm/models/item/industrymedium_densityiceeast.json new file mode 100644 index 00000000..1801ccde --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densityiceeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densityiceeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densityicenorth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densityicenorth.json new file mode 100644 index 00000000..66adadc3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densityicenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densityicenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densityicesouth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densityicesouth.json new file mode 100644 index 00000000..2c5a0239 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densityicesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densityicesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densityicewest.json b/src/main/resources/assets/imsm/models/item/industrymedium_densityicewest.json new file mode 100644 index 00000000..a9719d16 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densityicewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densityicewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstoneeast.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstoneeast.json new file mode 100644 index 00000000..8cd1aa36 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstoneeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitysandstoneeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstonenorth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstonenorth.json new file mode 100644 index 00000000..96f67650 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstonenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitysandstonenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstonesouth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstonesouth.json new file mode 100644 index 00000000..5fd446cf --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstonesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitysandstonesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstonewest.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstonewest.json new file mode 100644 index 00000000..47596b18 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitysandstonewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitysandstonewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitytankeast.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitytankeast.json new file mode 100644 index 00000000..333b114e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitytankeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitytankeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitytanknorth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitytanknorth.json new file mode 100644 index 00000000..6f39fbd5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitytanknorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitytanknorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitytanksouth.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitytanksouth.json new file mode 100644 index 00000000..9e2c7efe --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitytanksouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitytanksouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/industrymedium_densitytankwest.json b/src/main/resources/assets/imsm/models/item/industrymedium_densitytankwest.json new file mode 100644 index 00000000..b679d833 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/industrymedium_densitytankwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/industrymedium_densitytankwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/live_bus.json b/src/main/resources/assets/imsm/models/item/live_bus.json new file mode 100644 index 00000000..90aed872 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/live_bus.json @@ -0,0 +1 @@ +{"parent": "imsm:block/live_bus", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/live_bus2.json b/src/main/resources/assets/imsm/models/item/live_bus2.json new file mode 100644 index 00000000..4bb38ee0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/live_bus2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/live_bus2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/live_cinema.json b/src/main/resources/assets/imsm/models/item/live_cinema.json new file mode 100644 index 00000000..f63482e5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/live_cinema.json @@ -0,0 +1 @@ +{"parent": "imsm:block/live_cinema", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/live_fair_freefall.json b/src/main/resources/assets/imsm/models/item/live_fair_freefall.json new file mode 100644 index 00000000..1961a2b8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/live_fair_freefall.json @@ -0,0 +1 @@ +{"parent": "imsm:block/live_fair_freefall", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/live_flying_helicopter.json b/src/main/resources/assets/imsm/models/item/live_flying_helicopter.json new file mode 100644 index 00000000..10195c10 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/live_flying_helicopter.json @@ -0,0 +1 @@ +{"parent": "imsm:block/live_flying_helicopter", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/live_helicopter.json b/src/main/resources/assets/imsm/models/item/live_helicopter.json new file mode 100644 index 00000000..b3b5648a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/live_helicopter.json @@ -0,0 +1 @@ +{"parent": "imsm:block/live_helicopter", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/live_mill.json b/src/main/resources/assets/imsm/models/item/live_mill.json new file mode 100644 index 00000000..53718329 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/live_mill.json @@ -0,0 +1 @@ +{"parent": "imsm:block/live_mill", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/live_power_windmill_east.json b/src/main/resources/assets/imsm/models/item/live_power_windmill_east.json new file mode 100644 index 00000000..5e51c3dd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/live_power_windmill_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/live_power_windmill_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/live_watermill.json b/src/main/resources/assets/imsm/models/item/live_watermill.json new file mode 100644 index 00000000..e422a566 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/live_watermill.json @@ -0,0 +1 @@ +{"parent": "imsm:block/live_watermill", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/liveairballoon.json b/src/main/resources/assets/imsm/models/item/liveairballoon.json new file mode 100644 index 00000000..d3a3e554 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/liveairballoon.json @@ -0,0 +1 @@ +{"parent": "imsm:block/liveairballoon", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/liveairplane.json b/src/main/resources/assets/imsm/models/item/liveairplane.json new file mode 100644 index 00000000..83e1f896 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/liveairplane.json @@ -0,0 +1 @@ +{"parent": "imsm:block/liveairplane", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/liveboat.json b/src/main/resources/assets/imsm/models/item/liveboat.json new file mode 100644 index 00000000..11967e53 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/liveboat.json @@ -0,0 +1 @@ +{"parent": "imsm:block/liveboat", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/liveflyingship.json b/src/main/resources/assets/imsm/models/item/liveflyingship.json new file mode 100644 index 00000000..8a04bdc8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/liveflyingship.json @@ -0,0 +1 @@ +{"parent": "imsm:block/liveflyingship", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/liveflyingship2.json b/src/main/resources/assets/imsm/models/item/liveflyingship2.json new file mode 100644 index 00000000..9b079a2e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/liveflyingship2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/liveflyingship2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/liveplane.json b/src/main/resources/assets/imsm/models/item/liveplane.json new file mode 100644 index 00000000..d8c1508d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/liveplane.json @@ -0,0 +1 @@ +{"parent": "imsm:block/liveplane", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/livestructureremover.json b/src/main/resources/assets/imsm/models/item/livestructureremover.json new file mode 100644 index 00000000..8f578e6f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/livestructureremover.json @@ -0,0 +1 @@ +{"parent": "imsm:block/livestructureremover", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densitybrickeastwest.json b/src/main/resources/assets/imsm/models/item/officehigh_densitybrickeastwest.json new file mode 100644 index 00000000..3afd614f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densitybrickeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densitybrickeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densitybricknorthsouth.json b/src/main/resources/assets/imsm/models/item/officehigh_densitybricknorthsouth.json new file mode 100644 index 00000000..ebdad254 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densitybricknorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densitybricknorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densitycyaneast.json b/src/main/resources/assets/imsm/models/item/officehigh_densitycyaneast.json new file mode 100644 index 00000000..7f9bfa35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densitycyaneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densitycyaneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densitycyannorth.json b/src/main/resources/assets/imsm/models/item/officehigh_densitycyannorth.json new file mode 100644 index 00000000..116a5ca5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densitycyannorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densitycyannorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densitycyansouth.json b/src/main/resources/assets/imsm/models/item/officehigh_densitycyansouth.json new file mode 100644 index 00000000..b24d7c08 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densitycyansouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densitycyansouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densitycyanwest.json b/src/main/resources/assets/imsm/models/item/officehigh_densitycyanwest.json new file mode 100644 index 00000000..97d2a68a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densitycyanwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densitycyanwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopeast.json b/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopeast.json new file mode 100644 index 00000000..eb424080 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densityholeontopeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopnorth.json b/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopnorth.json new file mode 100644 index 00000000..1308e7dd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densityholeontopnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopsouth.json b/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopsouth.json new file mode 100644 index 00000000..f038e193 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densityholeontopsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopwest.json b/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopwest.json new file mode 100644 index 00000000..446bc9d6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densityholeontopwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densityholeontopwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densitylightblueeastwest.json b/src/main/resources/assets/imsm/models/item/officehigh_densitylightblueeastwest.json new file mode 100644 index 00000000..ab5c9c7e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densitylightblueeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densitylightblueeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densitylightbluenorthsouth.json b/src/main/resources/assets/imsm/models/item/officehigh_densitylightbluenorthsouth.json new file mode 100644 index 00000000..67c139cd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densitylightbluenorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densitylightbluenorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingeast.json b/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingeast.json new file mode 100644 index 00000000..6e2c357f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densityspirolbuildingeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingnorth.json b/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingnorth.json new file mode 100644 index 00000000..abe22b61 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densityspirolbuildingnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingsouth.json b/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingsouth.json new file mode 100644 index 00000000..fb23d5e0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densityspirolbuildingsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingwest.json b/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingwest.json new file mode 100644 index 00000000..d1a1a747 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officehigh_densityspirolbuildingwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officehigh_densityspirolbuildingwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densityblueeast.json b/src/main/resources/assets/imsm/models/item/officelow_densityblueeast.json new file mode 100644 index 00000000..cc4429a8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densityblueeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densityblueeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitybluenorth.json b/src/main/resources/assets/imsm/models/item/officelow_densitybluenorth.json new file mode 100644 index 00000000..99c95b02 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitybluenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitybluenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitybluesouth.json b/src/main/resources/assets/imsm/models/item/officelow_densitybluesouth.json new file mode 100644 index 00000000..c090a66f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitybluesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitybluesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitybluewest.json b/src/main/resources/assets/imsm/models/item/officelow_densitybluewest.json new file mode 100644 index 00000000..c517ee24 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitybluewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitybluewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitygreeneast.json b/src/main/resources/assets/imsm/models/item/officelow_densitygreeneast.json new file mode 100644 index 00000000..e1d0fb71 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitygreeneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitygreennorth.json b/src/main/resources/assets/imsm/models/item/officelow_densitygreennorth.json new file mode 100644 index 00000000..4c96a3f3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitygreennorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitygreensouth.json b/src/main/resources/assets/imsm/models/item/officelow_densitygreensouth.json new file mode 100644 index 00000000..709f665b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitygreensouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitygreenwest.json b/src/main/resources/assets/imsm/models/item/officelow_densitygreenwest.json new file mode 100644 index 00000000..9f061ed3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitygreenwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitywhiteeast.json b/src/main/resources/assets/imsm/models/item/officelow_densitywhiteeast.json new file mode 100644 index 00000000..5c083020 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitywhiteeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitywhiteeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitywhitenorth.json b/src/main/resources/assets/imsm/models/item/officelow_densitywhitenorth.json new file mode 100644 index 00000000..7e9318d3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitywhitenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitywhitenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitywhitesouth.json b/src/main/resources/assets/imsm/models/item/officelow_densitywhitesouth.json new file mode 100644 index 00000000..10fc4cd7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitywhitesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitywhitesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densitywhitewest.json b/src/main/resources/assets/imsm/models/item/officelow_densitywhitewest.json new file mode 100644 index 00000000..95737ca7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densitywhitewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densitywhitewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densityyelloweast.json b/src/main/resources/assets/imsm/models/item/officelow_densityyelloweast.json new file mode 100644 index 00000000..941119c1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densityyelloweast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densityyelloweast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densityyellownorth.json b/src/main/resources/assets/imsm/models/item/officelow_densityyellownorth.json new file mode 100644 index 00000000..718c807b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densityyellownorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densityyellownorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densityyellowsouth.json b/src/main/resources/assets/imsm/models/item/officelow_densityyellowsouth.json new file mode 100644 index 00000000..221486e5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densityyellowsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densityyellowsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officelow_densityyellowwest.json b/src/main/resources/assets/imsm/models/item/officelow_densityyellowwest.json new file mode 100644 index 00000000..6448b869 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officelow_densityyellowwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officelow_densityyellowwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitycyaneast.json b/src/main/resources/assets/imsm/models/item/officemedium_densitycyaneast.json new file mode 100644 index 00000000..a409d00c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitycyaneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitycyaneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitycyannorth.json b/src/main/resources/assets/imsm/models/item/officemedium_densitycyannorth.json new file mode 100644 index 00000000..5fc29abc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitycyannorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitycyannorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitycyansouth.json b/src/main/resources/assets/imsm/models/item/officemedium_densitycyansouth.json new file mode 100644 index 00000000..239c3997 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitycyansouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitycyansouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitycyanwest.json b/src/main/resources/assets/imsm/models/item/officemedium_densitycyanwest.json new file mode 100644 index 00000000..f24f078f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitycyanwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitycyanwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitylightblueeast.json b/src/main/resources/assets/imsm/models/item/officemedium_densitylightblueeast.json new file mode 100644 index 00000000..541a65cc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitylightblueeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitylightblueeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitylightbluenorth.json b/src/main/resources/assets/imsm/models/item/officemedium_densitylightbluenorth.json new file mode 100644 index 00000000..81cddd11 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitylightbluenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitylightbluenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitylightbluesouth.json b/src/main/resources/assets/imsm/models/item/officemedium_densitylightbluesouth.json new file mode 100644 index 00000000..9e585bfc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitylightbluesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitylightbluesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitylightbluewest.json b/src/main/resources/assets/imsm/models/item/officemedium_densitylightbluewest.json new file mode 100644 index 00000000..950371bb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitylightbluewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitylightbluewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitypinkeast.json b/src/main/resources/assets/imsm/models/item/officemedium_densitypinkeast.json new file mode 100644 index 00000000..1039b0e2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitypinkeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitypinkeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitypinknorth.json b/src/main/resources/assets/imsm/models/item/officemedium_densitypinknorth.json new file mode 100644 index 00000000..e049e467 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitypinknorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitypinknorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitypinksouth.json b/src/main/resources/assets/imsm/models/item/officemedium_densitypinksouth.json new file mode 100644 index 00000000..e488d00e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitypinksouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitypinksouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitypinkwest.json b/src/main/resources/assets/imsm/models/item/officemedium_densitypinkwest.json new file mode 100644 index 00000000..9d3beb4a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitypinkwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitypinkwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitysandstoneeast.json b/src/main/resources/assets/imsm/models/item/officemedium_densitysandstoneeast.json new file mode 100644 index 00000000..a55ae220 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitysandstoneeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitysandstoneeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitysandstonenorth.json b/src/main/resources/assets/imsm/models/item/officemedium_densitysandstonenorth.json new file mode 100644 index 00000000..961b291b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitysandstonenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitysandstonenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitysandstonesouth.json b/src/main/resources/assets/imsm/models/item/officemedium_densitysandstonesouth.json new file mode 100644 index 00000000..911254e7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitysandstonesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitysandstonesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/officemedium_densitysandstonewest.json b/src/main/resources/assets/imsm/models/item/officemedium_densitysandstonewest.json new file mode 100644 index 00000000..99b14824 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/officemedium_densitysandstonewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/officemedium_densitysandstonewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/otherbrickhouse.json b/src/main/resources/assets/imsm/models/item/otherbrickhouse.json new file mode 100644 index 00000000..f3052db5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/otherbrickhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/otherbrickhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/othergrandhouse.json b/src/main/resources/assets/imsm/models/item/othergrandhouse.json new file mode 100644 index 00000000..d5a43112 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/othergrandhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/othergrandhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/otherlighthouse.json b/src/main/resources/assets/imsm/models/item/otherlighthouse.json new file mode 100644 index 00000000..89de1a51 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/otherlighthouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/otherlighthouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/otherstable.json b/src/main/resources/assets/imsm/models/item/otherstable.json new file mode 100644 index 00000000..ddd49470 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/otherstable.json @@ -0,0 +1 @@ +{"parent": "imsm:block/otherstable", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/othersurvivorhouse.json b/src/main/resources/assets/imsm/models/item/othersurvivorhouse.json new file mode 100644 index 00000000..c57a595a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/othersurvivorhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/othersurvivorhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/othersurvivorhouse2.json b/src/main/resources/assets/imsm/models/item/othersurvivorhouse2.json new file mode 100644 index 00000000..232f28c2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/othersurvivorhouse2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/othersurvivorhouse2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/othersurvivorhouse3.json b/src/main/resources/assets/imsm/models/item/othersurvivorhouse3.json new file mode 100644 index 00000000..89995ac5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/othersurvivorhouse3.json @@ -0,0 +1 @@ +{"parent": "imsm:block/othersurvivorhouse3", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/othersurvivorhouse4.json b/src/main/resources/assets/imsm/models/item/othersurvivorhouse4.json new file mode 100644 index 00000000..e2774a9d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/othersurvivorhouse4.json @@ -0,0 +1 @@ +{"parent": "imsm:block/othersurvivorhouse4", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/othersurvivorhouse5.json b/src/main/resources/assets/imsm/models/item/othersurvivorhouse5.json new file mode 100644 index 00000000..83823d9b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/othersurvivorhouse5.json @@ -0,0 +1 @@ +{"parent": "imsm:block/othersurvivorhouse5", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/othersurvivorhouse6.json b/src/main/resources/assets/imsm/models/item/othersurvivorhouse6.json new file mode 100644 index 00000000..90aa5aa9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/othersurvivorhouse6.json @@ -0,0 +1 @@ +{"parent": "imsm:block/othersurvivorhouse6", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/othersurvivorhouse7.json b/src/main/resources/assets/imsm/models/item/othersurvivorhouse7.json new file mode 100644 index 00000000..99b7e2af --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/othersurvivorhouse7.json @@ -0,0 +1 @@ +{"parent": "imsm:block/othersurvivorhouse7", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/othersurvivorhouse8.json b/src/main/resources/assets/imsm/models/item/othersurvivorhouse8.json new file mode 100644 index 00000000..6419a159 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/othersurvivorhouse8.json @@ -0,0 +1 @@ +{"parent": "imsm:block/othersurvivorhouse8", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/othertemple.json b/src/main/resources/assets/imsm/models/item/othertemple.json new file mode 100644 index 00000000..9719dd54 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/othertemple.json @@ -0,0 +1 @@ +{"parent": "imsm:block/othertemple", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicfireservicebigeast.json b/src/main/resources/assets/imsm/models/item/publicfireservicebigeast.json new file mode 100644 index 00000000..bfbfc232 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicfireservicebigeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicfireservicebigeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicfireservicebignorth.json b/src/main/resources/assets/imsm/models/item/publicfireservicebignorth.json new file mode 100644 index 00000000..c7a0832a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicfireservicebignorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicfireservicebignorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicfireservicebigsouth.json b/src/main/resources/assets/imsm/models/item/publicfireservicebigsouth.json new file mode 100644 index 00000000..3fec8419 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicfireservicebigsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicfireservicebigsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicfireservicebigwest.json b/src/main/resources/assets/imsm/models/item/publicfireservicebigwest.json new file mode 100644 index 00000000..d222703d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicfireservicebigwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicfireservicebigwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicfireservicesmalleast.json b/src/main/resources/assets/imsm/models/item/publicfireservicesmalleast.json new file mode 100644 index 00000000..925d134a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicfireservicesmalleast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicfireservicesmalleast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicfireservicesmallnorth.json b/src/main/resources/assets/imsm/models/item/publicfireservicesmallnorth.json new file mode 100644 index 00000000..ded50e4c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicfireservicesmallnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicfireservicesmallnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicfireservicesmallsouth.json b/src/main/resources/assets/imsm/models/item/publicfireservicesmallsouth.json new file mode 100644 index 00000000..10715f0a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicfireservicesmallsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicfireservicesmallsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicfireservicesmallwest.json b/src/main/resources/assets/imsm/models/item/publicfireservicesmallwest.json new file mode 100644 index 00000000..2a4e4e54 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicfireservicesmallwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicfireservicesmallwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publichospitalbigeast.json b/src/main/resources/assets/imsm/models/item/publichospitalbigeast.json new file mode 100644 index 00000000..97389b8e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publichospitalbigeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publichospitalbigeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publichospitalbignorth.json b/src/main/resources/assets/imsm/models/item/publichospitalbignorth.json new file mode 100644 index 00000000..dc94f19b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publichospitalbignorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publichospitalbignorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publichospitalbigsouth.json b/src/main/resources/assets/imsm/models/item/publichospitalbigsouth.json new file mode 100644 index 00000000..2940d8fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publichospitalbigsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publichospitalbigsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publichospitalbigwest.json b/src/main/resources/assets/imsm/models/item/publichospitalbigwest.json new file mode 100644 index 00000000..0b4906d2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publichospitalbigwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publichospitalbigwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publichospitalsmalleast.json b/src/main/resources/assets/imsm/models/item/publichospitalsmalleast.json new file mode 100644 index 00000000..f58a5fc5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publichospitalsmalleast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publichospitalsmalleast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publichospitalsmallnorth.json b/src/main/resources/assets/imsm/models/item/publichospitalsmallnorth.json new file mode 100644 index 00000000..d9772ec8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publichospitalsmallnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publichospitalsmallnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publichospitalsmallsouth.json b/src/main/resources/assets/imsm/models/item/publichospitalsmallsouth.json new file mode 100644 index 00000000..6fe26e18 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publichospitalsmallsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publichospitalsmallsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publichospitalsmallwest.json b/src/main/resources/assets/imsm/models/item/publichospitalsmallwest.json new file mode 100644 index 00000000..2bd80d30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publichospitalsmallwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publichospitalsmallwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publiclibraryeastwest.json b/src/main/resources/assets/imsm/models/item/publiclibraryeastwest.json new file mode 100644 index 00000000..6dee6feb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publiclibraryeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publiclibraryeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publiclibrarynorthsouth.json b/src/main/resources/assets/imsm/models/item/publiclibrarynorthsouth.json new file mode 100644 index 00000000..31a4830b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publiclibrarynorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publiclibrarynorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicpolicebigeast.json b/src/main/resources/assets/imsm/models/item/publicpolicebigeast.json new file mode 100644 index 00000000..c3078932 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicpolicebigeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicpolicebigeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicpolicebignorth.json b/src/main/resources/assets/imsm/models/item/publicpolicebignorth.json new file mode 100644 index 00000000..644f1cd6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicpolicebignorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicpolicebignorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicpolicebigsouth.json b/src/main/resources/assets/imsm/models/item/publicpolicebigsouth.json new file mode 100644 index 00000000..22051fe3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicpolicebigsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicpolicebigsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicpolicebigwest.json b/src/main/resources/assets/imsm/models/item/publicpolicebigwest.json new file mode 100644 index 00000000..8df324af --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicpolicebigwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicpolicebigwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicpolicesmalleast.json b/src/main/resources/assets/imsm/models/item/publicpolicesmalleast.json new file mode 100644 index 00000000..89d018c3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicpolicesmalleast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicpolicesmalleast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicpolicesmallnorth.json b/src/main/resources/assets/imsm/models/item/publicpolicesmallnorth.json new file mode 100644 index 00000000..75bba67b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicpolicesmallnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicpolicesmallnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicpolicesmallsouth.json b/src/main/resources/assets/imsm/models/item/publicpolicesmallsouth.json new file mode 100644 index 00000000..d5785e2c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicpolicesmallsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicpolicesmallsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicpolicesmallwest.json b/src/main/resources/assets/imsm/models/item/publicpolicesmallwest.json new file mode 100644 index 00000000..2a0a6931 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicpolicesmallwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicpolicesmallwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicschoolbignortheast.json b/src/main/resources/assets/imsm/models/item/publicschoolbignortheast.json new file mode 100644 index 00000000..f68516cd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicschoolbignortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicschoolbignortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicschoolbignorthwest.json b/src/main/resources/assets/imsm/models/item/publicschoolbignorthwest.json new file mode 100644 index 00000000..79e87a47 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicschoolbignorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicschoolbignorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicschoolbigsoutheast.json b/src/main/resources/assets/imsm/models/item/publicschoolbigsoutheast.json new file mode 100644 index 00000000..bf17190b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicschoolbigsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicschoolbigsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicschoolbigsouthwest.json b/src/main/resources/assets/imsm/models/item/publicschoolbigsouthwest.json new file mode 100644 index 00000000..d94977fe --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicschoolbigsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicschoolbigsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicschoolsmallnortheast.json b/src/main/resources/assets/imsm/models/item/publicschoolsmallnortheast.json new file mode 100644 index 00000000..54b0d39e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicschoolsmallnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicschoolsmallnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicschoolsmallnorthwest.json b/src/main/resources/assets/imsm/models/item/publicschoolsmallnorthwest.json new file mode 100644 index 00000000..aca43fcc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicschoolsmallnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicschoolsmallnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicschoolsmallsoutheast.json b/src/main/resources/assets/imsm/models/item/publicschoolsmallsoutheast.json new file mode 100644 index 00000000..981721ea --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicschoolsmallsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicschoolsmallsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicschoolsmallsouthwest.json b/src/main/resources/assets/imsm/models/item/publicschoolsmallsouthwest.json new file mode 100644 index 00000000..39e1331b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicschoolsmallsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicschoolsmallsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publictownhallbigeastwest.json b/src/main/resources/assets/imsm/models/item/publictownhallbigeastwest.json new file mode 100644 index 00000000..d748de46 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publictownhallbigeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publictownhallbigeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publictownhallbignorthsouth.json b/src/main/resources/assets/imsm/models/item/publictownhallbignorthsouth.json new file mode 100644 index 00000000..89afe107 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publictownhallbignorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publictownhallbignorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publictownhallsmalleast.json b/src/main/resources/assets/imsm/models/item/publictownhallsmalleast.json new file mode 100644 index 00000000..c73c4b3a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publictownhallsmalleast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publictownhallsmalleast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publictownhallsmallnorth.json b/src/main/resources/assets/imsm/models/item/publictownhallsmallnorth.json new file mode 100644 index 00000000..9abe37ee --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publictownhallsmallnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publictownhallsmallnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publictownhallsmallsouth.json b/src/main/resources/assets/imsm/models/item/publictownhallsmallsouth.json new file mode 100644 index 00000000..c590ab34 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publictownhallsmallsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publictownhallsmallsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publictownhallsmallwest.json b/src/main/resources/assets/imsm/models/item/publictownhallsmallwest.json new file mode 100644 index 00000000..9838798f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publictownhallsmallwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publictownhallsmallwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicuniversityeast.json b/src/main/resources/assets/imsm/models/item/publicuniversityeast.json new file mode 100644 index 00000000..4f893451 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicuniversityeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicuniversityeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicuniversitynorth.json b/src/main/resources/assets/imsm/models/item/publicuniversitynorth.json new file mode 100644 index 00000000..1b3198fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicuniversitynorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicuniversitynorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicuniversitysouth.json b/src/main/resources/assets/imsm/models/item/publicuniversitysouth.json new file mode 100644 index 00000000..b0816845 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicuniversitysouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicuniversitysouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/publicuniversitywest.json b/src/main/resources/assets/imsm/models/item/publicuniversitywest.json new file mode 100644 index 00000000..fd542abc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/publicuniversitywest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/publicuniversitywest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomairballoon2.json b/src/main/resources/assets/imsm/models/item/randomairballoon2.json new file mode 100644 index 00000000..878e8281 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomairballoon2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomairballoon2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randombuildingcomplex.json b/src/main/resources/assets/imsm/models/item/randombuildingcomplex.json new file mode 100644 index 00000000..307c93ec --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randombuildingcomplex.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randombuildingcomplex", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomentrance.json b/src/main/resources/assets/imsm/models/item/randomentrance.json new file mode 100644 index 00000000..7a03f360 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomentrance.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomentrance", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomflyingship.json b/src/main/resources/assets/imsm/models/item/randomflyingship.json new file mode 100644 index 00000000..5b41b6cb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomflyingship.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomflyingship", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomgreentent.json b/src/main/resources/assets/imsm/models/item/randomgreentent.json new file mode 100644 index 00000000..84905c41 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomgreentent.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomgreentent", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomgreytent.json b/src/main/resources/assets/imsm/models/item/randomgreytent.json new file mode 100644 index 00000000..9c241beb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomgreytent.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomgreytent", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomimmense_buildingcomplex.json b/src/main/resources/assets/imsm/models/item/randomimmense_buildingcomplex.json new file mode 100644 index 00000000..acc9364d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomimmense_buildingcomplex.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomimmense_buildingcomplex", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomimmense_greenroof.json b/src/main/resources/assets/imsm/models/item/randomimmense_greenroof.json new file mode 100644 index 00000000..625c2090 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomimmense_greenroof.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomimmense_greenroof", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomimmense_white_house.json b/src/main/resources/assets/imsm/models/item/randomimmense_white_house.json new file mode 100644 index 00000000..958b2ccf --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomimmense_white_house.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomimmense_white_house", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomimmense_workingbuilding.json b/src/main/resources/assets/imsm/models/item/randomimmense_workingbuilding.json new file mode 100644 index 00000000..42680376 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomimmense_workingbuilding.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomimmense_workingbuilding", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomlighthouse.json b/src/main/resources/assets/imsm/models/item/randomlighthouse.json new file mode 100644 index 00000000..a8e1c0c7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomlighthouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomlighthouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomlittlepalace.json b/src/main/resources/assets/imsm/models/item/randomlittlepalace.json new file mode 100644 index 00000000..78711616 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomlittlepalace.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomlittlepalace", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomlittlewoodencabin.json b/src/main/resources/assets/imsm/models/item/randomlittlewoodencabin.json new file mode 100644 index 00000000..3a11299e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomlittlewoodencabin.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomlittlewoodencabin", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomminertent.json b/src/main/resources/assets/imsm/models/item/randomminertent.json new file mode 100644 index 00000000..1912ffb3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomminertent.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomminertent", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomnetherentrancesurvival.json b/src/main/resources/assets/imsm/models/item/randomnetherentrancesurvival.json new file mode 100644 index 00000000..33f3b51d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomnetherentrancesurvival.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomnetherentrancesurvival", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomrandombrickhouse.json b/src/main/resources/assets/imsm/models/item/randomrandombrickhouse.json new file mode 100644 index 00000000..2ddd6df1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomrandombrickhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomrandombrickhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomsandstonebuilding.json b/src/main/resources/assets/imsm/models/item/randomsandstonebuilding.json new file mode 100644 index 00000000..935bfec8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomsandstonebuilding.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomsandstonebuilding", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomsandstonechurch.json b/src/main/resources/assets/imsm/models/item/randomsandstonechurch.json new file mode 100644 index 00000000..bf8127a3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomsandstonechurch.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomsandstonechurch", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomsandstonewithfarm.json b/src/main/resources/assets/imsm/models/item/randomsandstonewithfarm.json new file mode 100644 index 00000000..eecd801d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomsandstonewithfarm.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomsandstonewithfarm", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomsimplesandstone.json b/src/main/resources/assets/imsm/models/item/randomsimplesandstone.json new file mode 100644 index 00000000..fff9996f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomsimplesandstone.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomsimplesandstone", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomspawnhouseprod.json b/src/main/resources/assets/imsm/models/item/randomspawnhouseprod.json new file mode 100644 index 00000000..99a80132 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomspawnhouseprod.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomspawnhouseprod", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomsurvivalhouse1.json b/src/main/resources/assets/imsm/models/item/randomsurvivalhouse1.json new file mode 100644 index 00000000..86932e56 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomsurvivalhouse1.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomsurvivalhouse1", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomsurvivalhousesandstone.json b/src/main/resources/assets/imsm/models/item/randomsurvivalhousesandstone.json new file mode 100644 index 00000000..be90952b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomsurvivalhousesandstone.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomsurvivalhousesandstone", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomtentcamp.json b/src/main/resources/assets/imsm/models/item/randomtentcamp.json new file mode 100644 index 00000000..bd5e4c04 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomtentcamp.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomtentcamp", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomwoodenhouse.json b/src/main/resources/assets/imsm/models/item/randomwoodenhouse.json new file mode 100644 index 00000000..5bd1a35f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomwoodenhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomwoodenhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/randomwoodenstonebrickhouse.json b/src/main/resources/assets/imsm/models/item/randomwoodenstonebrickhouse.json new file mode 100644 index 00000000..2c9d61ff --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/randomwoodenstonebrickhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/randomwoodenstonebrickhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover16.json b/src/main/resources/assets/imsm/models/item/remover16.json new file mode 100644 index 00000000..34ffd5dc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover16.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover16", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover16256.json b/src/main/resources/assets/imsm/models/item/remover16256.json new file mode 100644 index 00000000..9f491d5f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover16256.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover16256", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover1632.json b/src/main/resources/assets/imsm/models/item/remover1632.json new file mode 100644 index 00000000..0cc43274 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover1632.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover1632", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover168.json b/src/main/resources/assets/imsm/models/item/remover168.json new file mode 100644 index 00000000..9c041959 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover168.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover168", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover32.json b/src/main/resources/assets/imsm/models/item/remover32.json new file mode 100644 index 00000000..e93c7d4e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover32.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover32", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover3216.json b/src/main/resources/assets/imsm/models/item/remover3216.json new file mode 100644 index 00000000..9b32b3c0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover3216.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover3216", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover32256.json b/src/main/resources/assets/imsm/models/item/remover32256.json new file mode 100644 index 00000000..461a3967 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover32256.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover32256", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover328.json b/src/main/resources/assets/imsm/models/item/remover328.json new file mode 100644 index 00000000..d96e3b06 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover328.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover328", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover64.json b/src/main/resources/assets/imsm/models/item/remover64.json new file mode 100644 index 00000000..faa08065 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover64.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover64", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover64256.json b/src/main/resources/assets/imsm/models/item/remover64256.json new file mode 100644 index 00000000..46c6ee0c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover64256.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover64256", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover8.json b/src/main/resources/assets/imsm/models/item/remover8.json new file mode 100644 index 00000000..8e82980e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover8.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover8", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover816.json b/src/main/resources/assets/imsm/models/item/remover816.json new file mode 100644 index 00000000..a32e827f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover816.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover816", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover8256.json b/src/main/resources/assets/imsm/models/item/remover8256.json new file mode 100644 index 00000000..36fc0951 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover8256.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover8256", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/remover832.json b/src/main/resources/assets/imsm/models/item/remover832.json new file mode 100644 index 00000000..85a36bf8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/remover832.json @@ -0,0 +1 @@ +{"parent": "imsm:block/remover832", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/removerlast.json b/src/main/resources/assets/imsm/models/item/removerlast.json new file mode 100644 index 00000000..b546693d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/removerlast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/removerlast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densityblocknortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densityblocknortheastsouthwest.json new file mode 100644 index 00000000..e0081900 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densityblocknortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densityblocknortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbigeast.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbigeast.json new file mode 100644 index 00000000..f9756afc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbigeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitybrickbigeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbignorth.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbignorth.json new file mode 100644 index 00000000..ae1a42b7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbignorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitybrickbignorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbigsouth.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbigsouth.json new file mode 100644 index 00000000..96e3d593 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbigsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitybrickbigsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbigwest.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbigwest.json new file mode 100644 index 00000000..6bc2dc48 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitybrickbigwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitybrickbigwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitybricksmallnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitybricksmallnortheastsouthwest.json new file mode 100644 index 00000000..e0185efe --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitybricksmallnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitybricksmallnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreyeast.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreyeast.json new file mode 100644 index 00000000..653e5349 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreyeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitygreyeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreynorth.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreynorth.json new file mode 100644 index 00000000..d9dcd057 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreynorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitygreynorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreysouth.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreysouth.json new file mode 100644 index 00000000..90f8e9cc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreysouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitygreysouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreywest.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreywest.json new file mode 100644 index 00000000..a8e6e241 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitygreywest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitygreywest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitymoderneast.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitymoderneast.json new file mode 100644 index 00000000..9c49de66 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitymoderneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitymoderneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitymodernnorth.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitymodernnorth.json new file mode 100644 index 00000000..1d09a95f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitymodernnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitymodernnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitymodernsouth.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitymodernsouth.json new file mode 100644 index 00000000..85b75639 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitymodernsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitymodernsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitymodernwest.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitymodernwest.json new file mode 100644 index 00000000..c58e7bbe --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitymodernwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitymodernwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densityredeastwest.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densityredeastwest.json new file mode 100644 index 00000000..88a14a13 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densityredeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densityredeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densityrednorthsouth.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densityrednorthsouth.json new file mode 100644 index 00000000..2ef3c18e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densityrednorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densityrednorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densityroundnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densityroundnortheastsouthwest.json new file mode 100644 index 00000000..6c986aa0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densityroundnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densityroundnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitystoneeast.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystoneeast.json new file mode 100644 index 00000000..23f5fa88 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystoneeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitystoneeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitystoneeast2.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystoneeast2.json new file mode 100644 index 00000000..117652f0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystoneeast2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitystoneeast2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonenorth.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonenorth.json new file mode 100644 index 00000000..44402b15 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitystonenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonenorth2.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonenorth2.json new file mode 100644 index 00000000..647cd05a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonenorth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitystonenorth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonesouth.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonesouth.json new file mode 100644 index 00000000..4d175106 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitystonesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonesouth2.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonesouth2.json new file mode 100644 index 00000000..ac207951 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonesouth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitystonesouth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonewest.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonewest.json new file mode 100644 index 00000000..73f79390 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitystonewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonewest2.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonewest2.json new file mode 100644 index 00000000..791185b4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densitystonewest2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densitystonewest2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalenormous_densityyellownortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/residentalenormous_densityyellownortheastsouthwest.json new file mode 100644 index 00000000..e14312a6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalenormous_densityyellownortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalenormous_densityyellownortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityblueeast.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityblueeast.json new file mode 100644 index 00000000..1620473d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityblueeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityblueeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityblueeastwest.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityblueeastwest.json new file mode 100644 index 00000000..0369fa5a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityblueeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityblueeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluenorth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluenorth.json new file mode 100644 index 00000000..86654534 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitybluenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluenorthsouth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluenorthsouth.json new file mode 100644 index 00000000..26d4aca0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluenorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitybluenorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluesouth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluesouth.json new file mode 100644 index 00000000..12ffec0a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitybluesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluewest.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluewest.json new file mode 100644 index 00000000..5a37660c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybluewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitybluewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitybrickeast.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybrickeast.json new file mode 100644 index 00000000..0ad065b0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitybrickeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitybrickeastwest.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybrickeastwest.json new file mode 100644 index 00000000..9e92a559 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybrickeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitybrickeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitybricknorth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybricknorth.json new file mode 100644 index 00000000..2de963ca --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitybricknorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitybricknorthsouth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybricknorthsouth.json new file mode 100644 index 00000000..5cf158ec --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybricknorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitybricknorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitybricksouth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybricksouth.json new file mode 100644 index 00000000..9168ed33 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitybricksouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitybrickwest.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybrickwest.json new file mode 100644 index 00000000..ffa55d9a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitybrickwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreyeast.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreyeast.json new file mode 100644 index 00000000..ea20c340 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreyeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitygreengreyeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreynorth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreynorth.json new file mode 100644 index 00000000..63b943ab --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreynorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitygreengreynorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreysouth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreysouth.json new file mode 100644 index 00000000..3e2622c3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreysouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitygreengreysouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreywest.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreywest.json new file mode 100644 index 00000000..f1b20884 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitygreengreywest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitygreengreywest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornernortheast.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornernortheast.json new file mode 100644 index 00000000..ac727ab5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornernortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityredcornernortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornernorthwest.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornernorthwest.json new file mode 100644 index 00000000..791ea727 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornernorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityredcornernorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornersoutheast.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornersoutheast.json new file mode 100644 index 00000000..de9137a5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornersoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityredcornersoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornersouthwest.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornersouthwest.json new file mode 100644 index 00000000..32ae49d3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredcornersouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityredcornersouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyelloweast.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyelloweast.json new file mode 100644 index 00000000..6fb4acb1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyelloweast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityredyelloweast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyellownorth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyellownorth.json new file mode 100644 index 00000000..eb1c4c3d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyellownorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityredyellownorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyellowsouth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyellowsouth.json new file mode 100644 index 00000000..2f4d0195 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyellowsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityredyellowsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyellowwest.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyellowwest.json new file mode 100644 index 00000000..ad73e8f1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityredyellowwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityredyellowwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitystoneeast.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystoneeast.json new file mode 100644 index 00000000..7783523b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystoneeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitystoneeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitystoneeast2.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystoneeast2.json new file mode 100644 index 00000000..1ddfe038 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystoneeast2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitystoneeast2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonenorth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonenorth.json new file mode 100644 index 00000000..e120ce25 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitystonenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonenorth2.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonenorth2.json new file mode 100644 index 00000000..fe8f0854 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonenorth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitystonenorth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonesouth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonesouth.json new file mode 100644 index 00000000..93e1296c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitystonesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonesouth2.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonesouth2.json new file mode 100644 index 00000000..047c158d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonesouth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitystonesouth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonewest.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonewest.json new file mode 100644 index 00000000..806c4956 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitystonewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonewest2.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonewest2.json new file mode 100644 index 00000000..b2560ca0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densitystonewest2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densitystonewest2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityyelloweast.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityyelloweast.json new file mode 100644 index 00000000..ed524a78 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityyelloweast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityyelloweast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityyellownorth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityyellownorth.json new file mode 100644 index 00000000..53548b09 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityyellownorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityyellownorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityyellowsouth.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityyellowsouth.json new file mode 100644 index 00000000..80b690ec --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityyellowsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityyellowsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalhigh_densityyellowwest.json b/src/main/resources/assets/imsm/models/item/residentalhigh_densityyellowwest.json new file mode 100644 index 00000000..df9a2f2c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalhigh_densityyellowwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalhigh_densityyellowwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitybeigeeast.json b/src/main/resources/assets/imsm/models/item/residentallow_densitybeigeeast.json new file mode 100644 index 00000000..fc4d7a31 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitybeigeeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitybeigeeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitybeigenorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitybeigenorth.json new file mode 100644 index 00000000..c86bb060 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitybeigenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitybeigenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitybeigesouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitybeigesouth.json new file mode 100644 index 00000000..7a87d415 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitybeigesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitybeigesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitybeigewest.json b/src/main/resources/assets/imsm/models/item/residentallow_densitybeigewest.json new file mode 100644 index 00000000..73b65de6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitybeigewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitybeigewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitycyaneast.json b/src/main/resources/assets/imsm/models/item/residentallow_densitycyaneast.json new file mode 100644 index 00000000..afe504b4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitycyaneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitycyaneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitycyannorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitycyannorth.json new file mode 100644 index 00000000..672ebd7c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitycyannorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitycyannorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitycyansouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitycyansouth.json new file mode 100644 index 00000000..5f0f758b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitycyansouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitycyansouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitycyanwest.json b/src/main/resources/assets/imsm/models/item/residentallow_densitycyanwest.json new file mode 100644 index 00000000..6bc106ab --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitycyanwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitycyanwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitygreeneast.json b/src/main/resources/assets/imsm/models/item/residentallow_densitygreeneast.json new file mode 100644 index 00000000..ab13ffb1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitygreeneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitygreeneast2.json b/src/main/resources/assets/imsm/models/item/residentallow_densitygreeneast2.json new file mode 100644 index 00000000..0cfff3a3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitygreeneast2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitygreeneast2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitygreennorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitygreennorth.json new file mode 100644 index 00000000..87d3b6a5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitygreennorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitygreennorth2.json b/src/main/resources/assets/imsm/models/item/residentallow_densitygreennorth2.json new file mode 100644 index 00000000..8cdc608f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitygreennorth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitygreennorth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitygreensouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitygreensouth.json new file mode 100644 index 00000000..4fe32560 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitygreensouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitygreensouth2.json b/src/main/resources/assets/imsm/models/item/residentallow_densitygreensouth2.json new file mode 100644 index 00000000..0610e630 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitygreensouth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitygreensouth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitygreenwest.json b/src/main/resources/assets/imsm/models/item/residentallow_densitygreenwest.json new file mode 100644 index 00000000..2b305414 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitygreenwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitygreenwest2.json b/src/main/resources/assets/imsm/models/item/residentallow_densitygreenwest2.json new file mode 100644 index 00000000..a1f61ddd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitygreenwest2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitygreenwest2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightblueeast.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightblueeast.json new file mode 100644 index 00000000..4a323691 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightblueeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightblueeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightblueeast2.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightblueeast2.json new file mode 100644 index 00000000..734bcd8d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightblueeast2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightblueeast2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluenorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluenorth.json new file mode 100644 index 00000000..84564a29 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightbluenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluenorth2.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluenorth2.json new file mode 100644 index 00000000..c91b57ff --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluenorth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightbluenorth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluesouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluesouth.json new file mode 100644 index 00000000..e53ba75d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightbluesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluesouth2.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluesouth2.json new file mode 100644 index 00000000..749a01f8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluesouth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightbluesouth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluewest.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluewest.json new file mode 100644 index 00000000..4091c865 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightbluewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluewest2.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluewest2.json new file mode 100644 index 00000000..3889ea48 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightbluewest2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightbluewest2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreyeast.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreyeast.json new file mode 100644 index 00000000..2a472581 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreyeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightgreyeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreynorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreynorth.json new file mode 100644 index 00000000..2cf2fc47 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreynorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightgreynorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreysouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreysouth.json new file mode 100644 index 00000000..f091eb00 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreysouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightgreysouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreywest.json b/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreywest.json new file mode 100644 index 00000000..f0922844 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitylightgreywest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitylightgreywest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitymoderneast.json b/src/main/resources/assets/imsm/models/item/residentallow_densitymoderneast.json new file mode 100644 index 00000000..1a8bcc17 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitymoderneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitymoderneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitymodernnorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitymodernnorth.json new file mode 100644 index 00000000..7fd04e8d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitymodernnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitymodernnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitymodernsouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitymodernsouth.json new file mode 100644 index 00000000..071acebf --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitymodernsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitymodernsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitymodernwest.json b/src/main/resources/assets/imsm/models/item/residentallow_densitymodernwest.json new file mode 100644 index 00000000..3de49754 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitymodernwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitymodernwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityorangeeast.json b/src/main/resources/assets/imsm/models/item/residentallow_densityorangeeast.json new file mode 100644 index 00000000..ff439bd3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityorangeeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityorangeeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityorangenorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densityorangenorth.json new file mode 100644 index 00000000..fca3a14e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityorangenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityorangenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityorangesouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densityorangesouth.json new file mode 100644 index 00000000..60c39abb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityorangesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityorangesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityorangewest.json b/src/main/resources/assets/imsm/models/item/residentallow_densityorangewest.json new file mode 100644 index 00000000..db9cdece --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityorangewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityorangewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityredeast.json b/src/main/resources/assets/imsm/models/item/residentallow_densityredeast.json new file mode 100644 index 00000000..402bd12b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityredeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityredeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityrednorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densityrednorth.json new file mode 100644 index 00000000..bee2efab --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityrednorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityrednorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityredsouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densityredsouth.json new file mode 100644 index 00000000..e6c149a1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityredsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityredsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityredwest.json b/src/main/resources/assets/imsm/models/item/residentallow_densityredwest.json new file mode 100644 index 00000000..129ab2f3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityredwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityredwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitystoneeast.json b/src/main/resources/assets/imsm/models/item/residentallow_densitystoneeast.json new file mode 100644 index 00000000..43c7a28c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitystoneeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitystoneeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitystonenorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitystonenorth.json new file mode 100644 index 00000000..c241a03f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitystonenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitystonenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitystonesouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitystonesouth.json new file mode 100644 index 00000000..c888329e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitystonesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitystonesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitystonewest.json b/src/main/resources/assets/imsm/models/item/residentallow_densitystonewest.json new file mode 100644 index 00000000..73d15e74 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitystonewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitystonewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitywhiteeast.json b/src/main/resources/assets/imsm/models/item/residentallow_densitywhiteeast.json new file mode 100644 index 00000000..6278ba59 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitywhiteeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitywhiteeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitywhitenorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitywhitenorth.json new file mode 100644 index 00000000..98126bbb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitywhitenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitywhitenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitywhitesouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitywhitesouth.json new file mode 100644 index 00000000..e56e9197 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitywhitesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitywhitesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitywhitewest.json b/src/main/resources/assets/imsm/models/item/residentallow_densitywhitewest.json new file mode 100644 index 00000000..8e14bed3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitywhitewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitywhitewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitywoodeast.json b/src/main/resources/assets/imsm/models/item/residentallow_densitywoodeast.json new file mode 100644 index 00000000..440bead3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitywoodeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitywoodeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitywoodnorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitywoodnorth.json new file mode 100644 index 00000000..17f35207 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitywoodnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitywoodnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitywoodsouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densitywoodsouth.json new file mode 100644 index 00000000..5d025dce --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitywoodsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitywoodsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densitywoodwest.json b/src/main/resources/assets/imsm/models/item/residentallow_densitywoodwest.json new file mode 100644 index 00000000..16c90702 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densitywoodwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densitywoodwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityyelloweast.json b/src/main/resources/assets/imsm/models/item/residentallow_densityyelloweast.json new file mode 100644 index 00000000..241bff37 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityyelloweast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityyelloweast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityyelloweast2.json b/src/main/resources/assets/imsm/models/item/residentallow_densityyelloweast2.json new file mode 100644 index 00000000..929df280 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityyelloweast2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityyelloweast2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityyellownorth.json b/src/main/resources/assets/imsm/models/item/residentallow_densityyellownorth.json new file mode 100644 index 00000000..20ad2a83 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityyellownorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityyellownorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityyellownorth2.json b/src/main/resources/assets/imsm/models/item/residentallow_densityyellownorth2.json new file mode 100644 index 00000000..32ed22e4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityyellownorth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityyellownorth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityyellowsouth.json b/src/main/resources/assets/imsm/models/item/residentallow_densityyellowsouth.json new file mode 100644 index 00000000..ce7a5698 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityyellowsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityyellowsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityyellowsouth2.json b/src/main/resources/assets/imsm/models/item/residentallow_densityyellowsouth2.json new file mode 100644 index 00000000..ba12081b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityyellowsouth2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityyellowsouth2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityyellowwest.json b/src/main/resources/assets/imsm/models/item/residentallow_densityyellowwest.json new file mode 100644 index 00000000..a0b688d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityyellowwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityyellowwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentallow_densityyellowwest2.json b/src/main/resources/assets/imsm/models/item/residentallow_densityyellowwest2.json new file mode 100644 index 00000000..c87ba989 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentallow_densityyellowwest2.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentallow_densityyellowwest2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreeneast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreeneast.json new file mode 100644 index 00000000..3b8c0483 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreeneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitybluegreeneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreennorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreennorth.json new file mode 100644 index 00000000..4a5c008c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreennorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitybluegreennorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreensouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreensouth.json new file mode 100644 index 00000000..7bbcff20 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreensouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitybluegreensouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreenwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreenwest.json new file mode 100644 index 00000000..61a5bb24 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluegreenwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitybluegreenwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityblueredeast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityblueredeast.json new file mode 100644 index 00000000..5319f469 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityblueredeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityblueredeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluerednorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluerednorth.json new file mode 100644 index 00000000..29a26b55 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybluerednorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitybluerednorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityblueredsouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityblueredsouth.json new file mode 100644 index 00000000..62cee352 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityblueredsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityblueredsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityblueredwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityblueredwest.json new file mode 100644 index 00000000..790ef7e7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityblueredwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityblueredwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitybrickeast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybrickeast.json new file mode 100644 index 00000000..e8ba2738 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitybrickeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitybricknorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybricknorth.json new file mode 100644 index 00000000..561ff6e7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitybricknorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitybricksouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybricksouth.json new file mode 100644 index 00000000..8aefedf4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitybricksouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitybrickwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybrickwest.json new file mode 100644 index 00000000..84cf330f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitybrickwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontaleast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontaleast.json new file mode 100644 index 00000000..e73500f8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontaleast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityhorizontaleast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontalnorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontalnorth.json new file mode 100644 index 00000000..58739e74 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontalnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityhorizontalnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontalsouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontalsouth.json new file mode 100644 index 00000000..c0631182 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontalsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityhorizontalsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontalwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontalwest.json new file mode 100644 index 00000000..c0c75571 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityhorizontalwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityhorizontalwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreeneast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreeneast.json new file mode 100644 index 00000000..a94b733a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreeneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityorangegreeneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreennorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreennorth.json new file mode 100644 index 00000000..6ae4fcdb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreennorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityorangegreennorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreensouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreensouth.json new file mode 100644 index 00000000..c9ec26bc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreensouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityorangegreensouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreenwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreenwest.json new file mode 100644 index 00000000..acfa44d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityorangegreenwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityorangegreenwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartzeast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartzeast.json new file mode 100644 index 00000000..e1e28656 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartzeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityquartzeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartznorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartznorth.json new file mode 100644 index 00000000..b70d5cf8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartznorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityquartznorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartzsouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartzsouth.json new file mode 100644 index 00000000..61237eb4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartzsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityquartzsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartzwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartzwest.json new file mode 100644 index 00000000..e290d50f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityquartzwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityquartzwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreeneast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreeneast.json new file mode 100644 index 00000000..ed224319 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreeneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityredgreeneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreennorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreennorth.json new file mode 100644 index 00000000..6888866e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreennorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityredgreennorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreensouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreensouth.json new file mode 100644 index 00000000..34a364a6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreensouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityredgreensouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreenwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreenwest.json new file mode 100644 index 00000000..8af7c192 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityredgreenwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityredgreenwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofeast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofeast.json new file mode 100644 index 00000000..ba728c56 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityroofeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofnorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofnorth.json new file mode 100644 index 00000000..89f00758 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityroofnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofsouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofsouth.json new file mode 100644 index 00000000..3c02cda2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityroofsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofwest.json new file mode 100644 index 00000000..669d54bb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityroofwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityroofwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone1eastwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone1eastwest.json new file mode 100644 index 00000000..50f01f34 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystone1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone1northsouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone1northsouth.json new file mode 100644 index 00000000..bd8886cb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystone1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone2eastwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone2eastwest.json new file mode 100644 index 00000000..80ec69bb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone2eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystone2eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone2northsouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone2northsouth.json new file mode 100644 index 00000000..39906a97 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystone2northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystone2northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornernortheast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornernortheast.json new file mode 100644 index 00000000..9e77b02c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornernortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystonecornernortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornernorthwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornernorthwest.json new file mode 100644 index 00000000..f4d0feb0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornernorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystonecornernorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornersoutheast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornersoutheast.json new file mode 100644 index 00000000..a3c9370d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornersoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystonecornersoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornersouthwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornersouthwest.json new file mode 100644 index 00000000..e89db075 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonecornersouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystonecornersouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneeast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneeast.json new file mode 100644 index 00000000..3abcea65 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystoneeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendnortheastwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendnortheastwest.json new file mode 100644 index 00000000..dcd02400 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendnortheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystoneendnortheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendnorthsoutheast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendnorthsoutheast.json new file mode 100644 index 00000000..1f2bf3ed --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystoneendnorthsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendnorthsouthwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendnorthsouthwest.json new file mode 100644 index 00000000..0aca2de0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystoneendnorthsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendsoutheastwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendsoutheastwest.json new file mode 100644 index 00000000..eb64d9fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystoneendsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystoneendsoutheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonenorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonenorth.json new file mode 100644 index 00000000..19990b2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystonenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonesouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonesouth.json new file mode 100644 index 00000000..814c3b5a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystonesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonewest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonewest.json new file mode 100644 index 00000000..0d172d1c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densitystonewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densitystonewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticaleast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticaleast.json new file mode 100644 index 00000000..caeaf6a7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticaleast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityverticaleast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticalnorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticalnorth.json new file mode 100644 index 00000000..b908fccf --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticalnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityverticalnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticalsouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticalsouth.json new file mode 100644 index 00000000..5f186bcc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticalsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityverticalsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticalwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticalwest.json new file mode 100644 index 00000000..76650062 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityverticalwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityverticalwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowredeast.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowredeast.json new file mode 100644 index 00000000..d010e8a4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowredeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityyellowredeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowrednorth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowrednorth.json new file mode 100644 index 00000000..31ded8a4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowrednorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityyellowrednorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowredsouth.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowredsouth.json new file mode 100644 index 00000000..59c5ddf8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowredsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityyellowredsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowredwest.json b/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowredwest.json new file mode 100644 index 00000000..b30bb759 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/residentalmedium_densityyellowredwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/residentalmedium_densityyellowredwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinghigh_densityquartzeastwest.json b/src/main/resources/assets/imsm/models/item/shoppinghigh_densityquartzeastwest.json new file mode 100644 index 00000000..597812c3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinghigh_densityquartzeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinghigh_densityquartzeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinghigh_densityquartznorthsouth.json b/src/main/resources/assets/imsm/models/item/shoppinghigh_densityquartznorthsouth.json new file mode 100644 index 00000000..951e0b20 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinghigh_densityquartznorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinghigh_densityquartznorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitybrickeast.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitybrickeast.json new file mode 100644 index 00000000..9405ae64 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitybrickeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitybrickeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitybricknorth.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitybricknorth.json new file mode 100644 index 00000000..ede9899e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitybricknorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitybricknorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitybricksouth.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitybricksouth.json new file mode 100644 index 00000000..1e483885 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitybricksouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitybricksouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitybrickwest.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitybrickwest.json new file mode 100644 index 00000000..e0df98b5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitybrickwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitybrickwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreeneast.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreeneast.json new file mode 100644 index 00000000..8bb4055c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreeneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitygreeneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreennorth.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreennorth.json new file mode 100644 index 00000000..f7e78d32 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreennorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitygreennorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreensouth.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreensouth.json new file mode 100644 index 00000000..3b4f1293 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreensouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitygreensouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreenwest.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreenwest.json new file mode 100644 index 00000000..e3fd0285 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitygreenwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitygreenwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangeeast.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangeeast.json new file mode 100644 index 00000000..afaddd0a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangeeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densityorangeeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangenorth.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangenorth.json new file mode 100644 index 00000000..7e438459 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densityorangenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangesouth.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangesouth.json new file mode 100644 index 00000000..d1794d73 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densityorangesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangewest.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangewest.json new file mode 100644 index 00000000..f5c1d5db --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densityorangewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densityorangewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinkeast.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinkeast.json new file mode 100644 index 00000000..4d9ec938 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinkeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitypinkeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinknorth.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinknorth.json new file mode 100644 index 00000000..5c1609b2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinknorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitypinknorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinksouth.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinksouth.json new file mode 100644 index 00000000..724b4b72 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinksouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitypinksouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinkwest.json b/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinkwest.json new file mode 100644 index 00000000..191f8998 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppinglow_densitypinkwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppinglow_densitypinkwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymoderneast.json b/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymoderneast.json new file mode 100644 index 00000000..cd35cfb0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymoderneast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppingmedium_densitymoderneast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymodernnorth.json b/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymodernnorth.json new file mode 100644 index 00000000..81bbcb67 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymodernnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppingmedium_densitymodernnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymodernsouth.json b/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymodernsouth.json new file mode 100644 index 00000000..288ec9df --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymodernsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppingmedium_densitymodernsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymodernwest.json b/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymodernwest.json new file mode 100644 index 00000000..27777ab9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppingmedium_densitymodernwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppingmedium_densitymodernwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartzeast.json b/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartzeast.json new file mode 100644 index 00000000..cf008925 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartzeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppingmedium_densityquartzeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartznorth.json b/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartznorth.json new file mode 100644 index 00000000..00c98381 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartznorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppingmedium_densityquartznorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartzsouth.json b/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartzsouth.json new file mode 100644 index 00000000..d421c63b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartzsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppingmedium_densityquartzsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartzwest.json b/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartzwest.json new file mode 100644 index 00000000..6f38c664 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/shoppingmedium_densityquartzwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/shoppingmedium_densityquartzwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/survivalsmallbuilding.json b/src/main/resources/assets/imsm/models/item/survivalsmallbuilding.json new file mode 100644 index 00000000..b37823e0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/survivalsmallbuilding.json @@ -0,0 +1 @@ +{"parent": "imsm:block/survivalsmallbuilding", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/survivalwoodenhouse.json b/src/main/resources/assets/imsm/models/item/survivalwoodenhouse.json new file mode 100644 index 00000000..d6279f6c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/survivalwoodenhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/survivalwoodenhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportairportrunway_eastwestbuilding_north.json b/src/main/resources/assets/imsm/models/item/transportairportrunway_eastwestbuilding_north.json new file mode 100644 index 00000000..42fa00d4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportairportrunway_eastwestbuilding_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportairportrunway_eastwestbuilding_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportairportrunway_eastwestbuilding_south.json b/src/main/resources/assets/imsm/models/item/transportairportrunway_eastwestbuilding_south.json new file mode 100644 index 00000000..0816856c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportairportrunway_eastwestbuilding_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportairportrunway_eastwestbuilding_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportairportrunway_northsouthbuilding_east.json b/src/main/resources/assets/imsm/models/item/transportairportrunway_northsouthbuilding_east.json new file mode 100644 index 00000000..49669b3f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportairportrunway_northsouthbuilding_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportairportrunway_northsouthbuilding_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportairportrunway_northsouthbuilding_west.json b/src/main/resources/assets/imsm/models/item/transportairportrunway_northsouthbuilding_west.json new file mode 100644 index 00000000..9ec08a64 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportairportrunway_northsouthbuilding_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportairportrunway_northsouthbuilding_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenue1eastwest.json b/src/main/resources/assets/imsm/models/item/transportavenue1eastwest.json new file mode 100644 index 00000000..ce3ad83b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenue1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenue1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenue1northsouth.json b/src/main/resources/assets/imsm/models/item/transportavenue1northsouth.json new file mode 100644 index 00000000..fff7ca49 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenue1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenue1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenue2eastwest.json b/src/main/resources/assets/imsm/models/item/transportavenue2eastwest.json new file mode 100644 index 00000000..35a961b6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenue2eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenue2eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenue2northsouth.json b/src/main/resources/assets/imsm/models/item/transportavenue2northsouth.json new file mode 100644 index 00000000..5fe4ac3d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenue2northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenue2northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenueeeast.json b/src/main/resources/assets/imsm/models/item/transportavenueeeast.json new file mode 100644 index 00000000..696558a4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenueeeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenueeeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenueenorth.json b/src/main/resources/assets/imsm/models/item/transportavenueenorth.json new file mode 100644 index 00000000..fb35e834 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenueenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenueenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenueesouth.json b/src/main/resources/assets/imsm/models/item/transportavenueesouth.json new file mode 100644 index 00000000..d84e4d22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenueesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenueesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenueewest.json b/src/main/resources/assets/imsm/models/item/transportavenueewest.json new file mode 100644 index 00000000..ff617896 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenueewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenueewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenuelnortheast.json b/src/main/resources/assets/imsm/models/item/transportavenuelnortheast.json new file mode 100644 index 00000000..9f89432d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenuelnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenuelnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenuelnorthwest.json b/src/main/resources/assets/imsm/models/item/transportavenuelnorthwest.json new file mode 100644 index 00000000..457946e0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenuelnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenuelnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenuelsoutheast.json b/src/main/resources/assets/imsm/models/item/transportavenuelsoutheast.json new file mode 100644 index 00000000..74da4354 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenuelsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenuelsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenuelsouthwest.json b/src/main/resources/assets/imsm/models/item/transportavenuelsouthwest.json new file mode 100644 index 00000000..4d9d1327 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenuelsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenuelsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenuetnortheastwest.json b/src/main/resources/assets/imsm/models/item/transportavenuetnortheastwest.json new file mode 100644 index 00000000..18e3bba3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenuetnortheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenuetnortheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenuetnorthsoutheast.json b/src/main/resources/assets/imsm/models/item/transportavenuetnorthsoutheast.json new file mode 100644 index 00000000..decb161d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenuetnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenuetnorthsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenuetnorthsouthwest.json b/src/main/resources/assets/imsm/models/item/transportavenuetnorthsouthwest.json new file mode 100644 index 00000000..3ad23f24 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenuetnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenuetnorthsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenuetsoutheastwest.json b/src/main/resources/assets/imsm/models/item/transportavenuetsoutheastwest.json new file mode 100644 index 00000000..d962b80f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenuetsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenuetsoutheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportavenuexnorthsoutheastwest.json b/src/main/resources/assets/imsm/models/item/transportavenuexnorthsoutheastwest.json new file mode 100644 index 00000000..8f3f563a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportavenuexnorthsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportavenuexnorthsoutheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenue1eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenue1eastwest.json new file mode 100644 index 00000000..7df55c25 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenue1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenue1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenue1northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenue1northsouth.json new file mode 100644 index 00000000..a807789d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenue1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenue1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenue2northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenue2northsouth.json new file mode 100644 index 00000000..9f390ad2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenue2northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenue2northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenue2southwest.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenue2southwest.json new file mode 100644 index 00000000..c25c9fd8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenue2southwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenue2southwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenue3eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenue3eastwest.json new file mode 100644 index 00000000..aba8db7b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenue3eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenue3eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenue3northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenue3northsouth.json new file mode 100644 index 00000000..d0bc61fa --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenue3northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenue3northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenue4eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenue4eastwest.json new file mode 100644 index 00000000..e342570c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenue4eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenue4eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenue4northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenue4northsouth.json new file mode 100644 index 00000000..f651ce7c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenue4northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenue4northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenuelnortheast.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenuelnortheast.json new file mode 100644 index 00000000..c584bdba --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenuelnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenuelnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenuelnorthwest.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenuelnorthwest.json new file mode 100644 index 00000000..39bdeb30 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenuelnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenuelnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenuelsoutheast.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenuelsoutheast.json new file mode 100644 index 00000000..219aeced --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenuelsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenuelsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeavenuelsouthwest.json b/src/main/resources/assets/imsm/models/item/transportbridgeavenuelsouthwest.json new file mode 100644 index 00000000..26bee1ec --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeavenuelsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeavenuelsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighway1eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgehighway1eastwest.json new file mode 100644 index 00000000..1022ab0e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighway1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighway1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighway1northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgehighway1northsouth.json new file mode 100644 index 00000000..39510ad4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighway1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighway1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighway2eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgehighway2eastwest.json new file mode 100644 index 00000000..487740b1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighway2eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighway2eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighway2northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgehighway2northsouth.json new file mode 100644 index 00000000..532970c8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighway2northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighway2northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighway3eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgehighway3eastwest.json new file mode 100644 index 00000000..3258db76 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighway3eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighway3eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighway3northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgehighway3northsouth.json new file mode 100644 index 00000000..8fcadf92 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighway3northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighway3northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighway4eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgehighway4eastwest.json new file mode 100644 index 00000000..3f47484e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighway4eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighway4eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighway4northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgehighway4northsouth.json new file mode 100644 index 00000000..083685b7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighway4northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighway4northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighwaylnortheast.json b/src/main/resources/assets/imsm/models/item/transportbridgehighwaylnortheast.json new file mode 100644 index 00000000..12c5906e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighwaylnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighwaylnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighwaylnorthwest.json b/src/main/resources/assets/imsm/models/item/transportbridgehighwaylnorthwest.json new file mode 100644 index 00000000..e9fced2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighwaylnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighwaylnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighwaylsoutheast.json b/src/main/resources/assets/imsm/models/item/transportbridgehighwaylsoutheast.json new file mode 100644 index 00000000..a93bc15c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighwaylsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighwaylsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgehighwaylsouthwest.json b/src/main/resources/assets/imsm/models/item/transportbridgehighwaylsouthwest.json new file mode 100644 index 00000000..ba3d5370 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgehighwaylsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgehighwaylsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeroad1eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgeroad1eastwest.json new file mode 100644 index 00000000..310af05d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeroad1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeroad1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeroad1northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgeroad1northsouth.json new file mode 100644 index 00000000..a0caffb3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeroad1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeroad1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeroad2eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgeroad2eastwest.json new file mode 100644 index 00000000..06475775 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeroad2eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeroad2eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeroad2northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgeroad2northsouth.json new file mode 100644 index 00000000..cdcc822f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeroad2northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeroad2northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeroadlnortheast.json b/src/main/resources/assets/imsm/models/item/transportbridgeroadlnortheast.json new file mode 100644 index 00000000..346e8c0a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeroadlnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeroadlnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeroadlnorthwest.json b/src/main/resources/assets/imsm/models/item/transportbridgeroadlnorthwest.json new file mode 100644 index 00000000..5f77ef95 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeroadlnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeroadlnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeroadlsoutheast.json b/src/main/resources/assets/imsm/models/item/transportbridgeroadlsoutheast.json new file mode 100644 index 00000000..9e4e9802 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeroadlsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeroadlsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgeroadlsouthwest.json b/src/main/resources/assets/imsm/models/item/transportbridgeroadlsouthwest.json new file mode 100644 index 00000000..02f8a439 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgeroadlsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgeroadlsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgestreet1eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgestreet1eastwest.json new file mode 100644 index 00000000..b3652906 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgestreet1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgestreet1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgestreet1northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgestreet1northsouth.json new file mode 100644 index 00000000..89b8e23e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgestreet1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgestreet1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgestreet2eastwest.json b/src/main/resources/assets/imsm/models/item/transportbridgestreet2eastwest.json new file mode 100644 index 00000000..b32f4225 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgestreet2eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgestreet2eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgestreet2northsouth.json b/src/main/resources/assets/imsm/models/item/transportbridgestreet2northsouth.json new file mode 100644 index 00000000..5dbcf3ca --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgestreet2northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgestreet2northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgestreetlnortheast.json b/src/main/resources/assets/imsm/models/item/transportbridgestreetlnortheast.json new file mode 100644 index 00000000..7e7e7910 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgestreetlnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgestreetlnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgestreetlnorthwest.json b/src/main/resources/assets/imsm/models/item/transportbridgestreetlnorthwest.json new file mode 100644 index 00000000..4f068fc2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgestreetlnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgestreetlnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgestreetlsoutheast.json b/src/main/resources/assets/imsm/models/item/transportbridgestreetlsoutheast.json new file mode 100644 index 00000000..1c1f2187 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgestreetlsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgestreetlsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportbridgestreetlsouthwest.json b/src/main/resources/assets/imsm/models/item/transportbridgestreetlsouthwest.json new file mode 100644 index 00000000..c56c60ba --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportbridgestreetlsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportbridgestreetlsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_eaststreet_northwestside.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_eaststreet_northwestside.json new file mode 100644 index 00000000..a89007de --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_eaststreet_northwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_street1avenue_eaststreet_northwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_eaststreet_southwestside.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_eaststreet_southwestside.json new file mode 100644 index 00000000..7c9a038b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_eaststreet_southwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_street1avenue_eaststreet_southwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_northstreet_southeastside.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_northstreet_southeastside.json new file mode 100644 index 00000000..d30d0479 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_northstreet_southeastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_street1avenue_northstreet_southeastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_northstreet_southwestside.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_northstreet_southwestside.json new file mode 100644 index 00000000..6a374777 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_northstreet_southwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_street1avenue_northstreet_southwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_southstreet_northeastside.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_southstreet_northeastside.json new file mode 100644 index 00000000..f2beeb15 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_southstreet_northeastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_street1avenue_southstreet_northeastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_southstreet_northwestside.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_southstreet_northwestside.json new file mode 100644 index 00000000..598e18a1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_southstreet_northwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_street1avenue_southstreet_northwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_weststreet_northeastside.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_weststreet_northeastside.json new file mode 100644 index 00000000..9d53676b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_weststreet_northeastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_street1avenue_weststreet_northeastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_weststreet_southeastside.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_weststreet_southeastside.json new file mode 100644 index 00000000..c76ab5c0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_street1avenue_weststreet_southeastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_street1avenue_weststreet_southeastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_eaststreet_north.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_eaststreet_north.json new file mode 100644 index 00000000..e6cf726e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_eaststreet_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streetlavenue_eaststreet_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_eaststreet_south.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_eaststreet_south.json new file mode 100644 index 00000000..39d66d55 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_eaststreet_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streetlavenue_eaststreet_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_northstreet_east.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_northstreet_east.json new file mode 100644 index 00000000..be31f20d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_northstreet_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streetlavenue_northstreet_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_northstreet_west.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_northstreet_west.json new file mode 100644 index 00000000..f40c14dd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_northstreet_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streetlavenue_northstreet_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_southstreet_east.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_southstreet_east.json new file mode 100644 index 00000000..8fdced47 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_southstreet_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streetlavenue_southstreet_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_southstreet_west.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_southstreet_west.json new file mode 100644 index 00000000..cbeb4481 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_southstreet_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streetlavenue_southstreet_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_weststreet_north.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_weststreet_north.json new file mode 100644 index 00000000..77867154 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_weststreet_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streetlavenue_weststreet_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_weststreet_south.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_weststreet_south.json new file mode 100644 index 00000000..9bf3a364 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetlavenue_weststreet_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streetlavenue_weststreet_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_eaststreet_northsouth.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_eaststreet_northsouth.json new file mode 100644 index 00000000..16e247a2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_eaststreet_northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streettavenue_eaststreet_northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_eastweststreet_north.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_eastweststreet_north.json new file mode 100644 index 00000000..50f636d5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_eastweststreet_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streettavenue_eastweststreet_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_eastweststreet_south.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_eastweststreet_south.json new file mode 100644 index 00000000..d4ac8148 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_eastweststreet_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streettavenue_eastweststreet_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_northsouthstreet_east.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_northsouthstreet_east.json new file mode 100644 index 00000000..eabb8b1f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_northsouthstreet_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streettavenue_northsouthstreet_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_northsouthstreet_west.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_northsouthstreet_west.json new file mode 100644 index 00000000..3a38501a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_northsouthstreet_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streettavenue_northsouthstreet_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_northstreet_eastwest.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_northstreet_eastwest.json new file mode 100644 index 00000000..687fffbd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_northstreet_eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streettavenue_northstreet_eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_southstreet_eastwest.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_southstreet_eastwest.json new file mode 100644 index 00000000..ed556275 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_southstreet_eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streettavenue_southstreet_eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_weststreet_northsouth.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_weststreet_northsouth.json new file mode 100644 index 00000000..799129f0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streettavenue_weststreet_northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streettavenue_weststreet_northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetxavenue_eastweststreet_northsouth.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetxavenue_eastweststreet_northsouth.json new file mode 100644 index 00000000..9f91fec6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetxavenue_eastweststreet_northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streetxavenue_eastweststreet_northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest.json b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest.json new file mode 100644 index 00000000..98794316 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectoravenue_streetxavenue_northsouthstreet_eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_eastavenue_west.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_eastavenue_west.json new file mode 100644 index 00000000..27ff56bd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_eastavenue_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_avenuebridge_eastavenue_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_northavenue_south.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_northavenue_south.json new file mode 100644 index 00000000..5961262a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_northavenue_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_avenuebridge_northavenue_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_southavenue_north.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_southavenue_north.json new file mode 100644 index 00000000..34950a5d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_southavenue_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_avenuebridge_southavenue_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_westavenue_east.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_westavenue_east.json new file mode 100644 index 00000000..fdd85099 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_avenuebridge_westavenue_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_avenuebridge_westavenue_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_eastroad_west.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_eastroad_west.json new file mode 100644 index 00000000..7a2541d8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_eastroad_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_roadbridge_eastroad_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_northroad_south.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_northroad_south.json new file mode 100644 index 00000000..4f48b09a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_northroad_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_roadbridge_northroad_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_southroad_north.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_southroad_north.json new file mode 100644 index 00000000..0c20f8fc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_southroad_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_roadbridge_southroad_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_westroad_east.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_westroad_east.json new file mode 100644 index 00000000..0bbe83b6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_roadbridge_westroad_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_roadbridge_westroad_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_eaststreet_west.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_eaststreet_west.json new file mode 100644 index 00000000..da2d9f1d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_eaststreet_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_streetbridge_eaststreet_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_northstreet_south.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_northstreet_south.json new file mode 100644 index 00000000..07c893e1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_northstreet_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_streetbridge_northstreet_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_southstreet_north.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_southstreet_north.json new file mode 100644 index 00000000..9f9be5e0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_southstreet_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_streetbridge_southstreet_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_weststreet_east.json b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_weststreet_east.json new file mode 100644 index 00000000..3e7f42c5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorbridge_streetbridge_weststreet_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorbridge_streetbridge_weststreet_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_eastavenue_west.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_eastavenue_west.json new file mode 100644 index 00000000..0e045601 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_eastavenue_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighway_avenuehighway_eastavenue_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_northavenue_south.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_northavenue_south.json new file mode 100644 index 00000000..fa7e4f4d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_northavenue_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighway_avenuehighway_northavenue_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_southavenue_north.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_southavenue_north.json new file mode 100644 index 00000000..113c807a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_southavenue_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighway_avenuehighway_southavenue_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_westavenue_east.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_westavenue_east.json new file mode 100644 index 00000000..6cfe675d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_avenuehighway_westavenue_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighway_avenuehighway_westavenue_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west.json new file mode 100644 index 00000000..f169b36e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighway_highwayfloorhighway_easthighwayfloor_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south.json new file mode 100644 index 00000000..1fee7626 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighway_highwayfloorhighway_northhighwayfloor_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north.json new file mode 100644 index 00000000..525a5848 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighway_highwayfloorhighway_southhighwayfloor_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east.json new file mode 100644 index 00000000..6bc29f93 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighway_highwayfloorhighway_westhighwayfloor_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west.json new file mode 100644 index 00000000..93772b2d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighwayfloor_avenuehighwayfloor_eastavenue_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south.json new file mode 100644 index 00000000..2e99f9a5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighwayfloor_avenuehighwayfloor_northavenue_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north.json new file mode 100644 index 00000000..0f4b104e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighwayfloor_avenuehighwayfloor_southavenue_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east.json b/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east.json new file mode 100644 index 00000000..49673048 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportconnectorhighwayfloor_avenuehighwayfloor_westavenuefloor_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourbigeast.json b/src/main/resources/assets/imsm/models/item/transportharbourbigeast.json new file mode 100644 index 00000000..8f9c3bfc --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourbigeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourbigeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourbignorth.json b/src/main/resources/assets/imsm/models/item/transportharbourbignorth.json new file mode 100644 index 00000000..7b2efd01 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourbignorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourbignorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourbigsouth.json b/src/main/resources/assets/imsm/models/item/transportharbourbigsouth.json new file mode 100644 index 00000000..15f4b0fb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourbigsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourbigsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourbigwest.json b/src/main/resources/assets/imsm/models/item/transportharbourbigwest.json new file mode 100644 index 00000000..9a65219c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourbigwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourbigwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside1cornernortheast.json b/src/main/resources/assets/imsm/models/item/transportharbourside1cornernortheast.json new file mode 100644 index 00000000..78145587 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside1cornernortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside1cornernortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside1cornernorthwest.json b/src/main/resources/assets/imsm/models/item/transportharbourside1cornernorthwest.json new file mode 100644 index 00000000..e9c29c64 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside1cornernorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside1cornernorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside1cornersoutheast.json b/src/main/resources/assets/imsm/models/item/transportharbourside1cornersoutheast.json new file mode 100644 index 00000000..720cd8c5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside1cornersoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside1cornersoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside1cornersouthwest.json b/src/main/resources/assets/imsm/models/item/transportharbourside1cornersouthwest.json new file mode 100644 index 00000000..fb82dc0a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside1cornersouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside1cornersouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside2cornercraneeast.json b/src/main/resources/assets/imsm/models/item/transportharbourside2cornercraneeast.json new file mode 100644 index 00000000..8802b37f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside2cornercraneeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside2cornercraneeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside2cornercranenorth.json b/src/main/resources/assets/imsm/models/item/transportharbourside2cornercranenorth.json new file mode 100644 index 00000000..11eca82e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside2cornercranenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside2cornercranenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside2cornercranesouth.json b/src/main/resources/assets/imsm/models/item/transportharbourside2cornercranesouth.json new file mode 100644 index 00000000..5d968187 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside2cornercranesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside2cornercranesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside2cornercranewest.json b/src/main/resources/assets/imsm/models/item/transportharbourside2cornercranewest.json new file mode 100644 index 00000000..31db5067 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside2cornercranewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside2cornercranewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside2cornereast.json b/src/main/resources/assets/imsm/models/item/transportharbourside2cornereast.json new file mode 100644 index 00000000..12b8dc7e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside2cornereast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside2cornereast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside2cornernorth.json b/src/main/resources/assets/imsm/models/item/transportharbourside2cornernorth.json new file mode 100644 index 00000000..1100331d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside2cornernorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside2cornernorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside2cornersouth.json b/src/main/resources/assets/imsm/models/item/transportharbourside2cornersouth.json new file mode 100644 index 00000000..c9afa5e5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside2cornersouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside2cornersouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside2cornerwest.json b/src/main/resources/assets/imsm/models/item/transportharbourside2cornerwest.json new file mode 100644 index 00000000..79eb29ed --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside2cornerwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside2cornerwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside3cornernortheast_northwest_southeast.json b/src/main/resources/assets/imsm/models/item/transportharbourside3cornernortheast_northwest_southeast.json new file mode 100644 index 00000000..40cc11bf --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside3cornernortheast_northwest_southeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside3cornernortheast_northwest_southeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside3cornernortheast_northwest_southwest.json b/src/main/resources/assets/imsm/models/item/transportharbourside3cornernortheast_northwest_southwest.json new file mode 100644 index 00000000..427db073 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside3cornernortheast_northwest_southwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside3cornernortheast_northwest_southwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside3cornernortheast_southeast_southwest.json b/src/main/resources/assets/imsm/models/item/transportharbourside3cornernortheast_southeast_southwest.json new file mode 100644 index 00000000..0ef8ffbf --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside3cornernortheast_southeast_southwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside3cornernortheast_southeast_southwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharbourside3cornernorthwest_southeast_southwest.json b/src/main/resources/assets/imsm/models/item/transportharbourside3cornernorthwest_southeast_southwest.json new file mode 100644 index 00000000..1efbdca3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharbourside3cornernorthwest_southeast_southwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharbourside3cornernorthwest_southeast_southwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharboursmalleast.json b/src/main/resources/assets/imsm/models/item/transportharboursmalleast.json new file mode 100644 index 00000000..d6b50b51 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharboursmalleast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharboursmalleast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharboursmallnorth.json b/src/main/resources/assets/imsm/models/item/transportharboursmallnorth.json new file mode 100644 index 00000000..b5f652b1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharboursmallnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharboursmallnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharboursmallsouth.json b/src/main/resources/assets/imsm/models/item/transportharboursmallsouth.json new file mode 100644 index 00000000..10b2218c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharboursmallsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharboursmallsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportharboursmallwest.json b/src/main/resources/assets/imsm/models/item/transportharboursmallwest.json new file mode 100644 index 00000000..d09f50a0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportharboursmallwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportharboursmallwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighway05eastwestnorthside.json b/src/main/resources/assets/imsm/models/item/transporthighway05eastwestnorthside.json new file mode 100644 index 00000000..03126a4b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighway05eastwestnorthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighway05eastwestnorthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighway05eastwestsouthside.json b/src/main/resources/assets/imsm/models/item/transporthighway05eastwestsouthside.json new file mode 100644 index 00000000..8c544646 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighway05eastwestsouthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighway05eastwestsouthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighway05northsoutheastside.json b/src/main/resources/assets/imsm/models/item/transporthighway05northsoutheastside.json new file mode 100644 index 00000000..4150958e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighway05northsoutheastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighway05northsoutheastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighway05northsouthwestside.json b/src/main/resources/assets/imsm/models/item/transporthighway05northsouthwestside.json new file mode 100644 index 00000000..52087e6d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighway05northsouthwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighway05northsouthwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighway1eastwest.json b/src/main/resources/assets/imsm/models/item/transporthighway1eastwest.json new file mode 100644 index 00000000..c4f51701 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighway1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighway1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighway1northsouth.json b/src/main/resources/assets/imsm/models/item/transporthighway1northsouth.json new file mode 100644 index 00000000..adfea502 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighway1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighway1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighway2eastwest.json b/src/main/resources/assets/imsm/models/item/transporthighway2eastwest.json new file mode 100644 index 00000000..f2984981 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighway2eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighway2eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighway2northsouth.json b/src/main/resources/assets/imsm/models/item/transporthighway2northsouth.json new file mode 100644 index 00000000..607f4eeb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighway2northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighway2northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayeastwesteastside.json b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayeastwesteastside.json new file mode 100644 index 00000000..102acb87 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayeastwesteastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaydrivewayeastwesteastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayeastwestwestside.json b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayeastwestwestside.json new file mode 100644 index 00000000..afbc51bb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayeastwestwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaydrivewayeastwestwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexiteastwesteastside.json b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexiteastwesteastside.json new file mode 100644 index 00000000..6577b33c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexiteastwesteastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaydrivewayexiteastwesteastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexiteastwestwestside.json b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexiteastwestwestside.json new file mode 100644 index 00000000..46261337 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexiteastwestwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaydrivewayexiteastwestwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexitnorthsouthnorthside.json new file mode 100644 index 00000000..84fa1e9c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaydrivewayexitnorthsouthnorthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexitnorthsouthsouthside.json new file mode 100644 index 00000000..b6c6c75a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewayexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaydrivewayexitnorthsouthsouthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaydrivewaynorthsouthnorthside.json b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewaynorthsouthnorthside.json new file mode 100644 index 00000000..050c0175 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewaynorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaydrivewaynorthsouthnorthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaydrivewaynorthsouthsouthside.json b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewaynorthsouthsouthside.json new file mode 100644 index 00000000..53d878d0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaydrivewaynorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaydrivewaynorthsouthsouthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayexiteastwesteastside.json b/src/main/resources/assets/imsm/models/item/transporthighwayexiteastwesteastside.json new file mode 100644 index 00000000..321a5ab3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayexiteastwesteastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayexiteastwesteastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayexiteastwestwestside.json b/src/main/resources/assets/imsm/models/item/transporthighwayexiteastwestwestside.json new file mode 100644 index 00000000..7e32589a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayexiteastwestwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayexiteastwestwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/models/item/transporthighwayexitnorthsouthnorthside.json new file mode 100644 index 00000000..92cd72cd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayexitnorthsouthnorthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/models/item/transporthighwayexitnorthsouthsouthside.json new file mode 100644 index 00000000..4d9e8e4b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayexitnorthsouthsouthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloor05eastwestnorthside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloor05eastwestnorthside.json new file mode 100644 index 00000000..fc45db03 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloor05eastwestnorthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloor05eastwestnorthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloor05eastwestsouthside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloor05eastwestsouthside.json new file mode 100644 index 00000000..0b3aee53 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloor05eastwestsouthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloor05eastwestsouthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloor05northsoutheastside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloor05northsoutheastside.json new file mode 100644 index 00000000..dd080e7c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloor05northsoutheastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloor05northsoutheastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloor05northsouthwestside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloor05northsouthwestside.json new file mode 100644 index 00000000..67921c89 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloor05northsouthwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloor05northsouthwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloor1eastwest.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloor1eastwest.json new file mode 100644 index 00000000..6af63838 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloor1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloor1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloor1northsouth.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloor1northsouth.json new file mode 100644 index 00000000..29de3830 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloor1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloor1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloor2eastwest.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloor2eastwest.json new file mode 100644 index 00000000..bd22ed24 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloor2eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloor2eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloor2northsouth.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloor2northsouth.json new file mode 100644 index 00000000..67dd071f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloor2northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloor2northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayeastwesteastside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayeastwesteastside.json new file mode 100644 index 00000000..dd5858d2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayeastwesteastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloordrivewayeastwesteastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayeastwestwestside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayeastwestwestside.json new file mode 100644 index 00000000..dd352b05 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayeastwestwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloordrivewayeastwestwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexiteastwesteastside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexiteastwesteastside.json new file mode 100644 index 00000000..36c8d2b9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexiteastwesteastside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloordrivewayexiteastwesteastside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexiteastwestwestside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexiteastwestwestside.json new file mode 100644 index 00000000..993fc627 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexiteastwestwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloordrivewayexiteastwestwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexitnorthsouthnorthside.json new file mode 100644 index 00000000..bf431ed1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloordrivewayexitnorthsouthnorthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexitnorthsouthsouthside.json new file mode 100644 index 00000000..f2542aa7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewayexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloordrivewayexitnorthsouthsouthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewaynorthsouthnorthside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewaynorthsouthnorthside.json new file mode 100644 index 00000000..6a8c8b72 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewaynorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloordrivewaynorthsouthnorthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewaynorthsouthsouthside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewaynorthsouthsouthside.json new file mode 100644 index 00000000..b37476e6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloordrivewaynorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloordrivewaynorthsouthsouthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloorexiteastwesteast.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloorexiteastwesteast.json new file mode 100644 index 00000000..f7254f33 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloorexiteastwesteast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloorexiteastwesteast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloorexiteastwestwestside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloorexiteastwestwestside.json new file mode 100644 index 00000000..888a819a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloorexiteastwestwestside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloorexiteastwestwestside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloorexitnorthsouthnorthside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloorexitnorthsouthnorthside.json new file mode 100644 index 00000000..53f734fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloorexitnorthsouthnorthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloorexitnorthsouthnorthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloorexitnorthsouthsouthside.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloorexitnorthsouthsouthside.json new file mode 100644 index 00000000..1bcd7f0e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloorexitnorthsouthsouthside.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloorexitnorthsouthsouthside", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloorlnortheast.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloorlnortheast.json new file mode 100644 index 00000000..20d07bd6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloorlnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloorlnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloorlnorthwest.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloorlnorthwest.json new file mode 100644 index 00000000..01f930b2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloorlnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloorlnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloorlsoutheast.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloorlsoutheast.json new file mode 100644 index 00000000..22669441 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloorlsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloorlsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloorlsouthwest.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloorlsouthwest.json new file mode 100644 index 00000000..347bc6e9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloorlsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloorlsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloortnortheastwest.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloortnortheastwest.json new file mode 100644 index 00000000..0ab57038 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloortnortheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloortnortheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloortnorthsoutheast.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloortnorthsoutheast.json new file mode 100644 index 00000000..04886e57 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloortnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloortnorthsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloortnorthsouthwest.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloortnorthsouthwest.json new file mode 100644 index 00000000..eea3f8b5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloortnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloortnorthsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloortsoutheastwest.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloortsoutheastwest.json new file mode 100644 index 00000000..5b55e333 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloortsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloortsoutheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayfloorxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/transporthighwayfloorxnortheastsouthwest.json new file mode 100644 index 00000000..a987300a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayfloorxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayfloorxnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaylnortheast.json b/src/main/resources/assets/imsm/models/item/transporthighwaylnortheast.json new file mode 100644 index 00000000..643b1d6b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaylnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaylnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaylnorthwest.json b/src/main/resources/assets/imsm/models/item/transporthighwaylnorthwest.json new file mode 100644 index 00000000..c912cfb1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaylnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaylnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaylsoutheast.json b/src/main/resources/assets/imsm/models/item/transporthighwaylsoutheast.json new file mode 100644 index 00000000..de95731e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaylsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaylsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaylsouthwest.json b/src/main/resources/assets/imsm/models/item/transporthighwaylsouthwest.json new file mode 100644 index 00000000..742cfdb4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaylsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaylsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaytnortheastwest.json b/src/main/resources/assets/imsm/models/item/transporthighwaytnortheastwest.json new file mode 100644 index 00000000..3fd78507 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaytnortheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaytnortheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaytnorthsoutheast.json b/src/main/resources/assets/imsm/models/item/transporthighwaytnorthsoutheast.json new file mode 100644 index 00000000..a6512e8c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaytnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaytnorthsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaytnorthsouthwest.json b/src/main/resources/assets/imsm/models/item/transporthighwaytnorthsouthwest.json new file mode 100644 index 00000000..f09af4a3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaytnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaytnorthsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwaytsoutheastwest.json b/src/main/resources/assets/imsm/models/item/transporthighwaytsoutheastwest.json new file mode 100644 index 00000000..258f9b09 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwaytsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwaytsoutheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transporthighwayxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/transporthighwayxnortheastsouthwest.json new file mode 100644 index 00000000..9c789165 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transporthighwayxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transporthighwayxnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_easttram_west.json b/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_easttram_west.json new file mode 100644 index 00000000..89cbf558 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_easttram_west.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublicconnectorhightram_tramhightram_easttram_west", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_northtram_south.json b/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_northtram_south.json new file mode 100644 index 00000000..9038eccd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_northtram_south.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublicconnectorhightram_tramhightram_northtram_south", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_southtram_north.json b/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_southtram_north.json new file mode 100644 index 00000000..31514d96 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_southtram_north.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublicconnectorhightram_tramhightram_southtram_north", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_westtram_east.json b/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_westtram_east.json new file mode 100644 index 00000000..d2a97899 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublicconnectorhightram_tramhightram_westtram_east.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublicconnectorhightram_tramhightram_westtram_east", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightram1eastwest.json b/src/main/resources/assets/imsm/models/item/transportpublichightram1eastwest.json new file mode 100644 index 00000000..16413ff3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightram1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightram1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightram1northsouth.json b/src/main/resources/assets/imsm/models/item/transportpublichightram1northsouth.json new file mode 100644 index 00000000..222f41a9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightram1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightram1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightrameeast.json b/src/main/resources/assets/imsm/models/item/transportpublichightrameeast.json new file mode 100644 index 00000000..1cd72424 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightrameeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightrameeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightramenorth.json b/src/main/resources/assets/imsm/models/item/transportpublichightramenorth.json new file mode 100644 index 00000000..eae10560 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightramenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightramenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightramesouth.json b/src/main/resources/assets/imsm/models/item/transportpublichightramesouth.json new file mode 100644 index 00000000..5e92239d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightramesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightramesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightramewest.json b/src/main/resources/assets/imsm/models/item/transportpublichightramewest.json new file mode 100644 index 00000000..95b69c35 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightramewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightramewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightramlnortheast.json b/src/main/resources/assets/imsm/models/item/transportpublichightramlnortheast.json new file mode 100644 index 00000000..a79a4269 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightramlnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightramlnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightramlnorthwest.json b/src/main/resources/assets/imsm/models/item/transportpublichightramlnorthwest.json new file mode 100644 index 00000000..1fa3a9ef --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightramlnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightramlnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightramlsoutheast.json b/src/main/resources/assets/imsm/models/item/transportpublichightramlsoutheast.json new file mode 100644 index 00000000..fab29119 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightramlsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightramlsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightramlsouthwest.json b/src/main/resources/assets/imsm/models/item/transportpublichightramlsouthwest.json new file mode 100644 index 00000000..af783e50 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightramlsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightramlsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightramstationeastwest.json b/src/main/resources/assets/imsm/models/item/transportpublichightramstationeastwest.json new file mode 100644 index 00000000..ea868973 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightramstationeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightramstationeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightramstationnorthsouth.json b/src/main/resources/assets/imsm/models/item/transportpublichightramstationnorthsouth.json new file mode 100644 index 00000000..86b55625 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightramstationnorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightramstationnorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublichightramxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/transportpublichightramxnortheastsouthwest.json new file mode 100644 index 00000000..15571e98 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublichightramxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublichightramxnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram1eastwest.json b/src/main/resources/assets/imsm/models/item/transportpublictram1eastwest.json new file mode 100644 index 00000000..d52fa286 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram1northsouth.json b/src/main/resources/assets/imsm/models/item/transportpublictram1northsouth.json new file mode 100644 index 00000000..ed7da2d7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram_on_road1eastwest.json b/src/main/resources/assets/imsm/models/item/transportpublictram_on_road1eastwest.json new file mode 100644 index 00000000..b668be6f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram_on_road1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram_on_road1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram_on_road1northsouth.json b/src/main/resources/assets/imsm/models/item/transportpublictram_on_road1northsouth.json new file mode 100644 index 00000000..e7d490b6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram_on_road1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram_on_road1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadeeast.json b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadeeast.json new file mode 100644 index 00000000..0964e2e8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadeeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram_on_roadeeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadenorth.json b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadenorth.json new file mode 100644 index 00000000..6d052efb --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram_on_roadenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadesouth.json b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadesouth.json new file mode 100644 index 00000000..5057c6c6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram_on_roadesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadewest.json b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadewest.json new file mode 100644 index 00000000..3c319cc2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram_on_roadewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlnortheast.json b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlnortheast.json new file mode 100644 index 00000000..4681019c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram_on_roadlnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlnorthwest.json b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlnorthwest.json new file mode 100644 index 00000000..34c384cf --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram_on_roadlnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlsoutheast.json b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlsoutheast.json new file mode 100644 index 00000000..78542831 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram_on_roadlsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlsouthwest.json b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlsouthwest.json new file mode 100644 index 00000000..11400cdd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictram_on_roadlsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictram_on_roadlsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictrameeast.json b/src/main/resources/assets/imsm/models/item/transportpublictrameeast.json new file mode 100644 index 00000000..da083ffe --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictrameeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictrameeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictramenorth.json b/src/main/resources/assets/imsm/models/item/transportpublictramenorth.json new file mode 100644 index 00000000..ace653ab --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictramenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictramenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictramesouth.json b/src/main/resources/assets/imsm/models/item/transportpublictramesouth.json new file mode 100644 index 00000000..eb44222a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictramesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictramesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictramewest.json b/src/main/resources/assets/imsm/models/item/transportpublictramewest.json new file mode 100644 index 00000000..078165b9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictramewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictramewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictramlnortheast.json b/src/main/resources/assets/imsm/models/item/transportpublictramlnortheast.json new file mode 100644 index 00000000..bfc0814a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictramlnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictramlnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictramlnorthwest.json b/src/main/resources/assets/imsm/models/item/transportpublictramlnorthwest.json new file mode 100644 index 00000000..ab71fa93 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictramlnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictramlnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictramlsoutheast.json b/src/main/resources/assets/imsm/models/item/transportpublictramlsoutheast.json new file mode 100644 index 00000000..3c3324c2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictramlsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictramlsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictramlsouthwest.json b/src/main/resources/assets/imsm/models/item/transportpublictramlsouthwest.json new file mode 100644 index 00000000..bce6036a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictramlsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictramlsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictramstationeastwest.json b/src/main/resources/assets/imsm/models/item/transportpublictramstationeastwest.json new file mode 100644 index 00000000..1cf4fef6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictramstationeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictramstationeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictramstationnorthsouth.json b/src/main/resources/assets/imsm/models/item/transportpublictramstationnorthsouth.json new file mode 100644 index 00000000..6df65585 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictramstationnorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictramstationnorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportpublictramxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/transportpublictramxnortheastsouthwest.json new file mode 100644 index 00000000..935180d2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportpublictramxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportpublictramxnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroad1eastwest.json b/src/main/resources/assets/imsm/models/item/transportroad1eastwest.json new file mode 100644 index 00000000..a9e40ce6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroad1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroad1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroad1northsouth.json b/src/main/resources/assets/imsm/models/item/transportroad1northsouth.json new file mode 100644 index 00000000..385e1d96 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroad1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroad1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadeeast.json b/src/main/resources/assets/imsm/models/item/transportroadeeast.json new file mode 100644 index 00000000..25e63232 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadeeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadeeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadenorth.json b/src/main/resources/assets/imsm/models/item/transportroadenorth.json new file mode 100644 index 00000000..5a03ad01 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadesouth.json b/src/main/resources/assets/imsm/models/item/transportroadesouth.json new file mode 100644 index 00000000..5f5f8130 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadewest.json b/src/main/resources/assets/imsm/models/item/transportroadewest.json new file mode 100644 index 00000000..05d6c909 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadlnortheast.json b/src/main/resources/assets/imsm/models/item/transportroadlnortheast.json new file mode 100644 index 00000000..87fc97ab --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadlnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadlnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadlnorthwest.json b/src/main/resources/assets/imsm/models/item/transportroadlnorthwest.json new file mode 100644 index 00000000..98ce0ef1 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadlnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadlnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadlsoutheast.json b/src/main/resources/assets/imsm/models/item/transportroadlsoutheast.json new file mode 100644 index 00000000..1f3ba63b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadlsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadlsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadlsouthwest.json b/src/main/resources/assets/imsm/models/item/transportroadlsouthwest.json new file mode 100644 index 00000000..8fb28b07 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadlsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadlsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadtnortheastwest.json b/src/main/resources/assets/imsm/models/item/transportroadtnortheastwest.json new file mode 100644 index 00000000..663714fd --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadtnortheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadtnortheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadtnorthsoutheast.json b/src/main/resources/assets/imsm/models/item/transportroadtnorthsoutheast.json new file mode 100644 index 00000000..6a6cb7b6 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadtnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadtnorthsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadtnorthsouthwest.json b/src/main/resources/assets/imsm/models/item/transportroadtnorthsouthwest.json new file mode 100644 index 00000000..0299104f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadtnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadtnorthsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadtsoutheastwest.json b/src/main/resources/assets/imsm/models/item/transportroadtsoutheastwest.json new file mode 100644 index 00000000..d3237b66 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadtsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadtsoutheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportroadxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/transportroadxnortheastsouthwest.json new file mode 100644 index 00000000..84709895 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportroadxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportroadxnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreet1eastwest.json b/src/main/resources/assets/imsm/models/item/transportstreet1eastwest.json new file mode 100644 index 00000000..1b37eaee --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreet1eastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreet1eastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreet1northsouth.json b/src/main/resources/assets/imsm/models/item/transportstreet1northsouth.json new file mode 100644 index 00000000..0eb08193 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreet1northsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreet1northsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreeteeast.json b/src/main/resources/assets/imsm/models/item/transportstreeteeast.json new file mode 100644 index 00000000..e3723f02 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreeteeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreeteeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreetenorth.json b/src/main/resources/assets/imsm/models/item/transportstreetenorth.json new file mode 100644 index 00000000..f834aaec --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreetenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreetenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreetesouth.json b/src/main/resources/assets/imsm/models/item/transportstreetesouth.json new file mode 100644 index 00000000..0558a009 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreetesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreetesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreetewest.json b/src/main/resources/assets/imsm/models/item/transportstreetewest.json new file mode 100644 index 00000000..4f860784 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreetewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreetewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreetlnortheast.json b/src/main/resources/assets/imsm/models/item/transportstreetlnortheast.json new file mode 100644 index 00000000..5f32013f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreetlnortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreetlnortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreetlnorthwest.json b/src/main/resources/assets/imsm/models/item/transportstreetlnorthwest.json new file mode 100644 index 00000000..bd6cd219 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreetlnorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreetlnorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreetlsoutheast.json b/src/main/resources/assets/imsm/models/item/transportstreetlsoutheast.json new file mode 100644 index 00000000..45ef9e68 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreetlsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreetlsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreetlsouthwest.json b/src/main/resources/assets/imsm/models/item/transportstreetlsouthwest.json new file mode 100644 index 00000000..022621cf --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreetlsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreetlsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreetroundaboutnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/transportstreetroundaboutnortheastsouthwest.json new file mode 100644 index 00000000..da1256d0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreetroundaboutnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreetroundaboutnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreettnortheastwest.json b/src/main/resources/assets/imsm/models/item/transportstreettnortheastwest.json new file mode 100644 index 00000000..91916b4e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreettnortheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreettnortheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreettnorthsoutheast.json b/src/main/resources/assets/imsm/models/item/transportstreettnorthsoutheast.json new file mode 100644 index 00000000..ae23df5c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreettnorthsoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreettnorthsoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreettnorthsouthwest.json b/src/main/resources/assets/imsm/models/item/transportstreettnorthsouthwest.json new file mode 100644 index 00000000..8b98de22 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreettnorthsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreettnorthsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreettsoutheastwest.json b/src/main/resources/assets/imsm/models/item/transportstreettsoutheastwest.json new file mode 100644 index 00000000..0bdf0cec --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreettsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreettsoutheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportstreetxnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/transportstreetxnortheastsouthwest.json new file mode 100644 index 00000000..6b5d4433 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportstreetxnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportstreetxnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater1cornernortheast.json b/src/main/resources/assets/imsm/models/item/transportwater1cornernortheast.json new file mode 100644 index 00000000..a6baf49f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater1cornernortheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater1cornernortheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater1cornernorthwest.json b/src/main/resources/assets/imsm/models/item/transportwater1cornernorthwest.json new file mode 100644 index 00000000..eadfb63e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater1cornernorthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater1cornernorthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater1cornersoutheast.json b/src/main/resources/assets/imsm/models/item/transportwater1cornersoutheast.json new file mode 100644 index 00000000..11dd9783 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater1cornersoutheast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater1cornersoutheast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater1cornersouthwest.json b/src/main/resources/assets/imsm/models/item/transportwater1cornersouthwest.json new file mode 100644 index 00000000..24a1ab9c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater1cornersouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater1cornersouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater2cornereast.json b/src/main/resources/assets/imsm/models/item/transportwater2cornereast.json new file mode 100644 index 00000000..167dbba3 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater2cornereast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater2cornereast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater2cornernorth.json b/src/main/resources/assets/imsm/models/item/transportwater2cornernorth.json new file mode 100644 index 00000000..ffb62b03 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater2cornernorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater2cornernorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater2cornersouth.json b/src/main/resources/assets/imsm/models/item/transportwater2cornersouth.json new file mode 100644 index 00000000..f618313f --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater2cornersouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater2cornersouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater2cornerwest.json b/src/main/resources/assets/imsm/models/item/transportwater2cornerwest.json new file mode 100644 index 00000000..3de8934e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater2cornerwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater2cornerwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater3cornernortheast_northwest_southeast.json b/src/main/resources/assets/imsm/models/item/transportwater3cornernortheast_northwest_southeast.json new file mode 100644 index 00000000..fa82ff68 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater3cornernortheast_northwest_southeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater3cornernortheast_northwest_southeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater3cornernortheast_northwest_southwest.json b/src/main/resources/assets/imsm/models/item/transportwater3cornernortheast_northwest_southwest.json new file mode 100644 index 00000000..97b9d7f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater3cornernortheast_northwest_southwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater3cornernortheast_northwest_southwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater3cornersoutheast_southwest_northeast.json b/src/main/resources/assets/imsm/models/item/transportwater3cornersoutheast_southwest_northeast.json new file mode 100644 index 00000000..d7b556a7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater3cornersoutheast_southwest_northeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater3cornersoutheast_southwest_northeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater3cornersoutheast_southwest_northwest.json b/src/main/resources/assets/imsm/models/item/transportwater3cornersoutheast_southwest_northwest.json new file mode 100644 index 00000000..a8346b21 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater3cornersoutheast_southwest_northwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater3cornersoutheast_southwest_northwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/transportwater4cornernorthsoutheastwest.json b/src/main/resources/assets/imsm/models/item/transportwater4cornernorthsoutheastwest.json new file mode 100644 index 00000000..90af780b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/transportwater4cornernorthsoutheastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/transportwater4cornernorthsoutheastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded0.json b/src/main/resources/assets/imsm/models/item/useradded0.json index c5354f7a..dd8dc030 100644 --- a/src/main/resources/assets/imsm/models/item/useradded0.json +++ b/src/main/resources/assets/imsm/models/item/useradded0.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded0","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded0", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1.json b/src/main/resources/assets/imsm/models/item/useradded1.json index cbbadeac..2f24a858 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1.json +++ b/src/main/resources/assets/imsm/models/item/useradded1.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded10.json b/src/main/resources/assets/imsm/models/item/useradded10.json index 6cd6bbc9..6eecd020 100644 --- a/src/main/resources/assets/imsm/models/item/useradded10.json +++ b/src/main/resources/assets/imsm/models/item/useradded10.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded10","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded10", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded100.json b/src/main/resources/assets/imsm/models/item/useradded100.json index d1c17e6f..36b5f3e1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded100.json +++ b/src/main/resources/assets/imsm/models/item/useradded100.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded100","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded100", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1000.json b/src/main/resources/assets/imsm/models/item/useradded1000.json index 751c4b2b..d87caf90 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1000.json +++ b/src/main/resources/assets/imsm/models/item/useradded1000.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1000","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1000", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1001.json b/src/main/resources/assets/imsm/models/item/useradded1001.json index 5ea6fe42..d3fb7b5e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1001.json +++ b/src/main/resources/assets/imsm/models/item/useradded1001.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1001","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1001", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1002.json b/src/main/resources/assets/imsm/models/item/useradded1002.json index e068e403..81cd499e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1002.json +++ b/src/main/resources/assets/imsm/models/item/useradded1002.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1002","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1002", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1003.json b/src/main/resources/assets/imsm/models/item/useradded1003.json index ecf0cc00..fd7fc966 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1003.json +++ b/src/main/resources/assets/imsm/models/item/useradded1003.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1003","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1003", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1004.json b/src/main/resources/assets/imsm/models/item/useradded1004.json index 00f0e178..d9483b31 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1004.json +++ b/src/main/resources/assets/imsm/models/item/useradded1004.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1004","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1004", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1005.json b/src/main/resources/assets/imsm/models/item/useradded1005.json index ea096464..39627bff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1005.json +++ b/src/main/resources/assets/imsm/models/item/useradded1005.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1005","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1005", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1006.json b/src/main/resources/assets/imsm/models/item/useradded1006.json index c216bd00..3590fbd1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1006.json +++ b/src/main/resources/assets/imsm/models/item/useradded1006.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1006","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1006", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1007.json b/src/main/resources/assets/imsm/models/item/useradded1007.json index 189136d2..f6dbb9fe 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1007.json +++ b/src/main/resources/assets/imsm/models/item/useradded1007.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1007","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1007", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1008.json b/src/main/resources/assets/imsm/models/item/useradded1008.json index 79e452af..e5caed5f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1008.json +++ b/src/main/resources/assets/imsm/models/item/useradded1008.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1008","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1008", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1009.json b/src/main/resources/assets/imsm/models/item/useradded1009.json index 3cb6a4f2..b1de53ab 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1009.json +++ b/src/main/resources/assets/imsm/models/item/useradded1009.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1009","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1009", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded101.json b/src/main/resources/assets/imsm/models/item/useradded101.json index 8b11f227..6b39b6a8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded101.json +++ b/src/main/resources/assets/imsm/models/item/useradded101.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded101","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded101", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1010.json b/src/main/resources/assets/imsm/models/item/useradded1010.json index e01f6fa7..522aa598 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1010.json +++ b/src/main/resources/assets/imsm/models/item/useradded1010.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1010","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1010", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1011.json b/src/main/resources/assets/imsm/models/item/useradded1011.json index 9e5b1cb8..99ce86b4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1011.json +++ b/src/main/resources/assets/imsm/models/item/useradded1011.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1011","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1011", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1012.json b/src/main/resources/assets/imsm/models/item/useradded1012.json index 38da2663..5afc7233 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1012.json +++ b/src/main/resources/assets/imsm/models/item/useradded1012.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1012","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1012", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1013.json b/src/main/resources/assets/imsm/models/item/useradded1013.json index 9f21a673..8d23b134 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1013.json +++ b/src/main/resources/assets/imsm/models/item/useradded1013.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1013","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1013", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1014.json b/src/main/resources/assets/imsm/models/item/useradded1014.json index 58755b09..6e35b3b0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1014.json +++ b/src/main/resources/assets/imsm/models/item/useradded1014.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1014","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1014", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1015.json b/src/main/resources/assets/imsm/models/item/useradded1015.json index 7d15b49e..7c12f612 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1015.json +++ b/src/main/resources/assets/imsm/models/item/useradded1015.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1015","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1015", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1016.json b/src/main/resources/assets/imsm/models/item/useradded1016.json index 2876100e..9a9d54d7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1016.json +++ b/src/main/resources/assets/imsm/models/item/useradded1016.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1016","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1016", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1017.json b/src/main/resources/assets/imsm/models/item/useradded1017.json index c5c1ec66..0483cb46 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1017.json +++ b/src/main/resources/assets/imsm/models/item/useradded1017.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1017","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1017", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1018.json b/src/main/resources/assets/imsm/models/item/useradded1018.json index 8556f920..74ba30fc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1018.json +++ b/src/main/resources/assets/imsm/models/item/useradded1018.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1018","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1018", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1019.json b/src/main/resources/assets/imsm/models/item/useradded1019.json index 36d273a4..dac6274e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1019.json +++ b/src/main/resources/assets/imsm/models/item/useradded1019.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1019","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1019", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded102.json b/src/main/resources/assets/imsm/models/item/useradded102.json index 819e712e..287173d2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded102.json +++ b/src/main/resources/assets/imsm/models/item/useradded102.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded102","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded102", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1020.json b/src/main/resources/assets/imsm/models/item/useradded1020.json index 924b9ea0..66ed6885 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1020.json +++ b/src/main/resources/assets/imsm/models/item/useradded1020.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1020","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1020", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1021.json b/src/main/resources/assets/imsm/models/item/useradded1021.json index bd545bb6..7115ae4d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1021.json +++ b/src/main/resources/assets/imsm/models/item/useradded1021.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1021","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1021", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1022.json b/src/main/resources/assets/imsm/models/item/useradded1022.json index 99770a5c..68cfc531 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1022.json +++ b/src/main/resources/assets/imsm/models/item/useradded1022.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1022","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1022", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1023.json b/src/main/resources/assets/imsm/models/item/useradded1023.json index 8b77d735..daf73d1f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1023.json +++ b/src/main/resources/assets/imsm/models/item/useradded1023.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1023","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1023", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1024.json b/src/main/resources/assets/imsm/models/item/useradded1024.json index 14879f55..4c1d80f9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1024.json +++ b/src/main/resources/assets/imsm/models/item/useradded1024.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1024","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1024", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1025.json b/src/main/resources/assets/imsm/models/item/useradded1025.json index ba6f7ea3..f0a090df 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1025.json +++ b/src/main/resources/assets/imsm/models/item/useradded1025.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1025","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1025", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1026.json b/src/main/resources/assets/imsm/models/item/useradded1026.json index e880ebc6..f6741066 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1026.json +++ b/src/main/resources/assets/imsm/models/item/useradded1026.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1026","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1026", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1027.json b/src/main/resources/assets/imsm/models/item/useradded1027.json index f86eb035..34274f49 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1027.json +++ b/src/main/resources/assets/imsm/models/item/useradded1027.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1027","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1027", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1028.json b/src/main/resources/assets/imsm/models/item/useradded1028.json index f94b6fda..fe61ba73 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1028.json +++ b/src/main/resources/assets/imsm/models/item/useradded1028.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1028","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1028", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1029.json b/src/main/resources/assets/imsm/models/item/useradded1029.json index 609d75db..1987d232 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1029.json +++ b/src/main/resources/assets/imsm/models/item/useradded1029.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1029","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1029", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded103.json b/src/main/resources/assets/imsm/models/item/useradded103.json index 8df1e007..fe600354 100644 --- a/src/main/resources/assets/imsm/models/item/useradded103.json +++ b/src/main/resources/assets/imsm/models/item/useradded103.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded103","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded103", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1030.json b/src/main/resources/assets/imsm/models/item/useradded1030.json index f96539d2..c39aad2f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1030.json +++ b/src/main/resources/assets/imsm/models/item/useradded1030.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1030","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1030", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1031.json b/src/main/resources/assets/imsm/models/item/useradded1031.json index 7c877a4f..8f5286d0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1031.json +++ b/src/main/resources/assets/imsm/models/item/useradded1031.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1031","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1031", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1032.json b/src/main/resources/assets/imsm/models/item/useradded1032.json index 35e0f4e0..b465b20d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1032.json +++ b/src/main/resources/assets/imsm/models/item/useradded1032.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1032","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1032", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1033.json b/src/main/resources/assets/imsm/models/item/useradded1033.json index 117a8738..85bec9e7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1033.json +++ b/src/main/resources/assets/imsm/models/item/useradded1033.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1033","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1033", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1034.json b/src/main/resources/assets/imsm/models/item/useradded1034.json index af332ec3..9f5781e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1034.json +++ b/src/main/resources/assets/imsm/models/item/useradded1034.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1034","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1034", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1035.json b/src/main/resources/assets/imsm/models/item/useradded1035.json index 11291b41..0d9f351e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1035.json +++ b/src/main/resources/assets/imsm/models/item/useradded1035.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1035","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1035", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1036.json b/src/main/resources/assets/imsm/models/item/useradded1036.json index e8494266..a6f99679 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1036.json +++ b/src/main/resources/assets/imsm/models/item/useradded1036.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1036","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1036", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1037.json b/src/main/resources/assets/imsm/models/item/useradded1037.json index 95352c2f..dda238e1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1037.json +++ b/src/main/resources/assets/imsm/models/item/useradded1037.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1037","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1037", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1038.json b/src/main/resources/assets/imsm/models/item/useradded1038.json index 9c3d840a..1da7e46d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1038.json +++ b/src/main/resources/assets/imsm/models/item/useradded1038.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1038","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1038", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1039.json b/src/main/resources/assets/imsm/models/item/useradded1039.json index 7032e633..65409c4b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1039.json +++ b/src/main/resources/assets/imsm/models/item/useradded1039.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1039","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1039", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded104.json b/src/main/resources/assets/imsm/models/item/useradded104.json index 325085b2..7f58a107 100644 --- a/src/main/resources/assets/imsm/models/item/useradded104.json +++ b/src/main/resources/assets/imsm/models/item/useradded104.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded104","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded104", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1040.json b/src/main/resources/assets/imsm/models/item/useradded1040.json index 7954e3f6..57151e91 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1040.json +++ b/src/main/resources/assets/imsm/models/item/useradded1040.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1040","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1040", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1041.json b/src/main/resources/assets/imsm/models/item/useradded1041.json index 28c5e7ab..0136afe9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1041.json +++ b/src/main/resources/assets/imsm/models/item/useradded1041.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1041","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1041", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1042.json b/src/main/resources/assets/imsm/models/item/useradded1042.json index b7e31942..ea6f5ffc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1042.json +++ b/src/main/resources/assets/imsm/models/item/useradded1042.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1042","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1042", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1043.json b/src/main/resources/assets/imsm/models/item/useradded1043.json index 0e2dde7c..3dc412f3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1043.json +++ b/src/main/resources/assets/imsm/models/item/useradded1043.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1043","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1043", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1044.json b/src/main/resources/assets/imsm/models/item/useradded1044.json index 2a0788f3..604b4df6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1044.json +++ b/src/main/resources/assets/imsm/models/item/useradded1044.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1044","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1044", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1045.json b/src/main/resources/assets/imsm/models/item/useradded1045.json index 06b3f695..a3835e1a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1045.json +++ b/src/main/resources/assets/imsm/models/item/useradded1045.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1045","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1045", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1046.json b/src/main/resources/assets/imsm/models/item/useradded1046.json index 36a9fc13..c0b6aed6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1046.json +++ b/src/main/resources/assets/imsm/models/item/useradded1046.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1046","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1046", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1047.json b/src/main/resources/assets/imsm/models/item/useradded1047.json index efa3af30..a994f7bc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1047.json +++ b/src/main/resources/assets/imsm/models/item/useradded1047.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1047","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1047", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1048.json b/src/main/resources/assets/imsm/models/item/useradded1048.json index f70d27c5..a5d8979e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1048.json +++ b/src/main/resources/assets/imsm/models/item/useradded1048.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1048","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1048", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1049.json b/src/main/resources/assets/imsm/models/item/useradded1049.json index 2e03a162..0359ed2f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1049.json +++ b/src/main/resources/assets/imsm/models/item/useradded1049.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1049","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1049", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded105.json b/src/main/resources/assets/imsm/models/item/useradded105.json index f9961eed..f8ad3690 100644 --- a/src/main/resources/assets/imsm/models/item/useradded105.json +++ b/src/main/resources/assets/imsm/models/item/useradded105.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded105","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded105", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1050.json b/src/main/resources/assets/imsm/models/item/useradded1050.json index ee7b7840..43b6d58c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1050.json +++ b/src/main/resources/assets/imsm/models/item/useradded1050.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1050","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1050", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1051.json b/src/main/resources/assets/imsm/models/item/useradded1051.json index d02def02..d2089cb2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1051.json +++ b/src/main/resources/assets/imsm/models/item/useradded1051.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1051","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1051", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1052.json b/src/main/resources/assets/imsm/models/item/useradded1052.json index b9bfc4ab..7f338885 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1052.json +++ b/src/main/resources/assets/imsm/models/item/useradded1052.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1052","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1052", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1053.json b/src/main/resources/assets/imsm/models/item/useradded1053.json index de1c8a19..1d22bbba 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1053.json +++ b/src/main/resources/assets/imsm/models/item/useradded1053.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1053","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1053", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1054.json b/src/main/resources/assets/imsm/models/item/useradded1054.json index 5c80672f..4f440f01 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1054.json +++ b/src/main/resources/assets/imsm/models/item/useradded1054.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1054","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1054", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1055.json b/src/main/resources/assets/imsm/models/item/useradded1055.json index 6ec92c2b..21d39517 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1055.json +++ b/src/main/resources/assets/imsm/models/item/useradded1055.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1055","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1055", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1056.json b/src/main/resources/assets/imsm/models/item/useradded1056.json index e6657c0e..b8ee7bb5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1056.json +++ b/src/main/resources/assets/imsm/models/item/useradded1056.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1056","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1056", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1057.json b/src/main/resources/assets/imsm/models/item/useradded1057.json index 910aace6..f126bdb9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1057.json +++ b/src/main/resources/assets/imsm/models/item/useradded1057.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1057","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1057", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1058.json b/src/main/resources/assets/imsm/models/item/useradded1058.json index e7e73959..c8abbdaa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1058.json +++ b/src/main/resources/assets/imsm/models/item/useradded1058.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1058","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1058", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1059.json b/src/main/resources/assets/imsm/models/item/useradded1059.json index 43e7be98..5b64c5bf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1059.json +++ b/src/main/resources/assets/imsm/models/item/useradded1059.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1059","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1059", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded106.json b/src/main/resources/assets/imsm/models/item/useradded106.json index 4490311a..109bc8be 100644 --- a/src/main/resources/assets/imsm/models/item/useradded106.json +++ b/src/main/resources/assets/imsm/models/item/useradded106.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded106","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded106", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1060.json b/src/main/resources/assets/imsm/models/item/useradded1060.json index 5cf485a0..271fef65 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1060.json +++ b/src/main/resources/assets/imsm/models/item/useradded1060.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1060","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1060", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1061.json b/src/main/resources/assets/imsm/models/item/useradded1061.json index 0f0c86e9..7ab75cbe 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1061.json +++ b/src/main/resources/assets/imsm/models/item/useradded1061.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1061","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1061", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1062.json b/src/main/resources/assets/imsm/models/item/useradded1062.json index 0d2bca36..497e8ab8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1062.json +++ b/src/main/resources/assets/imsm/models/item/useradded1062.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1062","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1062", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1063.json b/src/main/resources/assets/imsm/models/item/useradded1063.json index 4e6d26a3..faa5eca0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1063.json +++ b/src/main/resources/assets/imsm/models/item/useradded1063.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1063","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1063", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1064.json b/src/main/resources/assets/imsm/models/item/useradded1064.json index c4d20b7d..5f447e36 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1064.json +++ b/src/main/resources/assets/imsm/models/item/useradded1064.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1064","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1064", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1065.json b/src/main/resources/assets/imsm/models/item/useradded1065.json index 5cd44e7c..83ef5913 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1065.json +++ b/src/main/resources/assets/imsm/models/item/useradded1065.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1065","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1065", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1066.json b/src/main/resources/assets/imsm/models/item/useradded1066.json index 0f237631..d043bf58 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1066.json +++ b/src/main/resources/assets/imsm/models/item/useradded1066.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1066","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1066", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1067.json b/src/main/resources/assets/imsm/models/item/useradded1067.json index ffcc4049..9a48292f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1067.json +++ b/src/main/resources/assets/imsm/models/item/useradded1067.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1067","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1067", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1068.json b/src/main/resources/assets/imsm/models/item/useradded1068.json index 4e200d2c..b321a758 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1068.json +++ b/src/main/resources/assets/imsm/models/item/useradded1068.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1068","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1068", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1069.json b/src/main/resources/assets/imsm/models/item/useradded1069.json index 989f1ea9..91ce223a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1069.json +++ b/src/main/resources/assets/imsm/models/item/useradded1069.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1069","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1069", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded107.json b/src/main/resources/assets/imsm/models/item/useradded107.json index 258ec1ca..57b9a01b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded107.json +++ b/src/main/resources/assets/imsm/models/item/useradded107.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded107","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded107", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1070.json b/src/main/resources/assets/imsm/models/item/useradded1070.json index 1e7f3955..a528b8ea 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1070.json +++ b/src/main/resources/assets/imsm/models/item/useradded1070.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1070","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1070", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1071.json b/src/main/resources/assets/imsm/models/item/useradded1071.json index 877f304a..21865221 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1071.json +++ b/src/main/resources/assets/imsm/models/item/useradded1071.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1071","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1071", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1072.json b/src/main/resources/assets/imsm/models/item/useradded1072.json index cf1303cd..92d90e7e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1072.json +++ b/src/main/resources/assets/imsm/models/item/useradded1072.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1072","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1072", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1073.json b/src/main/resources/assets/imsm/models/item/useradded1073.json index a91ac1d5..cdd1590f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1073.json +++ b/src/main/resources/assets/imsm/models/item/useradded1073.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1073","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1073", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1074.json b/src/main/resources/assets/imsm/models/item/useradded1074.json index 26a76548..5f52a3a2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1074.json +++ b/src/main/resources/assets/imsm/models/item/useradded1074.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1074","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1074", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1075.json b/src/main/resources/assets/imsm/models/item/useradded1075.json index 03e1a9be..797285ba 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1075.json +++ b/src/main/resources/assets/imsm/models/item/useradded1075.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1075","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1075", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1076.json b/src/main/resources/assets/imsm/models/item/useradded1076.json index 8b5c7097..9595da62 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1076.json +++ b/src/main/resources/assets/imsm/models/item/useradded1076.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1076","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1076", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1077.json b/src/main/resources/assets/imsm/models/item/useradded1077.json index 2b9548fa..6d8878e1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1077.json +++ b/src/main/resources/assets/imsm/models/item/useradded1077.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1077","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1077", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1078.json b/src/main/resources/assets/imsm/models/item/useradded1078.json index f0ce4f9a..3cc18d6f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1078.json +++ b/src/main/resources/assets/imsm/models/item/useradded1078.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1078","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1078", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1079.json b/src/main/resources/assets/imsm/models/item/useradded1079.json index 20fa5500..d26c594c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1079.json +++ b/src/main/resources/assets/imsm/models/item/useradded1079.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1079","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1079", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded108.json b/src/main/resources/assets/imsm/models/item/useradded108.json index 9045ef5e..daae3a74 100644 --- a/src/main/resources/assets/imsm/models/item/useradded108.json +++ b/src/main/resources/assets/imsm/models/item/useradded108.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded108","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded108", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1080.json b/src/main/resources/assets/imsm/models/item/useradded1080.json index 97bea725..6e9bbc99 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1080.json +++ b/src/main/resources/assets/imsm/models/item/useradded1080.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1080","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1080", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1081.json b/src/main/resources/assets/imsm/models/item/useradded1081.json index 30a779f9..80bd349f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1081.json +++ b/src/main/resources/assets/imsm/models/item/useradded1081.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1081","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1081", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1082.json b/src/main/resources/assets/imsm/models/item/useradded1082.json index 55c74cff..69768152 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1082.json +++ b/src/main/resources/assets/imsm/models/item/useradded1082.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1082","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1082", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1083.json b/src/main/resources/assets/imsm/models/item/useradded1083.json index a84b56b3..9fbadae4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1083.json +++ b/src/main/resources/assets/imsm/models/item/useradded1083.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1083","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1083", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1084.json b/src/main/resources/assets/imsm/models/item/useradded1084.json index a018cb17..a80f8a99 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1084.json +++ b/src/main/resources/assets/imsm/models/item/useradded1084.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1084","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1084", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1085.json b/src/main/resources/assets/imsm/models/item/useradded1085.json index caffda74..38ac25a1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1085.json +++ b/src/main/resources/assets/imsm/models/item/useradded1085.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1085","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1085", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1086.json b/src/main/resources/assets/imsm/models/item/useradded1086.json index cb2fe383..b8297817 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1086.json +++ b/src/main/resources/assets/imsm/models/item/useradded1086.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1086","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1086", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1087.json b/src/main/resources/assets/imsm/models/item/useradded1087.json index 0c2e7733..6e593a94 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1087.json +++ b/src/main/resources/assets/imsm/models/item/useradded1087.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1087","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1087", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1088.json b/src/main/resources/assets/imsm/models/item/useradded1088.json index 06ba92e0..de96c0dd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1088.json +++ b/src/main/resources/assets/imsm/models/item/useradded1088.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1088","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1088", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1089.json b/src/main/resources/assets/imsm/models/item/useradded1089.json index 35231121..7d029a09 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1089.json +++ b/src/main/resources/assets/imsm/models/item/useradded1089.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1089","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1089", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded109.json b/src/main/resources/assets/imsm/models/item/useradded109.json index 37652c73..2a2c8cab 100644 --- a/src/main/resources/assets/imsm/models/item/useradded109.json +++ b/src/main/resources/assets/imsm/models/item/useradded109.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded109","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded109", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1090.json b/src/main/resources/assets/imsm/models/item/useradded1090.json index 0ab7488b..ea407788 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1090.json +++ b/src/main/resources/assets/imsm/models/item/useradded1090.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1090","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1090", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1091.json b/src/main/resources/assets/imsm/models/item/useradded1091.json index 0036b0fe..d781bd00 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1091.json +++ b/src/main/resources/assets/imsm/models/item/useradded1091.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1091","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1091", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1092.json b/src/main/resources/assets/imsm/models/item/useradded1092.json index 3dc5ed03..bc2a2bbd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1092.json +++ b/src/main/resources/assets/imsm/models/item/useradded1092.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1092","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1092", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1093.json b/src/main/resources/assets/imsm/models/item/useradded1093.json index 46f449c1..4a7292fe 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1093.json +++ b/src/main/resources/assets/imsm/models/item/useradded1093.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1093","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1093", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1094.json b/src/main/resources/assets/imsm/models/item/useradded1094.json index 8ecc9fc0..2e3f3630 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1094.json +++ b/src/main/resources/assets/imsm/models/item/useradded1094.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1094","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1094", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1095.json b/src/main/resources/assets/imsm/models/item/useradded1095.json index c21a9d1a..0f48b91d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1095.json +++ b/src/main/resources/assets/imsm/models/item/useradded1095.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1095","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1095", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1096.json b/src/main/resources/assets/imsm/models/item/useradded1096.json index b53cb23e..3297cf17 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1096.json +++ b/src/main/resources/assets/imsm/models/item/useradded1096.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1096","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1096", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1097.json b/src/main/resources/assets/imsm/models/item/useradded1097.json index a906a388..53c99755 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1097.json +++ b/src/main/resources/assets/imsm/models/item/useradded1097.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1097","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1097", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1098.json b/src/main/resources/assets/imsm/models/item/useradded1098.json index b665f4a9..b6504b36 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1098.json +++ b/src/main/resources/assets/imsm/models/item/useradded1098.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1098","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1098", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1099.json b/src/main/resources/assets/imsm/models/item/useradded1099.json index c077b749..c5434256 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1099.json +++ b/src/main/resources/assets/imsm/models/item/useradded1099.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1099","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1099", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded11.json b/src/main/resources/assets/imsm/models/item/useradded11.json index 5cdf5b5e..81aaf37c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded11.json +++ b/src/main/resources/assets/imsm/models/item/useradded11.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded11","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded11", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded110.json b/src/main/resources/assets/imsm/models/item/useradded110.json index 62e0f5e7..2a0c90cd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded110.json +++ b/src/main/resources/assets/imsm/models/item/useradded110.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded110","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded110", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1100.json b/src/main/resources/assets/imsm/models/item/useradded1100.json index 8cf74f6c..4d9e72c2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1100.json +++ b/src/main/resources/assets/imsm/models/item/useradded1100.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1100","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1100", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1101.json b/src/main/resources/assets/imsm/models/item/useradded1101.json index bde3a8ae..ee96b5c4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1101.json +++ b/src/main/resources/assets/imsm/models/item/useradded1101.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1101","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1101", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1102.json b/src/main/resources/assets/imsm/models/item/useradded1102.json index 9a35178b..f96d9524 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1102.json +++ b/src/main/resources/assets/imsm/models/item/useradded1102.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1102","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1102", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1103.json b/src/main/resources/assets/imsm/models/item/useradded1103.json index 88cd7f46..81f02b83 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1103.json +++ b/src/main/resources/assets/imsm/models/item/useradded1103.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1103","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1103", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1104.json b/src/main/resources/assets/imsm/models/item/useradded1104.json index 92db7315..0cfc0464 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1104.json +++ b/src/main/resources/assets/imsm/models/item/useradded1104.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1104","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1104", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1105.json b/src/main/resources/assets/imsm/models/item/useradded1105.json index 4a0e58c1..9fb3e190 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1105.json +++ b/src/main/resources/assets/imsm/models/item/useradded1105.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1105","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1105", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1106.json b/src/main/resources/assets/imsm/models/item/useradded1106.json index 3977175b..00bb37d5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1106.json +++ b/src/main/resources/assets/imsm/models/item/useradded1106.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1106","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1106", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1107.json b/src/main/resources/assets/imsm/models/item/useradded1107.json index c7860e7f..b28b2c79 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1107.json +++ b/src/main/resources/assets/imsm/models/item/useradded1107.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1107","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1107", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1108.json b/src/main/resources/assets/imsm/models/item/useradded1108.json index 09b8e434..ff3f6561 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1108.json +++ b/src/main/resources/assets/imsm/models/item/useradded1108.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1108","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1108", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1109.json b/src/main/resources/assets/imsm/models/item/useradded1109.json index a2bafb58..b9eb18ff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1109.json +++ b/src/main/resources/assets/imsm/models/item/useradded1109.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1109","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1109", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded111.json b/src/main/resources/assets/imsm/models/item/useradded111.json index bc84ae38..c8073495 100644 --- a/src/main/resources/assets/imsm/models/item/useradded111.json +++ b/src/main/resources/assets/imsm/models/item/useradded111.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded111","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded111", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1110.json b/src/main/resources/assets/imsm/models/item/useradded1110.json index e46a70c6..a8316694 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1110.json +++ b/src/main/resources/assets/imsm/models/item/useradded1110.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1110","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1110", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1111.json b/src/main/resources/assets/imsm/models/item/useradded1111.json index 5ebaab55..b469a46a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1111.json +++ b/src/main/resources/assets/imsm/models/item/useradded1111.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1111","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1111", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1112.json b/src/main/resources/assets/imsm/models/item/useradded1112.json index 0fc7f97f..349353e9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1112.json +++ b/src/main/resources/assets/imsm/models/item/useradded1112.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1112","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1112", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1113.json b/src/main/resources/assets/imsm/models/item/useradded1113.json index 232e58ed..90c1d7a5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1113.json +++ b/src/main/resources/assets/imsm/models/item/useradded1113.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1113","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1113", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1114.json b/src/main/resources/assets/imsm/models/item/useradded1114.json index dffea501..7450434e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1114.json +++ b/src/main/resources/assets/imsm/models/item/useradded1114.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1114","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1114", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1115.json b/src/main/resources/assets/imsm/models/item/useradded1115.json index 384b1c07..2eb7fc08 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1115.json +++ b/src/main/resources/assets/imsm/models/item/useradded1115.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1115","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1115", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1116.json b/src/main/resources/assets/imsm/models/item/useradded1116.json index c1ae3e65..8ea88a3f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1116.json +++ b/src/main/resources/assets/imsm/models/item/useradded1116.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1116","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1116", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1117.json b/src/main/resources/assets/imsm/models/item/useradded1117.json index f96d044f..377d10e2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1117.json +++ b/src/main/resources/assets/imsm/models/item/useradded1117.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1117","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1117", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1118.json b/src/main/resources/assets/imsm/models/item/useradded1118.json index 299d7da3..0b93b0ef 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1118.json +++ b/src/main/resources/assets/imsm/models/item/useradded1118.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1118","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1118", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1119.json b/src/main/resources/assets/imsm/models/item/useradded1119.json index 178126f3..3baf5ba2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1119.json +++ b/src/main/resources/assets/imsm/models/item/useradded1119.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1119","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1119", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded112.json b/src/main/resources/assets/imsm/models/item/useradded112.json index da708e97..8826f008 100644 --- a/src/main/resources/assets/imsm/models/item/useradded112.json +++ b/src/main/resources/assets/imsm/models/item/useradded112.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded112","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded112", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1120.json b/src/main/resources/assets/imsm/models/item/useradded1120.json index dcaf93b3..def3dc0c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1120.json +++ b/src/main/resources/assets/imsm/models/item/useradded1120.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1120","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1120", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1121.json b/src/main/resources/assets/imsm/models/item/useradded1121.json index 91838172..f75847d9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1121.json +++ b/src/main/resources/assets/imsm/models/item/useradded1121.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1121","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1121", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1122.json b/src/main/resources/assets/imsm/models/item/useradded1122.json index bc930d31..e98ea43d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1122.json +++ b/src/main/resources/assets/imsm/models/item/useradded1122.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1122","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1122", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1123.json b/src/main/resources/assets/imsm/models/item/useradded1123.json index 85a94594..7aad9351 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1123.json +++ b/src/main/resources/assets/imsm/models/item/useradded1123.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1123","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1123", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1124.json b/src/main/resources/assets/imsm/models/item/useradded1124.json index 1923dbf2..03d8340d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1124.json +++ b/src/main/resources/assets/imsm/models/item/useradded1124.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1124","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1124", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1125.json b/src/main/resources/assets/imsm/models/item/useradded1125.json index 7536dc3d..4683dc72 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1125.json +++ b/src/main/resources/assets/imsm/models/item/useradded1125.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1125","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1125", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1126.json b/src/main/resources/assets/imsm/models/item/useradded1126.json index fa92e599..adbbde84 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1126.json +++ b/src/main/resources/assets/imsm/models/item/useradded1126.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1126","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1126", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1127.json b/src/main/resources/assets/imsm/models/item/useradded1127.json index 6628e9b8..707bf801 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1127.json +++ b/src/main/resources/assets/imsm/models/item/useradded1127.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1127","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1127", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1128.json b/src/main/resources/assets/imsm/models/item/useradded1128.json index cf8a7c0a..1e702a03 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1128.json +++ b/src/main/resources/assets/imsm/models/item/useradded1128.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1128","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1128", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1129.json b/src/main/resources/assets/imsm/models/item/useradded1129.json index 3677eacb..58161ced 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1129.json +++ b/src/main/resources/assets/imsm/models/item/useradded1129.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1129","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1129", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded113.json b/src/main/resources/assets/imsm/models/item/useradded113.json index 967a8567..a19a6fae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded113.json +++ b/src/main/resources/assets/imsm/models/item/useradded113.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded113","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded113", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1130.json b/src/main/resources/assets/imsm/models/item/useradded1130.json index ee13f9f3..6537c6a3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1130.json +++ b/src/main/resources/assets/imsm/models/item/useradded1130.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1130","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1130", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1131.json b/src/main/resources/assets/imsm/models/item/useradded1131.json index 6797b302..cfac1bae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1131.json +++ b/src/main/resources/assets/imsm/models/item/useradded1131.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1131","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1131", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1132.json b/src/main/resources/assets/imsm/models/item/useradded1132.json index 0dd134c5..5a5731f0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1132.json +++ b/src/main/resources/assets/imsm/models/item/useradded1132.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1132","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1132", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1133.json b/src/main/resources/assets/imsm/models/item/useradded1133.json index 1a3e705c..bb783ef3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1133.json +++ b/src/main/resources/assets/imsm/models/item/useradded1133.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1133","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1133", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1134.json b/src/main/resources/assets/imsm/models/item/useradded1134.json index a3595b06..6fb2d074 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1134.json +++ b/src/main/resources/assets/imsm/models/item/useradded1134.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1134","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1134", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1135.json b/src/main/resources/assets/imsm/models/item/useradded1135.json index 95fa9bdb..8b5e25da 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1135.json +++ b/src/main/resources/assets/imsm/models/item/useradded1135.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1135","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1135", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1136.json b/src/main/resources/assets/imsm/models/item/useradded1136.json index 9818473e..4a0d3301 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1136.json +++ b/src/main/resources/assets/imsm/models/item/useradded1136.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1136","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1136", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1137.json b/src/main/resources/assets/imsm/models/item/useradded1137.json index 89e0504a..09728074 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1137.json +++ b/src/main/resources/assets/imsm/models/item/useradded1137.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1137","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1137", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1138.json b/src/main/resources/assets/imsm/models/item/useradded1138.json index 2d5d6904..38dc818f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1138.json +++ b/src/main/resources/assets/imsm/models/item/useradded1138.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1138","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1138", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1139.json b/src/main/resources/assets/imsm/models/item/useradded1139.json index 18a60cf2..8c8b5e09 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1139.json +++ b/src/main/resources/assets/imsm/models/item/useradded1139.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1139","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1139", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded114.json b/src/main/resources/assets/imsm/models/item/useradded114.json index 58f60aa5..315b0ee8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded114.json +++ b/src/main/resources/assets/imsm/models/item/useradded114.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded114","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded114", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1140.json b/src/main/resources/assets/imsm/models/item/useradded1140.json index c949fc70..5a66e652 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1140.json +++ b/src/main/resources/assets/imsm/models/item/useradded1140.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1140","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1140", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1141.json b/src/main/resources/assets/imsm/models/item/useradded1141.json index c169cf43..ffe504eb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1141.json +++ b/src/main/resources/assets/imsm/models/item/useradded1141.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1141","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1141", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1142.json b/src/main/resources/assets/imsm/models/item/useradded1142.json index fdcf36d1..5bc948d7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1142.json +++ b/src/main/resources/assets/imsm/models/item/useradded1142.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1142","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1142", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1143.json b/src/main/resources/assets/imsm/models/item/useradded1143.json index e507cb8a..daf4b789 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1143.json +++ b/src/main/resources/assets/imsm/models/item/useradded1143.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1143","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1143", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1144.json b/src/main/resources/assets/imsm/models/item/useradded1144.json index 685e2e74..4411de58 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1144.json +++ b/src/main/resources/assets/imsm/models/item/useradded1144.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1144","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1144", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1145.json b/src/main/resources/assets/imsm/models/item/useradded1145.json index 096c21b4..66d98b28 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1145.json +++ b/src/main/resources/assets/imsm/models/item/useradded1145.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1145","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1145", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1146.json b/src/main/resources/assets/imsm/models/item/useradded1146.json index 1f777cac..0667228f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1146.json +++ b/src/main/resources/assets/imsm/models/item/useradded1146.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1146","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1146", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1147.json b/src/main/resources/assets/imsm/models/item/useradded1147.json index 4396d1b7..5b74359a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1147.json +++ b/src/main/resources/assets/imsm/models/item/useradded1147.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1147","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1147", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1148.json b/src/main/resources/assets/imsm/models/item/useradded1148.json index 705fc4f4..5bda634f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1148.json +++ b/src/main/resources/assets/imsm/models/item/useradded1148.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1148","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1148", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1149.json b/src/main/resources/assets/imsm/models/item/useradded1149.json index b36c4ceb..6ac490aa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1149.json +++ b/src/main/resources/assets/imsm/models/item/useradded1149.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1149","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1149", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded115.json b/src/main/resources/assets/imsm/models/item/useradded115.json index 4e583d36..d92c77a3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded115.json +++ b/src/main/resources/assets/imsm/models/item/useradded115.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded115","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded115", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1150.json b/src/main/resources/assets/imsm/models/item/useradded1150.json index 53274fa3..3f5a735e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1150.json +++ b/src/main/resources/assets/imsm/models/item/useradded1150.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1150","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1150", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1151.json b/src/main/resources/assets/imsm/models/item/useradded1151.json index 0746bc01..acd6e53c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1151.json +++ b/src/main/resources/assets/imsm/models/item/useradded1151.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1151","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1151", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1152.json b/src/main/resources/assets/imsm/models/item/useradded1152.json index e1f9c7b6..ecc372b2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1152.json +++ b/src/main/resources/assets/imsm/models/item/useradded1152.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1152","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1152", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1153.json b/src/main/resources/assets/imsm/models/item/useradded1153.json index 6c6efacc..d192c091 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1153.json +++ b/src/main/resources/assets/imsm/models/item/useradded1153.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1153","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1153", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1154.json b/src/main/resources/assets/imsm/models/item/useradded1154.json index 9d3e19da..9e0e6de9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1154.json +++ b/src/main/resources/assets/imsm/models/item/useradded1154.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1154","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1154", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1155.json b/src/main/resources/assets/imsm/models/item/useradded1155.json index 9c85220f..fa3e7ce8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1155.json +++ b/src/main/resources/assets/imsm/models/item/useradded1155.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1155","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1155", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1156.json b/src/main/resources/assets/imsm/models/item/useradded1156.json index 0e9d6603..04646713 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1156.json +++ b/src/main/resources/assets/imsm/models/item/useradded1156.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1156","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1156", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1157.json b/src/main/resources/assets/imsm/models/item/useradded1157.json index a241c9c3..a4309557 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1157.json +++ b/src/main/resources/assets/imsm/models/item/useradded1157.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1157","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1157", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1158.json b/src/main/resources/assets/imsm/models/item/useradded1158.json index 8455ab58..a4334c78 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1158.json +++ b/src/main/resources/assets/imsm/models/item/useradded1158.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1158","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1158", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1159.json b/src/main/resources/assets/imsm/models/item/useradded1159.json index e1108a3f..12856548 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1159.json +++ b/src/main/resources/assets/imsm/models/item/useradded1159.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1159","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1159", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded116.json b/src/main/resources/assets/imsm/models/item/useradded116.json index 7b42d06d..dde2cd0c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded116.json +++ b/src/main/resources/assets/imsm/models/item/useradded116.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded116","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded116", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1160.json b/src/main/resources/assets/imsm/models/item/useradded1160.json index 40f4f2a8..b79b0cc3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1160.json +++ b/src/main/resources/assets/imsm/models/item/useradded1160.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1160","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1160", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1161.json b/src/main/resources/assets/imsm/models/item/useradded1161.json index 8a92308d..acc4df9d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1161.json +++ b/src/main/resources/assets/imsm/models/item/useradded1161.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1161","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1161", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1162.json b/src/main/resources/assets/imsm/models/item/useradded1162.json index 5f3df46e..21107a81 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1162.json +++ b/src/main/resources/assets/imsm/models/item/useradded1162.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1162","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1162", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1163.json b/src/main/resources/assets/imsm/models/item/useradded1163.json index d36edbb1..e4e9fddf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1163.json +++ b/src/main/resources/assets/imsm/models/item/useradded1163.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1163","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1163", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1164.json b/src/main/resources/assets/imsm/models/item/useradded1164.json index d53de8c6..dae1ab33 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1164.json +++ b/src/main/resources/assets/imsm/models/item/useradded1164.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1164","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1164", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1165.json b/src/main/resources/assets/imsm/models/item/useradded1165.json index 3419f6e6..5abc51b6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1165.json +++ b/src/main/resources/assets/imsm/models/item/useradded1165.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1165","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1165", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1166.json b/src/main/resources/assets/imsm/models/item/useradded1166.json index 24e2a01b..4bd9a36c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1166.json +++ b/src/main/resources/assets/imsm/models/item/useradded1166.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1166","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1166", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1167.json b/src/main/resources/assets/imsm/models/item/useradded1167.json index 9b204e35..f5e7c22e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1167.json +++ b/src/main/resources/assets/imsm/models/item/useradded1167.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1167","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1167", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1168.json b/src/main/resources/assets/imsm/models/item/useradded1168.json index 7a10e61a..8b75fb57 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1168.json +++ b/src/main/resources/assets/imsm/models/item/useradded1168.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1168","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1168", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1169.json b/src/main/resources/assets/imsm/models/item/useradded1169.json index 2c33f751..0e59324a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1169.json +++ b/src/main/resources/assets/imsm/models/item/useradded1169.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1169","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1169", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded117.json b/src/main/resources/assets/imsm/models/item/useradded117.json index ab9ab6c2..7dcda7b3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded117.json +++ b/src/main/resources/assets/imsm/models/item/useradded117.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded117","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded117", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1170.json b/src/main/resources/assets/imsm/models/item/useradded1170.json index 9e7abbe1..a3c695e5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1170.json +++ b/src/main/resources/assets/imsm/models/item/useradded1170.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1170","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1170", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1171.json b/src/main/resources/assets/imsm/models/item/useradded1171.json index f1744a5f..8f5d6a5d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1171.json +++ b/src/main/resources/assets/imsm/models/item/useradded1171.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1171","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1171", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1172.json b/src/main/resources/assets/imsm/models/item/useradded1172.json index 6945567f..0afb1e86 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1172.json +++ b/src/main/resources/assets/imsm/models/item/useradded1172.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1172","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1172", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1173.json b/src/main/resources/assets/imsm/models/item/useradded1173.json index 064ae17b..b2dc444d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1173.json +++ b/src/main/resources/assets/imsm/models/item/useradded1173.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1173","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1173", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1174.json b/src/main/resources/assets/imsm/models/item/useradded1174.json index 6947b7ed..410c3d6f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1174.json +++ b/src/main/resources/assets/imsm/models/item/useradded1174.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1174","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1174", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1175.json b/src/main/resources/assets/imsm/models/item/useradded1175.json index a70485df..1fb55d9e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1175.json +++ b/src/main/resources/assets/imsm/models/item/useradded1175.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1175","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1175", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1176.json b/src/main/resources/assets/imsm/models/item/useradded1176.json index 45cee8f5..80dffd1f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1176.json +++ b/src/main/resources/assets/imsm/models/item/useradded1176.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1176","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1176", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1177.json b/src/main/resources/assets/imsm/models/item/useradded1177.json index 2e0d9e2e..15142e8a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1177.json +++ b/src/main/resources/assets/imsm/models/item/useradded1177.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1177","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1177", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1178.json b/src/main/resources/assets/imsm/models/item/useradded1178.json index 4f624c9d..8cc8feee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1178.json +++ b/src/main/resources/assets/imsm/models/item/useradded1178.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1178","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1178", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1179.json b/src/main/resources/assets/imsm/models/item/useradded1179.json index d5cc578f..cf49f570 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1179.json +++ b/src/main/resources/assets/imsm/models/item/useradded1179.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1179","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1179", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded118.json b/src/main/resources/assets/imsm/models/item/useradded118.json index 3bb62ad7..50ebe7c5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded118.json +++ b/src/main/resources/assets/imsm/models/item/useradded118.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded118","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded118", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1180.json b/src/main/resources/assets/imsm/models/item/useradded1180.json index 7df0582b..1e37409a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1180.json +++ b/src/main/resources/assets/imsm/models/item/useradded1180.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1180","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1180", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1181.json b/src/main/resources/assets/imsm/models/item/useradded1181.json index 2e04fe81..b065ebf6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1181.json +++ b/src/main/resources/assets/imsm/models/item/useradded1181.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1181","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1181", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1182.json b/src/main/resources/assets/imsm/models/item/useradded1182.json index f8125b09..80381094 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1182.json +++ b/src/main/resources/assets/imsm/models/item/useradded1182.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1182","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1182", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1183.json b/src/main/resources/assets/imsm/models/item/useradded1183.json index 10a5fe5a..86a63074 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1183.json +++ b/src/main/resources/assets/imsm/models/item/useradded1183.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1183","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1183", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1184.json b/src/main/resources/assets/imsm/models/item/useradded1184.json index a9a79517..cd56f453 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1184.json +++ b/src/main/resources/assets/imsm/models/item/useradded1184.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1184","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1184", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1185.json b/src/main/resources/assets/imsm/models/item/useradded1185.json index 24b9abb0..58da9c31 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1185.json +++ b/src/main/resources/assets/imsm/models/item/useradded1185.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1185","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1185", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1186.json b/src/main/resources/assets/imsm/models/item/useradded1186.json index 5f2e73da..8c847882 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1186.json +++ b/src/main/resources/assets/imsm/models/item/useradded1186.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1186","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1186", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1187.json b/src/main/resources/assets/imsm/models/item/useradded1187.json index 57d2f509..d9c5f17c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1187.json +++ b/src/main/resources/assets/imsm/models/item/useradded1187.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1187","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1187", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1188.json b/src/main/resources/assets/imsm/models/item/useradded1188.json index f4ef7aa8..0c0a58a6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1188.json +++ b/src/main/resources/assets/imsm/models/item/useradded1188.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1188","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1188", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1189.json b/src/main/resources/assets/imsm/models/item/useradded1189.json index f0fa265d..1f899722 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1189.json +++ b/src/main/resources/assets/imsm/models/item/useradded1189.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1189","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1189", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded119.json b/src/main/resources/assets/imsm/models/item/useradded119.json index b02fcd14..fcdba18d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded119.json +++ b/src/main/resources/assets/imsm/models/item/useradded119.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded119","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded119", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1190.json b/src/main/resources/assets/imsm/models/item/useradded1190.json index 9beee25d..36947aa9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1190.json +++ b/src/main/resources/assets/imsm/models/item/useradded1190.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1190","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1190", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1191.json b/src/main/resources/assets/imsm/models/item/useradded1191.json index 08a755e1..4e4d1b94 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1191.json +++ b/src/main/resources/assets/imsm/models/item/useradded1191.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1191","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1191", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1192.json b/src/main/resources/assets/imsm/models/item/useradded1192.json index 5e64d891..eda49df6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1192.json +++ b/src/main/resources/assets/imsm/models/item/useradded1192.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1192","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1192", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1193.json b/src/main/resources/assets/imsm/models/item/useradded1193.json index acd7167c..eeb3e234 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1193.json +++ b/src/main/resources/assets/imsm/models/item/useradded1193.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1193","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1193", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1194.json b/src/main/resources/assets/imsm/models/item/useradded1194.json index 298b58d8..5196eec4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1194.json +++ b/src/main/resources/assets/imsm/models/item/useradded1194.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1194","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1194", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1195.json b/src/main/resources/assets/imsm/models/item/useradded1195.json index 38919842..47468a60 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1195.json +++ b/src/main/resources/assets/imsm/models/item/useradded1195.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1195","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1195", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1196.json b/src/main/resources/assets/imsm/models/item/useradded1196.json index eaece45e..0ac107a7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1196.json +++ b/src/main/resources/assets/imsm/models/item/useradded1196.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1196","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1196", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1197.json b/src/main/resources/assets/imsm/models/item/useradded1197.json index ccb0b8ea..cdea7dca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1197.json +++ b/src/main/resources/assets/imsm/models/item/useradded1197.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1197","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1197", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1198.json b/src/main/resources/assets/imsm/models/item/useradded1198.json index b9f82ae7..15c5f380 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1198.json +++ b/src/main/resources/assets/imsm/models/item/useradded1198.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1198","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1198", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1199.json b/src/main/resources/assets/imsm/models/item/useradded1199.json index ec669514..62d4fdaf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1199.json +++ b/src/main/resources/assets/imsm/models/item/useradded1199.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1199","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1199", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded12.json b/src/main/resources/assets/imsm/models/item/useradded12.json index 1547972e..b82868a8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded12.json +++ b/src/main/resources/assets/imsm/models/item/useradded12.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded12","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded12", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded120.json b/src/main/resources/assets/imsm/models/item/useradded120.json index 076a9e2e..9c04238e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded120.json +++ b/src/main/resources/assets/imsm/models/item/useradded120.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded120","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded120", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1200.json b/src/main/resources/assets/imsm/models/item/useradded1200.json index 42acb964..1261bf62 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1200.json +++ b/src/main/resources/assets/imsm/models/item/useradded1200.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1200","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1200", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1201.json b/src/main/resources/assets/imsm/models/item/useradded1201.json index c22be5d8..816abb01 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1201.json +++ b/src/main/resources/assets/imsm/models/item/useradded1201.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1201","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1201", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1202.json b/src/main/resources/assets/imsm/models/item/useradded1202.json index 7291a7eb..6a313ed7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1202.json +++ b/src/main/resources/assets/imsm/models/item/useradded1202.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1202","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1202", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1203.json b/src/main/resources/assets/imsm/models/item/useradded1203.json index cbdbe85a..2286b688 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1203.json +++ b/src/main/resources/assets/imsm/models/item/useradded1203.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1203","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1203", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1204.json b/src/main/resources/assets/imsm/models/item/useradded1204.json index 2b5754e2..3944598a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1204.json +++ b/src/main/resources/assets/imsm/models/item/useradded1204.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1204","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1204", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1205.json b/src/main/resources/assets/imsm/models/item/useradded1205.json index 2c78f229..b4381ba9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1205.json +++ b/src/main/resources/assets/imsm/models/item/useradded1205.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1205","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1205", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1206.json b/src/main/resources/assets/imsm/models/item/useradded1206.json index 967f5d3c..0d0fccce 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1206.json +++ b/src/main/resources/assets/imsm/models/item/useradded1206.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1206","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1206", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1207.json b/src/main/resources/assets/imsm/models/item/useradded1207.json index aa53a31e..d7d705ba 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1207.json +++ b/src/main/resources/assets/imsm/models/item/useradded1207.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1207","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1207", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1208.json b/src/main/resources/assets/imsm/models/item/useradded1208.json index 3e88e536..fbd91e62 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1208.json +++ b/src/main/resources/assets/imsm/models/item/useradded1208.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1208","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1208", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1209.json b/src/main/resources/assets/imsm/models/item/useradded1209.json index 9e66f196..07af0ee8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1209.json +++ b/src/main/resources/assets/imsm/models/item/useradded1209.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1209","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1209", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded121.json b/src/main/resources/assets/imsm/models/item/useradded121.json index 1185b265..d8098678 100644 --- a/src/main/resources/assets/imsm/models/item/useradded121.json +++ b/src/main/resources/assets/imsm/models/item/useradded121.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded121","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded121", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1210.json b/src/main/resources/assets/imsm/models/item/useradded1210.json index 07a978ab..8a2161f6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1210.json +++ b/src/main/resources/assets/imsm/models/item/useradded1210.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1210","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1210", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1211.json b/src/main/resources/assets/imsm/models/item/useradded1211.json index e3a9f35c..e858ab13 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1211.json +++ b/src/main/resources/assets/imsm/models/item/useradded1211.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1211","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1211", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1212.json b/src/main/resources/assets/imsm/models/item/useradded1212.json index bd4735e3..db8fb76f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1212.json +++ b/src/main/resources/assets/imsm/models/item/useradded1212.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1212","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1212", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1213.json b/src/main/resources/assets/imsm/models/item/useradded1213.json index 1cd0c67f..e982c101 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1213.json +++ b/src/main/resources/assets/imsm/models/item/useradded1213.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1213","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1213", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1214.json b/src/main/resources/assets/imsm/models/item/useradded1214.json index 1abeaa1e..0446a6e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1214.json +++ b/src/main/resources/assets/imsm/models/item/useradded1214.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1214","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1214", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1215.json b/src/main/resources/assets/imsm/models/item/useradded1215.json index f8a87c1c..dec80244 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1215.json +++ b/src/main/resources/assets/imsm/models/item/useradded1215.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1215","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1215", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1216.json b/src/main/resources/assets/imsm/models/item/useradded1216.json index e44b71aa..8d4f1847 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1216.json +++ b/src/main/resources/assets/imsm/models/item/useradded1216.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1216","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1216", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1217.json b/src/main/resources/assets/imsm/models/item/useradded1217.json index 54a8079d..35cd63af 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1217.json +++ b/src/main/resources/assets/imsm/models/item/useradded1217.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1217","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1217", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1218.json b/src/main/resources/assets/imsm/models/item/useradded1218.json index 8bbc630a..a9311191 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1218.json +++ b/src/main/resources/assets/imsm/models/item/useradded1218.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1218","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1218", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1219.json b/src/main/resources/assets/imsm/models/item/useradded1219.json index d13ca9c0..878fdd54 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1219.json +++ b/src/main/resources/assets/imsm/models/item/useradded1219.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1219","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1219", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded122.json b/src/main/resources/assets/imsm/models/item/useradded122.json index 3ef93953..6fe24808 100644 --- a/src/main/resources/assets/imsm/models/item/useradded122.json +++ b/src/main/resources/assets/imsm/models/item/useradded122.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded122","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded122", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1220.json b/src/main/resources/assets/imsm/models/item/useradded1220.json index 36e9a9f7..730188fa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1220.json +++ b/src/main/resources/assets/imsm/models/item/useradded1220.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1220","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1220", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1221.json b/src/main/resources/assets/imsm/models/item/useradded1221.json index e74f15b6..58c3c1f2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1221.json +++ b/src/main/resources/assets/imsm/models/item/useradded1221.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1221","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1221", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1222.json b/src/main/resources/assets/imsm/models/item/useradded1222.json index d98c5211..4e1034c6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1222.json +++ b/src/main/resources/assets/imsm/models/item/useradded1222.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1222","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1222", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1223.json b/src/main/resources/assets/imsm/models/item/useradded1223.json index f87df9b0..612044ef 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1223.json +++ b/src/main/resources/assets/imsm/models/item/useradded1223.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1223","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1223", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1224.json b/src/main/resources/assets/imsm/models/item/useradded1224.json index 76482939..f658862a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1224.json +++ b/src/main/resources/assets/imsm/models/item/useradded1224.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1224","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1224", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1225.json b/src/main/resources/assets/imsm/models/item/useradded1225.json index 8785378b..ba4b0d77 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1225.json +++ b/src/main/resources/assets/imsm/models/item/useradded1225.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1225","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1225", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1226.json b/src/main/resources/assets/imsm/models/item/useradded1226.json index e7e3acd3..1cb359fd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1226.json +++ b/src/main/resources/assets/imsm/models/item/useradded1226.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1226","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1226", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1227.json b/src/main/resources/assets/imsm/models/item/useradded1227.json index 5f1001c8..613b4be4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1227.json +++ b/src/main/resources/assets/imsm/models/item/useradded1227.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1227","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1227", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1228.json b/src/main/resources/assets/imsm/models/item/useradded1228.json index c7c0946b..452b74ca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1228.json +++ b/src/main/resources/assets/imsm/models/item/useradded1228.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1228","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1228", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1229.json b/src/main/resources/assets/imsm/models/item/useradded1229.json index c44d5e2a..542c7aef 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1229.json +++ b/src/main/resources/assets/imsm/models/item/useradded1229.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1229","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1229", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded123.json b/src/main/resources/assets/imsm/models/item/useradded123.json index c56870da..de5a0504 100644 --- a/src/main/resources/assets/imsm/models/item/useradded123.json +++ b/src/main/resources/assets/imsm/models/item/useradded123.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded123","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded123", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1230.json b/src/main/resources/assets/imsm/models/item/useradded1230.json index 01eff326..e5c67f1d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1230.json +++ b/src/main/resources/assets/imsm/models/item/useradded1230.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1230","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1230", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1231.json b/src/main/resources/assets/imsm/models/item/useradded1231.json index 41b96627..5a6068c1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1231.json +++ b/src/main/resources/assets/imsm/models/item/useradded1231.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1231","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1231", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1232.json b/src/main/resources/assets/imsm/models/item/useradded1232.json index 3d466956..6c2d2b69 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1232.json +++ b/src/main/resources/assets/imsm/models/item/useradded1232.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1232","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1232", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1233.json b/src/main/resources/assets/imsm/models/item/useradded1233.json index b4d53b4b..a7ac6d63 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1233.json +++ b/src/main/resources/assets/imsm/models/item/useradded1233.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1233","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1233", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1234.json b/src/main/resources/assets/imsm/models/item/useradded1234.json index a58e5bab..04a111ff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1234.json +++ b/src/main/resources/assets/imsm/models/item/useradded1234.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1234","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1234", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1235.json b/src/main/resources/assets/imsm/models/item/useradded1235.json index ab5f5da7..6cd4a7bf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1235.json +++ b/src/main/resources/assets/imsm/models/item/useradded1235.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1235","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1235", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1236.json b/src/main/resources/assets/imsm/models/item/useradded1236.json index 5d5ea8a9..f91a335a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1236.json +++ b/src/main/resources/assets/imsm/models/item/useradded1236.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1236","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1236", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1237.json b/src/main/resources/assets/imsm/models/item/useradded1237.json index 3b6fab3a..3511a974 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1237.json +++ b/src/main/resources/assets/imsm/models/item/useradded1237.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1237","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1237", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1238.json b/src/main/resources/assets/imsm/models/item/useradded1238.json index 79f4613c..8b65ec00 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1238.json +++ b/src/main/resources/assets/imsm/models/item/useradded1238.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1238","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1238", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1239.json b/src/main/resources/assets/imsm/models/item/useradded1239.json index a88c46ec..22ba7194 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1239.json +++ b/src/main/resources/assets/imsm/models/item/useradded1239.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1239","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1239", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded124.json b/src/main/resources/assets/imsm/models/item/useradded124.json index f6000147..ee0cc3f8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded124.json +++ b/src/main/resources/assets/imsm/models/item/useradded124.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded124","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded124", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1240.json b/src/main/resources/assets/imsm/models/item/useradded1240.json index ebb6fadc..749de518 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1240.json +++ b/src/main/resources/assets/imsm/models/item/useradded1240.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1240","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1240", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1241.json b/src/main/resources/assets/imsm/models/item/useradded1241.json index 18a3572a..ea774ee5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1241.json +++ b/src/main/resources/assets/imsm/models/item/useradded1241.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1241","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1241", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1242.json b/src/main/resources/assets/imsm/models/item/useradded1242.json index 1f73f5a1..1becc66b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1242.json +++ b/src/main/resources/assets/imsm/models/item/useradded1242.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1242","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1242", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1243.json b/src/main/resources/assets/imsm/models/item/useradded1243.json index 76082ef6..30066e3c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1243.json +++ b/src/main/resources/assets/imsm/models/item/useradded1243.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1243","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1243", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1244.json b/src/main/resources/assets/imsm/models/item/useradded1244.json index 9e1699f4..9167d6cd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1244.json +++ b/src/main/resources/assets/imsm/models/item/useradded1244.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1244","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1244", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1245.json b/src/main/resources/assets/imsm/models/item/useradded1245.json index 434e2bfc..fe34c2e5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1245.json +++ b/src/main/resources/assets/imsm/models/item/useradded1245.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1245","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1245", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1246.json b/src/main/resources/assets/imsm/models/item/useradded1246.json index de037bc4..770ea1e7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1246.json +++ b/src/main/resources/assets/imsm/models/item/useradded1246.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1246","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1246", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1247.json b/src/main/resources/assets/imsm/models/item/useradded1247.json index 896abbd3..b94f51dc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1247.json +++ b/src/main/resources/assets/imsm/models/item/useradded1247.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1247","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1247", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1248.json b/src/main/resources/assets/imsm/models/item/useradded1248.json index 745ca3bb..1034a814 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1248.json +++ b/src/main/resources/assets/imsm/models/item/useradded1248.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1248","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1248", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1249.json b/src/main/resources/assets/imsm/models/item/useradded1249.json index 23b605fc..266f27f1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1249.json +++ b/src/main/resources/assets/imsm/models/item/useradded1249.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1249","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1249", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded125.json b/src/main/resources/assets/imsm/models/item/useradded125.json index a591fbc4..7661af07 100644 --- a/src/main/resources/assets/imsm/models/item/useradded125.json +++ b/src/main/resources/assets/imsm/models/item/useradded125.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded125","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded125", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1250.json b/src/main/resources/assets/imsm/models/item/useradded1250.json index 97e7942b..141ec213 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1250.json +++ b/src/main/resources/assets/imsm/models/item/useradded1250.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1250","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1250", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1251.json b/src/main/resources/assets/imsm/models/item/useradded1251.json index ab07199d..07478c38 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1251.json +++ b/src/main/resources/assets/imsm/models/item/useradded1251.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1251","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1251", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1252.json b/src/main/resources/assets/imsm/models/item/useradded1252.json index d37dbfb0..2fe06f70 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1252.json +++ b/src/main/resources/assets/imsm/models/item/useradded1252.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1252","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1252", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1253.json b/src/main/resources/assets/imsm/models/item/useradded1253.json index 165360e7..d6a47218 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1253.json +++ b/src/main/resources/assets/imsm/models/item/useradded1253.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1253","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1253", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1254.json b/src/main/resources/assets/imsm/models/item/useradded1254.json index 3509c72e..df86243f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1254.json +++ b/src/main/resources/assets/imsm/models/item/useradded1254.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1254","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1254", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1255.json b/src/main/resources/assets/imsm/models/item/useradded1255.json index 17b65a74..74ebe01a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1255.json +++ b/src/main/resources/assets/imsm/models/item/useradded1255.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1255","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1255", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1256.json b/src/main/resources/assets/imsm/models/item/useradded1256.json index 79588fbe..a83efc91 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1256.json +++ b/src/main/resources/assets/imsm/models/item/useradded1256.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1256","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1256", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1257.json b/src/main/resources/assets/imsm/models/item/useradded1257.json index 3911d2f0..78639db6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1257.json +++ b/src/main/resources/assets/imsm/models/item/useradded1257.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1257","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1257", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1258.json b/src/main/resources/assets/imsm/models/item/useradded1258.json index 95aa84cf..f9d4a87f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1258.json +++ b/src/main/resources/assets/imsm/models/item/useradded1258.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1258","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1258", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1259.json b/src/main/resources/assets/imsm/models/item/useradded1259.json index 4bc24793..d5573631 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1259.json +++ b/src/main/resources/assets/imsm/models/item/useradded1259.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1259","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1259", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded126.json b/src/main/resources/assets/imsm/models/item/useradded126.json index f65e70fe..22c24144 100644 --- a/src/main/resources/assets/imsm/models/item/useradded126.json +++ b/src/main/resources/assets/imsm/models/item/useradded126.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded126","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded126", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1260.json b/src/main/resources/assets/imsm/models/item/useradded1260.json index c65bae38..d1f0c3e9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1260.json +++ b/src/main/resources/assets/imsm/models/item/useradded1260.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1260","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1260", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1261.json b/src/main/resources/assets/imsm/models/item/useradded1261.json index c709a76c..d08e4783 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1261.json +++ b/src/main/resources/assets/imsm/models/item/useradded1261.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1261","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1261", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1262.json b/src/main/resources/assets/imsm/models/item/useradded1262.json index c1e277ea..75ad7cea 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1262.json +++ b/src/main/resources/assets/imsm/models/item/useradded1262.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1262","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1262", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1263.json b/src/main/resources/assets/imsm/models/item/useradded1263.json index e1183544..87bc8672 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1263.json +++ b/src/main/resources/assets/imsm/models/item/useradded1263.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1263","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1263", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1264.json b/src/main/resources/assets/imsm/models/item/useradded1264.json index db8de92e..f557ce95 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1264.json +++ b/src/main/resources/assets/imsm/models/item/useradded1264.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1264","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1264", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1265.json b/src/main/resources/assets/imsm/models/item/useradded1265.json index 69d2fb17..a65ac1fa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1265.json +++ b/src/main/resources/assets/imsm/models/item/useradded1265.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1265","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1265", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1266.json b/src/main/resources/assets/imsm/models/item/useradded1266.json index de43e40a..f21dfd7d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1266.json +++ b/src/main/resources/assets/imsm/models/item/useradded1266.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1266","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1266", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1267.json b/src/main/resources/assets/imsm/models/item/useradded1267.json index 025f7285..8abdfd69 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1267.json +++ b/src/main/resources/assets/imsm/models/item/useradded1267.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1267","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1267", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1268.json b/src/main/resources/assets/imsm/models/item/useradded1268.json index 0a99ddcb..098af9ff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1268.json +++ b/src/main/resources/assets/imsm/models/item/useradded1268.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1268","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1268", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1269.json b/src/main/resources/assets/imsm/models/item/useradded1269.json index 2fd62987..15475887 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1269.json +++ b/src/main/resources/assets/imsm/models/item/useradded1269.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1269","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1269", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded127.json b/src/main/resources/assets/imsm/models/item/useradded127.json index f8535578..e2874941 100644 --- a/src/main/resources/assets/imsm/models/item/useradded127.json +++ b/src/main/resources/assets/imsm/models/item/useradded127.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded127","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded127", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1270.json b/src/main/resources/assets/imsm/models/item/useradded1270.json index 95fdbffc..9822d677 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1270.json +++ b/src/main/resources/assets/imsm/models/item/useradded1270.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1270","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1270", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1271.json b/src/main/resources/assets/imsm/models/item/useradded1271.json index 57483e9f..98735fac 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1271.json +++ b/src/main/resources/assets/imsm/models/item/useradded1271.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1271","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1271", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1272.json b/src/main/resources/assets/imsm/models/item/useradded1272.json index 74f3615e..5cdc3ee0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1272.json +++ b/src/main/resources/assets/imsm/models/item/useradded1272.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1272","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1272", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1273.json b/src/main/resources/assets/imsm/models/item/useradded1273.json index 595c29c1..ba1b6c66 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1273.json +++ b/src/main/resources/assets/imsm/models/item/useradded1273.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1273","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1273", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1274.json b/src/main/resources/assets/imsm/models/item/useradded1274.json index 9cf5ff96..7357251b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1274.json +++ b/src/main/resources/assets/imsm/models/item/useradded1274.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1274","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1274", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1275.json b/src/main/resources/assets/imsm/models/item/useradded1275.json index 2a4a72f2..67ff6f15 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1275.json +++ b/src/main/resources/assets/imsm/models/item/useradded1275.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1275","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1275", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1276.json b/src/main/resources/assets/imsm/models/item/useradded1276.json index 832f8c29..12fb8839 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1276.json +++ b/src/main/resources/assets/imsm/models/item/useradded1276.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1276","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1276", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1277.json b/src/main/resources/assets/imsm/models/item/useradded1277.json index 85022789..9bcee650 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1277.json +++ b/src/main/resources/assets/imsm/models/item/useradded1277.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1277","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1277", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1278.json b/src/main/resources/assets/imsm/models/item/useradded1278.json index 188208df..6ad4b747 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1278.json +++ b/src/main/resources/assets/imsm/models/item/useradded1278.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1278","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1278", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1279.json b/src/main/resources/assets/imsm/models/item/useradded1279.json index 9f2d785b..dba8f0ed 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1279.json +++ b/src/main/resources/assets/imsm/models/item/useradded1279.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1279","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1279", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded128.json b/src/main/resources/assets/imsm/models/item/useradded128.json index 89dae7f9..34272c51 100644 --- a/src/main/resources/assets/imsm/models/item/useradded128.json +++ b/src/main/resources/assets/imsm/models/item/useradded128.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded128","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded128", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1280.json b/src/main/resources/assets/imsm/models/item/useradded1280.json index 79c2ac27..d078e3e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1280.json +++ b/src/main/resources/assets/imsm/models/item/useradded1280.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1280","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1280", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1281.json b/src/main/resources/assets/imsm/models/item/useradded1281.json index 450f8efe..f5417c1c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1281.json +++ b/src/main/resources/assets/imsm/models/item/useradded1281.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1281","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1281", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1282.json b/src/main/resources/assets/imsm/models/item/useradded1282.json index 99cd1397..31655316 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1282.json +++ b/src/main/resources/assets/imsm/models/item/useradded1282.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1282","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1282", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1283.json b/src/main/resources/assets/imsm/models/item/useradded1283.json index 076d3e80..5edfe781 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1283.json +++ b/src/main/resources/assets/imsm/models/item/useradded1283.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1283","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1283", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1284.json b/src/main/resources/assets/imsm/models/item/useradded1284.json index 99aab3cd..d31436b6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1284.json +++ b/src/main/resources/assets/imsm/models/item/useradded1284.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1284","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1284", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1285.json b/src/main/resources/assets/imsm/models/item/useradded1285.json index 123f1dfa..cb21e87f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1285.json +++ b/src/main/resources/assets/imsm/models/item/useradded1285.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1285","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1285", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1286.json b/src/main/resources/assets/imsm/models/item/useradded1286.json index e93379fb..a3cdafc6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1286.json +++ b/src/main/resources/assets/imsm/models/item/useradded1286.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1286","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1286", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1287.json b/src/main/resources/assets/imsm/models/item/useradded1287.json index 62e9ac63..aedfaab5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1287.json +++ b/src/main/resources/assets/imsm/models/item/useradded1287.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1287","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1287", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1288.json b/src/main/resources/assets/imsm/models/item/useradded1288.json index 60636d45..51dde675 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1288.json +++ b/src/main/resources/assets/imsm/models/item/useradded1288.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1288","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1288", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1289.json b/src/main/resources/assets/imsm/models/item/useradded1289.json index 176bbc98..6102e1a7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1289.json +++ b/src/main/resources/assets/imsm/models/item/useradded1289.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1289","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1289", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded129.json b/src/main/resources/assets/imsm/models/item/useradded129.json index ebd96763..6c4ee346 100644 --- a/src/main/resources/assets/imsm/models/item/useradded129.json +++ b/src/main/resources/assets/imsm/models/item/useradded129.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded129","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded129", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1290.json b/src/main/resources/assets/imsm/models/item/useradded1290.json index cc7f370d..639eb95b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1290.json +++ b/src/main/resources/assets/imsm/models/item/useradded1290.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1290","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1290", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1291.json b/src/main/resources/assets/imsm/models/item/useradded1291.json index d50384fa..9ea61f84 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1291.json +++ b/src/main/resources/assets/imsm/models/item/useradded1291.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1291","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1291", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1292.json b/src/main/resources/assets/imsm/models/item/useradded1292.json index 55ae88bb..6a71cb09 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1292.json +++ b/src/main/resources/assets/imsm/models/item/useradded1292.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1292","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1292", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1293.json b/src/main/resources/assets/imsm/models/item/useradded1293.json index bf9d2fa1..07a23faf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1293.json +++ b/src/main/resources/assets/imsm/models/item/useradded1293.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1293","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1293", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1294.json b/src/main/resources/assets/imsm/models/item/useradded1294.json index b3ddb23b..d2245ab2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1294.json +++ b/src/main/resources/assets/imsm/models/item/useradded1294.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1294","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1294", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1295.json b/src/main/resources/assets/imsm/models/item/useradded1295.json index fd445fb0..dec25cb6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1295.json +++ b/src/main/resources/assets/imsm/models/item/useradded1295.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1295","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1295", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1296.json b/src/main/resources/assets/imsm/models/item/useradded1296.json index 7b498bca..f07edf13 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1296.json +++ b/src/main/resources/assets/imsm/models/item/useradded1296.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1296","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1296", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1297.json b/src/main/resources/assets/imsm/models/item/useradded1297.json index 54d30272..a278d727 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1297.json +++ b/src/main/resources/assets/imsm/models/item/useradded1297.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1297","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1297", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1298.json b/src/main/resources/assets/imsm/models/item/useradded1298.json index 3c085126..7cc16468 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1298.json +++ b/src/main/resources/assets/imsm/models/item/useradded1298.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1298","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1298", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1299.json b/src/main/resources/assets/imsm/models/item/useradded1299.json index 374b6cf3..0ec8b17b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1299.json +++ b/src/main/resources/assets/imsm/models/item/useradded1299.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1299","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1299", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded13.json b/src/main/resources/assets/imsm/models/item/useradded13.json index b661eb47..c485702c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded13.json +++ b/src/main/resources/assets/imsm/models/item/useradded13.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded13","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded13", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded130.json b/src/main/resources/assets/imsm/models/item/useradded130.json index c3a0ca13..342e6f79 100644 --- a/src/main/resources/assets/imsm/models/item/useradded130.json +++ b/src/main/resources/assets/imsm/models/item/useradded130.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded130","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded130", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1300.json b/src/main/resources/assets/imsm/models/item/useradded1300.json index 69b186b2..8231edb2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1300.json +++ b/src/main/resources/assets/imsm/models/item/useradded1300.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1300","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1300", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1301.json b/src/main/resources/assets/imsm/models/item/useradded1301.json index 329940d5..787a77ad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1301.json +++ b/src/main/resources/assets/imsm/models/item/useradded1301.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1301","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1301", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1302.json b/src/main/resources/assets/imsm/models/item/useradded1302.json index 3d43f25d..c6e47db0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1302.json +++ b/src/main/resources/assets/imsm/models/item/useradded1302.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1302","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1302", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1303.json b/src/main/resources/assets/imsm/models/item/useradded1303.json index 2e3cfda4..b1ad79c0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1303.json +++ b/src/main/resources/assets/imsm/models/item/useradded1303.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1303","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1303", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1304.json b/src/main/resources/assets/imsm/models/item/useradded1304.json index 32aaf33f..4e651b2b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1304.json +++ b/src/main/resources/assets/imsm/models/item/useradded1304.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1304","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1304", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1305.json b/src/main/resources/assets/imsm/models/item/useradded1305.json index 61fc0023..72acb27d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1305.json +++ b/src/main/resources/assets/imsm/models/item/useradded1305.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1305","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1305", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1306.json b/src/main/resources/assets/imsm/models/item/useradded1306.json index 04dc6acb..b927f468 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1306.json +++ b/src/main/resources/assets/imsm/models/item/useradded1306.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1306","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1306", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1307.json b/src/main/resources/assets/imsm/models/item/useradded1307.json index ef68659e..be874e35 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1307.json +++ b/src/main/resources/assets/imsm/models/item/useradded1307.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1307","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1307", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1308.json b/src/main/resources/assets/imsm/models/item/useradded1308.json index 8b6d8ff1..e6115fe7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1308.json +++ b/src/main/resources/assets/imsm/models/item/useradded1308.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1308","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1308", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1309.json b/src/main/resources/assets/imsm/models/item/useradded1309.json index 0436cfea..a71e04d4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1309.json +++ b/src/main/resources/assets/imsm/models/item/useradded1309.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1309","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1309", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded131.json b/src/main/resources/assets/imsm/models/item/useradded131.json index 4281bdf2..cafeb897 100644 --- a/src/main/resources/assets/imsm/models/item/useradded131.json +++ b/src/main/resources/assets/imsm/models/item/useradded131.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded131","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded131", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1310.json b/src/main/resources/assets/imsm/models/item/useradded1310.json index 217e24fa..dec88cbc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1310.json +++ b/src/main/resources/assets/imsm/models/item/useradded1310.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1310","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1310", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1311.json b/src/main/resources/assets/imsm/models/item/useradded1311.json index 91737e47..b1f3034b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1311.json +++ b/src/main/resources/assets/imsm/models/item/useradded1311.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1311","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1311", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1312.json b/src/main/resources/assets/imsm/models/item/useradded1312.json index 250b4276..074a0c7a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1312.json +++ b/src/main/resources/assets/imsm/models/item/useradded1312.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1312","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1312", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1313.json b/src/main/resources/assets/imsm/models/item/useradded1313.json index 9c220aef..11c4be62 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1313.json +++ b/src/main/resources/assets/imsm/models/item/useradded1313.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1313","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1313", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1314.json b/src/main/resources/assets/imsm/models/item/useradded1314.json index 44ab4416..3b5fe52e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1314.json +++ b/src/main/resources/assets/imsm/models/item/useradded1314.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1314","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1314", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1315.json b/src/main/resources/assets/imsm/models/item/useradded1315.json index b2728322..dcc61310 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1315.json +++ b/src/main/resources/assets/imsm/models/item/useradded1315.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1315","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1315", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1316.json b/src/main/resources/assets/imsm/models/item/useradded1316.json index cd513fae..bbc22ba3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1316.json +++ b/src/main/resources/assets/imsm/models/item/useradded1316.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1316","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1316", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1317.json b/src/main/resources/assets/imsm/models/item/useradded1317.json index 00548f2a..32b5d36b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1317.json +++ b/src/main/resources/assets/imsm/models/item/useradded1317.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1317","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1317", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1318.json b/src/main/resources/assets/imsm/models/item/useradded1318.json index 0df30ab7..9dc07168 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1318.json +++ b/src/main/resources/assets/imsm/models/item/useradded1318.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1318","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1318", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1319.json b/src/main/resources/assets/imsm/models/item/useradded1319.json index 4a7d705e..997cc8fa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1319.json +++ b/src/main/resources/assets/imsm/models/item/useradded1319.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1319","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1319", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded132.json b/src/main/resources/assets/imsm/models/item/useradded132.json index 416e6c2b..56c7977d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded132.json +++ b/src/main/resources/assets/imsm/models/item/useradded132.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded132","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded132", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1320.json b/src/main/resources/assets/imsm/models/item/useradded1320.json index 77a770cb..3509341c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1320.json +++ b/src/main/resources/assets/imsm/models/item/useradded1320.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1320","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1320", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1321.json b/src/main/resources/assets/imsm/models/item/useradded1321.json index 74d559a4..5abac3e1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1321.json +++ b/src/main/resources/assets/imsm/models/item/useradded1321.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1321","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1321", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1322.json b/src/main/resources/assets/imsm/models/item/useradded1322.json index d2528ffa..612fe208 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1322.json +++ b/src/main/resources/assets/imsm/models/item/useradded1322.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1322","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1322", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1323.json b/src/main/resources/assets/imsm/models/item/useradded1323.json index ae9f7925..cef7e096 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1323.json +++ b/src/main/resources/assets/imsm/models/item/useradded1323.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1323","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1323", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1324.json b/src/main/resources/assets/imsm/models/item/useradded1324.json index a3a79a2a..d9346882 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1324.json +++ b/src/main/resources/assets/imsm/models/item/useradded1324.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1324","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1324", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1325.json b/src/main/resources/assets/imsm/models/item/useradded1325.json index 1b63f040..8e68c8d6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1325.json +++ b/src/main/resources/assets/imsm/models/item/useradded1325.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1325","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1325", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1326.json b/src/main/resources/assets/imsm/models/item/useradded1326.json index 07c147d2..aa507f88 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1326.json +++ b/src/main/resources/assets/imsm/models/item/useradded1326.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1326","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1326", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1327.json b/src/main/resources/assets/imsm/models/item/useradded1327.json index 73fd8de8..2cf0e85f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1327.json +++ b/src/main/resources/assets/imsm/models/item/useradded1327.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1327","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1327", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1328.json b/src/main/resources/assets/imsm/models/item/useradded1328.json index 29fce5f1..476bf229 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1328.json +++ b/src/main/resources/assets/imsm/models/item/useradded1328.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1328","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1328", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1329.json b/src/main/resources/assets/imsm/models/item/useradded1329.json index f6135c12..60dc6546 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1329.json +++ b/src/main/resources/assets/imsm/models/item/useradded1329.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1329","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1329", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded133.json b/src/main/resources/assets/imsm/models/item/useradded133.json index 60df6108..02b1d7fa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded133.json +++ b/src/main/resources/assets/imsm/models/item/useradded133.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded133","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded133", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1330.json b/src/main/resources/assets/imsm/models/item/useradded1330.json index 7a788266..51a90f27 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1330.json +++ b/src/main/resources/assets/imsm/models/item/useradded1330.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1330","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1330", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1331.json b/src/main/resources/assets/imsm/models/item/useradded1331.json index 07d4faa3..cffcb188 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1331.json +++ b/src/main/resources/assets/imsm/models/item/useradded1331.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1331","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1331", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1332.json b/src/main/resources/assets/imsm/models/item/useradded1332.json index 988e7255..2d191d4d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1332.json +++ b/src/main/resources/assets/imsm/models/item/useradded1332.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1332","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1332", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1333.json b/src/main/resources/assets/imsm/models/item/useradded1333.json index 2023f8b1..4b678351 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1333.json +++ b/src/main/resources/assets/imsm/models/item/useradded1333.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1333","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1333", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1334.json b/src/main/resources/assets/imsm/models/item/useradded1334.json index 5adc4c62..5a8e9288 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1334.json +++ b/src/main/resources/assets/imsm/models/item/useradded1334.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1334","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1334", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1335.json b/src/main/resources/assets/imsm/models/item/useradded1335.json index 7fca1c1a..20bd3793 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1335.json +++ b/src/main/resources/assets/imsm/models/item/useradded1335.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1335","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1335", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1336.json b/src/main/resources/assets/imsm/models/item/useradded1336.json index fdd01180..12b4dbc6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1336.json +++ b/src/main/resources/assets/imsm/models/item/useradded1336.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1336","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1336", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1337.json b/src/main/resources/assets/imsm/models/item/useradded1337.json index 97b5fc7a..887b6ad5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1337.json +++ b/src/main/resources/assets/imsm/models/item/useradded1337.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1337","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1337", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1338.json b/src/main/resources/assets/imsm/models/item/useradded1338.json index 0166acfa..991fc4f6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1338.json +++ b/src/main/resources/assets/imsm/models/item/useradded1338.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1338","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1338", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1339.json b/src/main/resources/assets/imsm/models/item/useradded1339.json index 8a018cd5..e1904137 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1339.json +++ b/src/main/resources/assets/imsm/models/item/useradded1339.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1339","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1339", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded134.json b/src/main/resources/assets/imsm/models/item/useradded134.json index 6ca890e4..313d0016 100644 --- a/src/main/resources/assets/imsm/models/item/useradded134.json +++ b/src/main/resources/assets/imsm/models/item/useradded134.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded134","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded134", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1340.json b/src/main/resources/assets/imsm/models/item/useradded1340.json index a6110270..df6529c5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1340.json +++ b/src/main/resources/assets/imsm/models/item/useradded1340.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1340","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1340", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1341.json b/src/main/resources/assets/imsm/models/item/useradded1341.json index 04969088..003d8a60 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1341.json +++ b/src/main/resources/assets/imsm/models/item/useradded1341.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1341","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1341", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1342.json b/src/main/resources/assets/imsm/models/item/useradded1342.json index 122f32a7..7704a01f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1342.json +++ b/src/main/resources/assets/imsm/models/item/useradded1342.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1342","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1342", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1343.json b/src/main/resources/assets/imsm/models/item/useradded1343.json index a94bb391..ba2a89f0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1343.json +++ b/src/main/resources/assets/imsm/models/item/useradded1343.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1343","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1343", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1344.json b/src/main/resources/assets/imsm/models/item/useradded1344.json index f1375e1c..09f962f2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1344.json +++ b/src/main/resources/assets/imsm/models/item/useradded1344.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1344","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1344", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1345.json b/src/main/resources/assets/imsm/models/item/useradded1345.json index 1e4c8be4..23e2c8f7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1345.json +++ b/src/main/resources/assets/imsm/models/item/useradded1345.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1345","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1345", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1346.json b/src/main/resources/assets/imsm/models/item/useradded1346.json index c0b33de3..a4454e44 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1346.json +++ b/src/main/resources/assets/imsm/models/item/useradded1346.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1346","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1346", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1347.json b/src/main/resources/assets/imsm/models/item/useradded1347.json index 45473441..a0f5c533 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1347.json +++ b/src/main/resources/assets/imsm/models/item/useradded1347.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1347","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1347", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1348.json b/src/main/resources/assets/imsm/models/item/useradded1348.json index 753ea299..8cc7687e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1348.json +++ b/src/main/resources/assets/imsm/models/item/useradded1348.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1348","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1348", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1349.json b/src/main/resources/assets/imsm/models/item/useradded1349.json index 1ff1b2f2..2775524f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1349.json +++ b/src/main/resources/assets/imsm/models/item/useradded1349.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1349","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1349", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded135.json b/src/main/resources/assets/imsm/models/item/useradded135.json index f67bd87a..55a5989c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded135.json +++ b/src/main/resources/assets/imsm/models/item/useradded135.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded135","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded135", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1350.json b/src/main/resources/assets/imsm/models/item/useradded1350.json index 178908bb..6efe61b5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1350.json +++ b/src/main/resources/assets/imsm/models/item/useradded1350.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1350","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1350", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1351.json b/src/main/resources/assets/imsm/models/item/useradded1351.json index ac2e92e4..435310fa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1351.json +++ b/src/main/resources/assets/imsm/models/item/useradded1351.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1351","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1351", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1352.json b/src/main/resources/assets/imsm/models/item/useradded1352.json index 91661734..553dc5ad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1352.json +++ b/src/main/resources/assets/imsm/models/item/useradded1352.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1352","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1352", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1353.json b/src/main/resources/assets/imsm/models/item/useradded1353.json index 6f02e5bd..f676cf08 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1353.json +++ b/src/main/resources/assets/imsm/models/item/useradded1353.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1353","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1353", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1354.json b/src/main/resources/assets/imsm/models/item/useradded1354.json index c1af01be..01c0797b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1354.json +++ b/src/main/resources/assets/imsm/models/item/useradded1354.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1354","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1354", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1355.json b/src/main/resources/assets/imsm/models/item/useradded1355.json index bb25b527..05e9ce3c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1355.json +++ b/src/main/resources/assets/imsm/models/item/useradded1355.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1355","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1355", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1356.json b/src/main/resources/assets/imsm/models/item/useradded1356.json index a929253d..bd7eae36 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1356.json +++ b/src/main/resources/assets/imsm/models/item/useradded1356.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1356","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1356", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1357.json b/src/main/resources/assets/imsm/models/item/useradded1357.json index 8aa18764..1e1e0147 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1357.json +++ b/src/main/resources/assets/imsm/models/item/useradded1357.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1357","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1357", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1358.json b/src/main/resources/assets/imsm/models/item/useradded1358.json index ab0ca6c4..8e040c41 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1358.json +++ b/src/main/resources/assets/imsm/models/item/useradded1358.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1358","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1358", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1359.json b/src/main/resources/assets/imsm/models/item/useradded1359.json index 94535f6e..393e85ab 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1359.json +++ b/src/main/resources/assets/imsm/models/item/useradded1359.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1359","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1359", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded136.json b/src/main/resources/assets/imsm/models/item/useradded136.json index cd6ea16c..363061f8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded136.json +++ b/src/main/resources/assets/imsm/models/item/useradded136.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded136","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded136", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1360.json b/src/main/resources/assets/imsm/models/item/useradded1360.json index a04b142e..fd9bb25b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1360.json +++ b/src/main/resources/assets/imsm/models/item/useradded1360.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1360","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1360", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1361.json b/src/main/resources/assets/imsm/models/item/useradded1361.json index 865bf115..b5930cc6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1361.json +++ b/src/main/resources/assets/imsm/models/item/useradded1361.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1361","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1361", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1362.json b/src/main/resources/assets/imsm/models/item/useradded1362.json index f3e519e0..1f423c86 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1362.json +++ b/src/main/resources/assets/imsm/models/item/useradded1362.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1362","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1362", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1363.json b/src/main/resources/assets/imsm/models/item/useradded1363.json index ef57ce36..1ea868a9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1363.json +++ b/src/main/resources/assets/imsm/models/item/useradded1363.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1363","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1363", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1364.json b/src/main/resources/assets/imsm/models/item/useradded1364.json index 2e836c80..c4bda382 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1364.json +++ b/src/main/resources/assets/imsm/models/item/useradded1364.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1364","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1364", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1365.json b/src/main/resources/assets/imsm/models/item/useradded1365.json index 4fc4bfb4..b58f0b09 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1365.json +++ b/src/main/resources/assets/imsm/models/item/useradded1365.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1365","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1365", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1366.json b/src/main/resources/assets/imsm/models/item/useradded1366.json index 85090b92..741c694f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1366.json +++ b/src/main/resources/assets/imsm/models/item/useradded1366.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1366","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1366", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1367.json b/src/main/resources/assets/imsm/models/item/useradded1367.json index 306b2697..3d040041 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1367.json +++ b/src/main/resources/assets/imsm/models/item/useradded1367.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1367","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1367", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1368.json b/src/main/resources/assets/imsm/models/item/useradded1368.json index b53ece61..2136eb0b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1368.json +++ b/src/main/resources/assets/imsm/models/item/useradded1368.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1368","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1368", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1369.json b/src/main/resources/assets/imsm/models/item/useradded1369.json index daceca63..df1bfdc1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1369.json +++ b/src/main/resources/assets/imsm/models/item/useradded1369.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1369","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1369", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded137.json b/src/main/resources/assets/imsm/models/item/useradded137.json index 3ab7f282..e32411c4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded137.json +++ b/src/main/resources/assets/imsm/models/item/useradded137.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded137","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded137", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1370.json b/src/main/resources/assets/imsm/models/item/useradded1370.json index 1d875a63..03830769 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1370.json +++ b/src/main/resources/assets/imsm/models/item/useradded1370.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1370","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1370", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1371.json b/src/main/resources/assets/imsm/models/item/useradded1371.json index 75747992..b996e52b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1371.json +++ b/src/main/resources/assets/imsm/models/item/useradded1371.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1371","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1371", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1372.json b/src/main/resources/assets/imsm/models/item/useradded1372.json index eb024696..b4aed073 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1372.json +++ b/src/main/resources/assets/imsm/models/item/useradded1372.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1372","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1372", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1373.json b/src/main/resources/assets/imsm/models/item/useradded1373.json index 3c77011a..4f5bbb01 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1373.json +++ b/src/main/resources/assets/imsm/models/item/useradded1373.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1373","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1373", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1374.json b/src/main/resources/assets/imsm/models/item/useradded1374.json index 3373af52..5a9c0713 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1374.json +++ b/src/main/resources/assets/imsm/models/item/useradded1374.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1374","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1374", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1375.json b/src/main/resources/assets/imsm/models/item/useradded1375.json index 7763b233..e32b3126 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1375.json +++ b/src/main/resources/assets/imsm/models/item/useradded1375.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1375","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1375", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1376.json b/src/main/resources/assets/imsm/models/item/useradded1376.json index 0c4a5518..7a473923 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1376.json +++ b/src/main/resources/assets/imsm/models/item/useradded1376.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1376","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1376", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1377.json b/src/main/resources/assets/imsm/models/item/useradded1377.json index d839622e..d0dc9e61 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1377.json +++ b/src/main/resources/assets/imsm/models/item/useradded1377.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1377","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1377", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1378.json b/src/main/resources/assets/imsm/models/item/useradded1378.json index 3d410f6b..b9d2fbaa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1378.json +++ b/src/main/resources/assets/imsm/models/item/useradded1378.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1378","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1378", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1379.json b/src/main/resources/assets/imsm/models/item/useradded1379.json index ab587c6d..70f28021 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1379.json +++ b/src/main/resources/assets/imsm/models/item/useradded1379.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1379","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1379", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded138.json b/src/main/resources/assets/imsm/models/item/useradded138.json index 3eb4baa0..4326a416 100644 --- a/src/main/resources/assets/imsm/models/item/useradded138.json +++ b/src/main/resources/assets/imsm/models/item/useradded138.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded138","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded138", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1380.json b/src/main/resources/assets/imsm/models/item/useradded1380.json index fd6d15aa..75f7004a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1380.json +++ b/src/main/resources/assets/imsm/models/item/useradded1380.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1380","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1380", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1381.json b/src/main/resources/assets/imsm/models/item/useradded1381.json index 43dbea78..6904b543 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1381.json +++ b/src/main/resources/assets/imsm/models/item/useradded1381.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1381","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1381", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1382.json b/src/main/resources/assets/imsm/models/item/useradded1382.json index f7410766..8b04f382 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1382.json +++ b/src/main/resources/assets/imsm/models/item/useradded1382.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1382","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1382", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1383.json b/src/main/resources/assets/imsm/models/item/useradded1383.json index 5700c4de..c99218ae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1383.json +++ b/src/main/resources/assets/imsm/models/item/useradded1383.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1383","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1383", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1384.json b/src/main/resources/assets/imsm/models/item/useradded1384.json index 0dce4cbb..9f8ad9e5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1384.json +++ b/src/main/resources/assets/imsm/models/item/useradded1384.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1384","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1384", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1385.json b/src/main/resources/assets/imsm/models/item/useradded1385.json index fe5a047b..2125fece 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1385.json +++ b/src/main/resources/assets/imsm/models/item/useradded1385.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1385","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1385", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1386.json b/src/main/resources/assets/imsm/models/item/useradded1386.json index 6ec35787..80cbdc04 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1386.json +++ b/src/main/resources/assets/imsm/models/item/useradded1386.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1386","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1386", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1387.json b/src/main/resources/assets/imsm/models/item/useradded1387.json index 145c2ce4..b8a1364f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1387.json +++ b/src/main/resources/assets/imsm/models/item/useradded1387.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1387","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1387", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1388.json b/src/main/resources/assets/imsm/models/item/useradded1388.json index ed484e09..ade46b0d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1388.json +++ b/src/main/resources/assets/imsm/models/item/useradded1388.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1388","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1388", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1389.json b/src/main/resources/assets/imsm/models/item/useradded1389.json index 64d84d76..3a72cd54 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1389.json +++ b/src/main/resources/assets/imsm/models/item/useradded1389.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1389","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1389", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded139.json b/src/main/resources/assets/imsm/models/item/useradded139.json index d6ea633a..efb63ad2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded139.json +++ b/src/main/resources/assets/imsm/models/item/useradded139.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded139","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded139", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1390.json b/src/main/resources/assets/imsm/models/item/useradded1390.json index 8551e0da..4be25f11 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1390.json +++ b/src/main/resources/assets/imsm/models/item/useradded1390.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1390","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1390", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1391.json b/src/main/resources/assets/imsm/models/item/useradded1391.json index 84bd49a6..3749be19 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1391.json +++ b/src/main/resources/assets/imsm/models/item/useradded1391.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1391","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1391", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1392.json b/src/main/resources/assets/imsm/models/item/useradded1392.json index c91e6974..27a7ef29 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1392.json +++ b/src/main/resources/assets/imsm/models/item/useradded1392.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1392","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1392", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1393.json b/src/main/resources/assets/imsm/models/item/useradded1393.json index 34155fdb..4e7cb97c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1393.json +++ b/src/main/resources/assets/imsm/models/item/useradded1393.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1393","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1393", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1394.json b/src/main/resources/assets/imsm/models/item/useradded1394.json index 63348702..58336647 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1394.json +++ b/src/main/resources/assets/imsm/models/item/useradded1394.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1394","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1394", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1395.json b/src/main/resources/assets/imsm/models/item/useradded1395.json index fc90ae3b..acb2927b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1395.json +++ b/src/main/resources/assets/imsm/models/item/useradded1395.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1395","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1395", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1396.json b/src/main/resources/assets/imsm/models/item/useradded1396.json index d118c045..0621a356 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1396.json +++ b/src/main/resources/assets/imsm/models/item/useradded1396.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1396","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1396", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1397.json b/src/main/resources/assets/imsm/models/item/useradded1397.json index 24a7fc16..b089d503 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1397.json +++ b/src/main/resources/assets/imsm/models/item/useradded1397.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1397","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1397", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1398.json b/src/main/resources/assets/imsm/models/item/useradded1398.json index aba92deb..86d22c8c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1398.json +++ b/src/main/resources/assets/imsm/models/item/useradded1398.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1398","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1398", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1399.json b/src/main/resources/assets/imsm/models/item/useradded1399.json index 43238ce8..bb4bb7c6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1399.json +++ b/src/main/resources/assets/imsm/models/item/useradded1399.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1399","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1399", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded14.json b/src/main/resources/assets/imsm/models/item/useradded14.json index 14065636..dd5800ca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded14.json +++ b/src/main/resources/assets/imsm/models/item/useradded14.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded14","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded14", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded140.json b/src/main/resources/assets/imsm/models/item/useradded140.json index 8330664d..b0c30ac4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded140.json +++ b/src/main/resources/assets/imsm/models/item/useradded140.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded140","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded140", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1400.json b/src/main/resources/assets/imsm/models/item/useradded1400.json index 27eb6614..915c1b5c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1400.json +++ b/src/main/resources/assets/imsm/models/item/useradded1400.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1400","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1400", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1401.json b/src/main/resources/assets/imsm/models/item/useradded1401.json index 0074e113..9fb941cc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1401.json +++ b/src/main/resources/assets/imsm/models/item/useradded1401.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1401","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1401", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1402.json b/src/main/resources/assets/imsm/models/item/useradded1402.json index 3ebabfe9..db6d6b94 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1402.json +++ b/src/main/resources/assets/imsm/models/item/useradded1402.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1402","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1402", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1403.json b/src/main/resources/assets/imsm/models/item/useradded1403.json index 816b7457..c7d8966a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1403.json +++ b/src/main/resources/assets/imsm/models/item/useradded1403.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1403","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1403", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1404.json b/src/main/resources/assets/imsm/models/item/useradded1404.json index 68206835..166226b8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1404.json +++ b/src/main/resources/assets/imsm/models/item/useradded1404.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1404","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1404", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1405.json b/src/main/resources/assets/imsm/models/item/useradded1405.json index 4c973408..b1289da5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1405.json +++ b/src/main/resources/assets/imsm/models/item/useradded1405.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1405","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1405", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1406.json b/src/main/resources/assets/imsm/models/item/useradded1406.json index c0556820..5a4455c7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1406.json +++ b/src/main/resources/assets/imsm/models/item/useradded1406.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1406","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1406", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1407.json b/src/main/resources/assets/imsm/models/item/useradded1407.json index 5d2c3960..ce1d09ec 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1407.json +++ b/src/main/resources/assets/imsm/models/item/useradded1407.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1407","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1407", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1408.json b/src/main/resources/assets/imsm/models/item/useradded1408.json index e229e527..e3cf50db 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1408.json +++ b/src/main/resources/assets/imsm/models/item/useradded1408.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1408","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1408", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1409.json b/src/main/resources/assets/imsm/models/item/useradded1409.json index 3256c885..d0b03a3c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1409.json +++ b/src/main/resources/assets/imsm/models/item/useradded1409.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1409","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1409", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded141.json b/src/main/resources/assets/imsm/models/item/useradded141.json index cbd5098d..3afa008c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded141.json +++ b/src/main/resources/assets/imsm/models/item/useradded141.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded141","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded141", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1410.json b/src/main/resources/assets/imsm/models/item/useradded1410.json index 9884069b..94c733ac 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1410.json +++ b/src/main/resources/assets/imsm/models/item/useradded1410.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1410","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1410", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1411.json b/src/main/resources/assets/imsm/models/item/useradded1411.json index 1aa95a0a..9f541ed9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1411.json +++ b/src/main/resources/assets/imsm/models/item/useradded1411.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1411","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1411", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1412.json b/src/main/resources/assets/imsm/models/item/useradded1412.json index d8fb6412..9b6c5d59 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1412.json +++ b/src/main/resources/assets/imsm/models/item/useradded1412.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1412","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1412", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1413.json b/src/main/resources/assets/imsm/models/item/useradded1413.json index 128ee1c7..d700c18d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1413.json +++ b/src/main/resources/assets/imsm/models/item/useradded1413.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1413","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1413", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1414.json b/src/main/resources/assets/imsm/models/item/useradded1414.json index 969fa133..830656f4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1414.json +++ b/src/main/resources/assets/imsm/models/item/useradded1414.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1414","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1414", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1415.json b/src/main/resources/assets/imsm/models/item/useradded1415.json index bdd7e29a..8328cd19 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1415.json +++ b/src/main/resources/assets/imsm/models/item/useradded1415.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1415","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1415", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1416.json b/src/main/resources/assets/imsm/models/item/useradded1416.json index e05c08f1..44133aa3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1416.json +++ b/src/main/resources/assets/imsm/models/item/useradded1416.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1416","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1416", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1417.json b/src/main/resources/assets/imsm/models/item/useradded1417.json index b3ff4c9b..f02d794f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1417.json +++ b/src/main/resources/assets/imsm/models/item/useradded1417.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1417","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1417", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1418.json b/src/main/resources/assets/imsm/models/item/useradded1418.json index 6e31d22d..e65c6e90 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1418.json +++ b/src/main/resources/assets/imsm/models/item/useradded1418.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1418","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1418", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1419.json b/src/main/resources/assets/imsm/models/item/useradded1419.json index 8df2f14c..1429e431 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1419.json +++ b/src/main/resources/assets/imsm/models/item/useradded1419.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1419","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1419", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded142.json b/src/main/resources/assets/imsm/models/item/useradded142.json index decd862b..690afed1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded142.json +++ b/src/main/resources/assets/imsm/models/item/useradded142.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded142","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded142", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1420.json b/src/main/resources/assets/imsm/models/item/useradded1420.json index 2ff29783..850af04b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1420.json +++ b/src/main/resources/assets/imsm/models/item/useradded1420.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1420","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1420", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1421.json b/src/main/resources/assets/imsm/models/item/useradded1421.json index ed44bb67..44dff6db 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1421.json +++ b/src/main/resources/assets/imsm/models/item/useradded1421.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1421","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1421", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1422.json b/src/main/resources/assets/imsm/models/item/useradded1422.json index bb07ce99..1e6c35a4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1422.json +++ b/src/main/resources/assets/imsm/models/item/useradded1422.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1422","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1422", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1423.json b/src/main/resources/assets/imsm/models/item/useradded1423.json index bebc95c5..90d6e1bc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1423.json +++ b/src/main/resources/assets/imsm/models/item/useradded1423.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1423","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1423", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1424.json b/src/main/resources/assets/imsm/models/item/useradded1424.json index e2987aa8..21887a11 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1424.json +++ b/src/main/resources/assets/imsm/models/item/useradded1424.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1424","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1424", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1425.json b/src/main/resources/assets/imsm/models/item/useradded1425.json index 3f192422..8ff82b3c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1425.json +++ b/src/main/resources/assets/imsm/models/item/useradded1425.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1425","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1425", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1426.json b/src/main/resources/assets/imsm/models/item/useradded1426.json index 1710acd8..69d79fea 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1426.json +++ b/src/main/resources/assets/imsm/models/item/useradded1426.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1426","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1426", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1427.json b/src/main/resources/assets/imsm/models/item/useradded1427.json index 09a1ff20..a00bc256 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1427.json +++ b/src/main/resources/assets/imsm/models/item/useradded1427.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1427","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1427", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1428.json b/src/main/resources/assets/imsm/models/item/useradded1428.json index 6d8b3302..db466255 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1428.json +++ b/src/main/resources/assets/imsm/models/item/useradded1428.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1428","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1428", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1429.json b/src/main/resources/assets/imsm/models/item/useradded1429.json index da6e0233..d55ca28b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1429.json +++ b/src/main/resources/assets/imsm/models/item/useradded1429.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1429","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1429", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded143.json b/src/main/resources/assets/imsm/models/item/useradded143.json index 2def5292..61af9413 100644 --- a/src/main/resources/assets/imsm/models/item/useradded143.json +++ b/src/main/resources/assets/imsm/models/item/useradded143.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded143","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded143", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1430.json b/src/main/resources/assets/imsm/models/item/useradded1430.json index fbe8eb15..a6d278b9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1430.json +++ b/src/main/resources/assets/imsm/models/item/useradded1430.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1430","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1430", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1431.json b/src/main/resources/assets/imsm/models/item/useradded1431.json index eb7a4626..f1a36453 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1431.json +++ b/src/main/resources/assets/imsm/models/item/useradded1431.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1431","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1431", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1432.json b/src/main/resources/assets/imsm/models/item/useradded1432.json index 1aab08c9..79c13d27 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1432.json +++ b/src/main/resources/assets/imsm/models/item/useradded1432.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1432","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1432", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1433.json b/src/main/resources/assets/imsm/models/item/useradded1433.json index e97e5746..20878d88 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1433.json +++ b/src/main/resources/assets/imsm/models/item/useradded1433.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1433","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1433", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1434.json b/src/main/resources/assets/imsm/models/item/useradded1434.json index 13703c28..8c2eddba 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1434.json +++ b/src/main/resources/assets/imsm/models/item/useradded1434.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1434","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1434", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1435.json b/src/main/resources/assets/imsm/models/item/useradded1435.json index 83528653..f774aa40 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1435.json +++ b/src/main/resources/assets/imsm/models/item/useradded1435.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1435","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1435", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1436.json b/src/main/resources/assets/imsm/models/item/useradded1436.json index 5309b935..2c1eec35 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1436.json +++ b/src/main/resources/assets/imsm/models/item/useradded1436.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1436","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1436", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1437.json b/src/main/resources/assets/imsm/models/item/useradded1437.json index ff9e7d77..e8ad8d76 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1437.json +++ b/src/main/resources/assets/imsm/models/item/useradded1437.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1437","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1437", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1438.json b/src/main/resources/assets/imsm/models/item/useradded1438.json index 9bee180a..2f5a4f4e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1438.json +++ b/src/main/resources/assets/imsm/models/item/useradded1438.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1438","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1438", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1439.json b/src/main/resources/assets/imsm/models/item/useradded1439.json index d7fbc52c..20a7e7f0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1439.json +++ b/src/main/resources/assets/imsm/models/item/useradded1439.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1439","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1439", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded144.json b/src/main/resources/assets/imsm/models/item/useradded144.json index ba1c4f71..390235b6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded144.json +++ b/src/main/resources/assets/imsm/models/item/useradded144.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded144","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded144", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1440.json b/src/main/resources/assets/imsm/models/item/useradded1440.json index 30b2d845..d32f1947 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1440.json +++ b/src/main/resources/assets/imsm/models/item/useradded1440.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1440","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1440", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1441.json b/src/main/resources/assets/imsm/models/item/useradded1441.json index 777bf604..fcef331f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1441.json +++ b/src/main/resources/assets/imsm/models/item/useradded1441.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1441","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1441", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1442.json b/src/main/resources/assets/imsm/models/item/useradded1442.json index 59b51deb..bf2dcd0a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1442.json +++ b/src/main/resources/assets/imsm/models/item/useradded1442.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1442","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1442", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1443.json b/src/main/resources/assets/imsm/models/item/useradded1443.json index 61574b96..c18ad111 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1443.json +++ b/src/main/resources/assets/imsm/models/item/useradded1443.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1443","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1443", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1444.json b/src/main/resources/assets/imsm/models/item/useradded1444.json index 3b96f375..f1753f99 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1444.json +++ b/src/main/resources/assets/imsm/models/item/useradded1444.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1444","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1444", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1445.json b/src/main/resources/assets/imsm/models/item/useradded1445.json index 6c953022..d58fbb54 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1445.json +++ b/src/main/resources/assets/imsm/models/item/useradded1445.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1445","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1445", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1446.json b/src/main/resources/assets/imsm/models/item/useradded1446.json index 965ec24b..46e06764 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1446.json +++ b/src/main/resources/assets/imsm/models/item/useradded1446.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1446","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1446", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1447.json b/src/main/resources/assets/imsm/models/item/useradded1447.json index 3d12de04..5c2993bf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1447.json +++ b/src/main/resources/assets/imsm/models/item/useradded1447.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1447","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1447", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1448.json b/src/main/resources/assets/imsm/models/item/useradded1448.json index f9f79f85..4e88e3c8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1448.json +++ b/src/main/resources/assets/imsm/models/item/useradded1448.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1448","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1448", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1449.json b/src/main/resources/assets/imsm/models/item/useradded1449.json index 0be1a654..29b6f1c5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1449.json +++ b/src/main/resources/assets/imsm/models/item/useradded1449.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1449","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1449", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded145.json b/src/main/resources/assets/imsm/models/item/useradded145.json index a2e54068..4749f98f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded145.json +++ b/src/main/resources/assets/imsm/models/item/useradded145.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded145","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded145", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1450.json b/src/main/resources/assets/imsm/models/item/useradded1450.json index 8b03aa67..aeb15f48 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1450.json +++ b/src/main/resources/assets/imsm/models/item/useradded1450.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1450","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1450", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1451.json b/src/main/resources/assets/imsm/models/item/useradded1451.json index 5fd954e5..b2005547 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1451.json +++ b/src/main/resources/assets/imsm/models/item/useradded1451.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1451","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1451", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1452.json b/src/main/resources/assets/imsm/models/item/useradded1452.json index d43a5a66..41ad90ca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1452.json +++ b/src/main/resources/assets/imsm/models/item/useradded1452.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1452","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1452", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1453.json b/src/main/resources/assets/imsm/models/item/useradded1453.json index bfdc97a7..1641ed60 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1453.json +++ b/src/main/resources/assets/imsm/models/item/useradded1453.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1453","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1453", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1454.json b/src/main/resources/assets/imsm/models/item/useradded1454.json index eb87ed46..b9a378e1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1454.json +++ b/src/main/resources/assets/imsm/models/item/useradded1454.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1454","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1454", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1455.json b/src/main/resources/assets/imsm/models/item/useradded1455.json index 69cdc717..ac6fd25b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1455.json +++ b/src/main/resources/assets/imsm/models/item/useradded1455.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1455","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1455", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1456.json b/src/main/resources/assets/imsm/models/item/useradded1456.json index b9bc8d69..53f64dfd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1456.json +++ b/src/main/resources/assets/imsm/models/item/useradded1456.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1456","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1456", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1457.json b/src/main/resources/assets/imsm/models/item/useradded1457.json index 75603aa4..f01f583a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1457.json +++ b/src/main/resources/assets/imsm/models/item/useradded1457.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1457","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1457", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1458.json b/src/main/resources/assets/imsm/models/item/useradded1458.json index 1151c8ca..516a02e0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1458.json +++ b/src/main/resources/assets/imsm/models/item/useradded1458.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1458","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1458", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1459.json b/src/main/resources/assets/imsm/models/item/useradded1459.json index d36064a8..a7ac147d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1459.json +++ b/src/main/resources/assets/imsm/models/item/useradded1459.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1459","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1459", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded146.json b/src/main/resources/assets/imsm/models/item/useradded146.json index beabc1fa..79949ae0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded146.json +++ b/src/main/resources/assets/imsm/models/item/useradded146.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded146","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded146", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1460.json b/src/main/resources/assets/imsm/models/item/useradded1460.json index ad65b579..19e3d81e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1460.json +++ b/src/main/resources/assets/imsm/models/item/useradded1460.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1460","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1460", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1461.json b/src/main/resources/assets/imsm/models/item/useradded1461.json index 5d98a65c..98f3260b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1461.json +++ b/src/main/resources/assets/imsm/models/item/useradded1461.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1461","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1461", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1462.json b/src/main/resources/assets/imsm/models/item/useradded1462.json index 886ce0f0..d1f064e0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1462.json +++ b/src/main/resources/assets/imsm/models/item/useradded1462.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1462","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1462", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1463.json b/src/main/resources/assets/imsm/models/item/useradded1463.json index ae0c8ab1..434ab995 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1463.json +++ b/src/main/resources/assets/imsm/models/item/useradded1463.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1463","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1463", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1464.json b/src/main/resources/assets/imsm/models/item/useradded1464.json index fa57ad20..7a791919 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1464.json +++ b/src/main/resources/assets/imsm/models/item/useradded1464.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1464","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1464", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1465.json b/src/main/resources/assets/imsm/models/item/useradded1465.json index a3be5111..95bbbf44 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1465.json +++ b/src/main/resources/assets/imsm/models/item/useradded1465.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1465","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1465", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1466.json b/src/main/resources/assets/imsm/models/item/useradded1466.json index 5313f50b..0a037cd1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1466.json +++ b/src/main/resources/assets/imsm/models/item/useradded1466.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1466","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1466", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1467.json b/src/main/resources/assets/imsm/models/item/useradded1467.json index 016411dc..607c8041 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1467.json +++ b/src/main/resources/assets/imsm/models/item/useradded1467.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1467","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1467", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1468.json b/src/main/resources/assets/imsm/models/item/useradded1468.json index 4df2e8f6..bfa56ade 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1468.json +++ b/src/main/resources/assets/imsm/models/item/useradded1468.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1468","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1468", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1469.json b/src/main/resources/assets/imsm/models/item/useradded1469.json index b3ff4f95..e29fff79 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1469.json +++ b/src/main/resources/assets/imsm/models/item/useradded1469.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1469","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1469", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded147.json b/src/main/resources/assets/imsm/models/item/useradded147.json index 928df626..46c37bca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded147.json +++ b/src/main/resources/assets/imsm/models/item/useradded147.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded147","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded147", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1470.json b/src/main/resources/assets/imsm/models/item/useradded1470.json index d3878ee3..73f2003b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1470.json +++ b/src/main/resources/assets/imsm/models/item/useradded1470.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1470","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1470", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1471.json b/src/main/resources/assets/imsm/models/item/useradded1471.json index 3e01f5a9..d54bf4af 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1471.json +++ b/src/main/resources/assets/imsm/models/item/useradded1471.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1471","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1471", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1472.json b/src/main/resources/assets/imsm/models/item/useradded1472.json index 18dc492b..5bccf00d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1472.json +++ b/src/main/resources/assets/imsm/models/item/useradded1472.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1472","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1472", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1473.json b/src/main/resources/assets/imsm/models/item/useradded1473.json index 7f06030c..1ecfb4c2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1473.json +++ b/src/main/resources/assets/imsm/models/item/useradded1473.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1473","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1473", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1474.json b/src/main/resources/assets/imsm/models/item/useradded1474.json index dd42d0ae..91ede6ae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1474.json +++ b/src/main/resources/assets/imsm/models/item/useradded1474.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1474","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1474", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1475.json b/src/main/resources/assets/imsm/models/item/useradded1475.json index 6f5426b6..30eb720b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1475.json +++ b/src/main/resources/assets/imsm/models/item/useradded1475.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1475","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1475", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1476.json b/src/main/resources/assets/imsm/models/item/useradded1476.json index df6bb317..08c19f12 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1476.json +++ b/src/main/resources/assets/imsm/models/item/useradded1476.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1476","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1476", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1477.json b/src/main/resources/assets/imsm/models/item/useradded1477.json index 30f1f5cd..1a30cebd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1477.json +++ b/src/main/resources/assets/imsm/models/item/useradded1477.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1477","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1477", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1478.json b/src/main/resources/assets/imsm/models/item/useradded1478.json index a04b80cc..8016e6fe 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1478.json +++ b/src/main/resources/assets/imsm/models/item/useradded1478.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1478","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1478", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1479.json b/src/main/resources/assets/imsm/models/item/useradded1479.json index 3a28c957..74676160 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1479.json +++ b/src/main/resources/assets/imsm/models/item/useradded1479.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1479","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1479", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded148.json b/src/main/resources/assets/imsm/models/item/useradded148.json index b1f698ee..61783a9f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded148.json +++ b/src/main/resources/assets/imsm/models/item/useradded148.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded148","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded148", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1480.json b/src/main/resources/assets/imsm/models/item/useradded1480.json index 85d8d336..1be56fa6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1480.json +++ b/src/main/resources/assets/imsm/models/item/useradded1480.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1480","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1480", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1481.json b/src/main/resources/assets/imsm/models/item/useradded1481.json index c89f3598..d0d38e1b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1481.json +++ b/src/main/resources/assets/imsm/models/item/useradded1481.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1481","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1481", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1482.json b/src/main/resources/assets/imsm/models/item/useradded1482.json index bc9ea40f..946ee6fd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1482.json +++ b/src/main/resources/assets/imsm/models/item/useradded1482.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1482","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1482", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1483.json b/src/main/resources/assets/imsm/models/item/useradded1483.json index 9eae8ee0..cf27d773 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1483.json +++ b/src/main/resources/assets/imsm/models/item/useradded1483.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1483","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1483", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1484.json b/src/main/resources/assets/imsm/models/item/useradded1484.json index fbc5f06f..77a7e33f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1484.json +++ b/src/main/resources/assets/imsm/models/item/useradded1484.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1484","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1484", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1485.json b/src/main/resources/assets/imsm/models/item/useradded1485.json index 1b0f0280..fa767dcd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1485.json +++ b/src/main/resources/assets/imsm/models/item/useradded1485.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1485","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1485", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1486.json b/src/main/resources/assets/imsm/models/item/useradded1486.json index f514a2cc..3147d41d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1486.json +++ b/src/main/resources/assets/imsm/models/item/useradded1486.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1486","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1486", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1487.json b/src/main/resources/assets/imsm/models/item/useradded1487.json index 17ef3258..6c72be93 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1487.json +++ b/src/main/resources/assets/imsm/models/item/useradded1487.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1487","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1487", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1488.json b/src/main/resources/assets/imsm/models/item/useradded1488.json index 2cec3bd3..3067abd0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1488.json +++ b/src/main/resources/assets/imsm/models/item/useradded1488.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1488","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1488", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1489.json b/src/main/resources/assets/imsm/models/item/useradded1489.json index c23e27e0..9aac48d9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1489.json +++ b/src/main/resources/assets/imsm/models/item/useradded1489.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1489","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1489", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded149.json b/src/main/resources/assets/imsm/models/item/useradded149.json index 4b763ed8..ceb5a4e6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded149.json +++ b/src/main/resources/assets/imsm/models/item/useradded149.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded149","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded149", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1490.json b/src/main/resources/assets/imsm/models/item/useradded1490.json index 60c143b0..f6e34e98 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1490.json +++ b/src/main/resources/assets/imsm/models/item/useradded1490.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1490","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1490", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1491.json b/src/main/resources/assets/imsm/models/item/useradded1491.json index fb806d2c..d52cb80a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1491.json +++ b/src/main/resources/assets/imsm/models/item/useradded1491.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1491","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1491", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1492.json b/src/main/resources/assets/imsm/models/item/useradded1492.json index c2559517..8286545d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1492.json +++ b/src/main/resources/assets/imsm/models/item/useradded1492.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1492","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1492", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1493.json b/src/main/resources/assets/imsm/models/item/useradded1493.json index c282d48b..cfe6ab28 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1493.json +++ b/src/main/resources/assets/imsm/models/item/useradded1493.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1493","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1493", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1494.json b/src/main/resources/assets/imsm/models/item/useradded1494.json index 2cb2b90b..5ea9beb2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1494.json +++ b/src/main/resources/assets/imsm/models/item/useradded1494.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1494","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1494", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1495.json b/src/main/resources/assets/imsm/models/item/useradded1495.json index b83e1949..4efd5444 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1495.json +++ b/src/main/resources/assets/imsm/models/item/useradded1495.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1495","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1495", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1496.json b/src/main/resources/assets/imsm/models/item/useradded1496.json index 88cf1ef8..8e005baa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1496.json +++ b/src/main/resources/assets/imsm/models/item/useradded1496.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1496","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1496", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1497.json b/src/main/resources/assets/imsm/models/item/useradded1497.json index 852b88f5..bf25a902 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1497.json +++ b/src/main/resources/assets/imsm/models/item/useradded1497.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1497","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1497", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1498.json b/src/main/resources/assets/imsm/models/item/useradded1498.json index 7a315126..4de64cad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1498.json +++ b/src/main/resources/assets/imsm/models/item/useradded1498.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1498","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1498", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1499.json b/src/main/resources/assets/imsm/models/item/useradded1499.json index 024126bb..2a4d27e3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1499.json +++ b/src/main/resources/assets/imsm/models/item/useradded1499.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1499","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1499", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded15.json b/src/main/resources/assets/imsm/models/item/useradded15.json index 7badb7dc..211f92c3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded15.json +++ b/src/main/resources/assets/imsm/models/item/useradded15.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded15","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded15", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded150.json b/src/main/resources/assets/imsm/models/item/useradded150.json index bc2ad4f7..cbfcfe27 100644 --- a/src/main/resources/assets/imsm/models/item/useradded150.json +++ b/src/main/resources/assets/imsm/models/item/useradded150.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded150","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded150", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1500.json b/src/main/resources/assets/imsm/models/item/useradded1500.json index 022b8068..79d04089 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1500.json +++ b/src/main/resources/assets/imsm/models/item/useradded1500.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1500","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1500", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1501.json b/src/main/resources/assets/imsm/models/item/useradded1501.json index 839dfb38..cd925491 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1501.json +++ b/src/main/resources/assets/imsm/models/item/useradded1501.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1501","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1501", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1502.json b/src/main/resources/assets/imsm/models/item/useradded1502.json index 9a51a022..d94eab85 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1502.json +++ b/src/main/resources/assets/imsm/models/item/useradded1502.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1502","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1502", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1503.json b/src/main/resources/assets/imsm/models/item/useradded1503.json index f9010ad6..1e270e94 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1503.json +++ b/src/main/resources/assets/imsm/models/item/useradded1503.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1503","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1503", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1504.json b/src/main/resources/assets/imsm/models/item/useradded1504.json index 1e5fb840..bd374acc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1504.json +++ b/src/main/resources/assets/imsm/models/item/useradded1504.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1504","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1504", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1505.json b/src/main/resources/assets/imsm/models/item/useradded1505.json index c084553c..e3c0ac99 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1505.json +++ b/src/main/resources/assets/imsm/models/item/useradded1505.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1505","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1505", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1506.json b/src/main/resources/assets/imsm/models/item/useradded1506.json index 980361c0..394f762a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1506.json +++ b/src/main/resources/assets/imsm/models/item/useradded1506.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1506","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1506", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1507.json b/src/main/resources/assets/imsm/models/item/useradded1507.json index 130a0a47..8a6e8f4d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1507.json +++ b/src/main/resources/assets/imsm/models/item/useradded1507.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1507","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1507", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1508.json b/src/main/resources/assets/imsm/models/item/useradded1508.json index 73baeb6f..1d312526 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1508.json +++ b/src/main/resources/assets/imsm/models/item/useradded1508.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1508","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1508", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1509.json b/src/main/resources/assets/imsm/models/item/useradded1509.json index 3d6aa31e..116d8987 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1509.json +++ b/src/main/resources/assets/imsm/models/item/useradded1509.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1509","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1509", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded151.json b/src/main/resources/assets/imsm/models/item/useradded151.json index 7797ca85..2c55975a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded151.json +++ b/src/main/resources/assets/imsm/models/item/useradded151.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded151","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded151", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1510.json b/src/main/resources/assets/imsm/models/item/useradded1510.json index 89c6e56a..faaa83c0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1510.json +++ b/src/main/resources/assets/imsm/models/item/useradded1510.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1510","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1510", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1511.json b/src/main/resources/assets/imsm/models/item/useradded1511.json index d803a60c..6a4a7209 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1511.json +++ b/src/main/resources/assets/imsm/models/item/useradded1511.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1511","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1511", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1512.json b/src/main/resources/assets/imsm/models/item/useradded1512.json index 7adddbd3..598dd995 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1512.json +++ b/src/main/resources/assets/imsm/models/item/useradded1512.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1512","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1512", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1513.json b/src/main/resources/assets/imsm/models/item/useradded1513.json index e4b8e8d1..58ba2279 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1513.json +++ b/src/main/resources/assets/imsm/models/item/useradded1513.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1513","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1513", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1514.json b/src/main/resources/assets/imsm/models/item/useradded1514.json index 4bc5e7bb..3673d1dc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1514.json +++ b/src/main/resources/assets/imsm/models/item/useradded1514.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1514","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1514", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1515.json b/src/main/resources/assets/imsm/models/item/useradded1515.json index 51bb56f8..21697e54 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1515.json +++ b/src/main/resources/assets/imsm/models/item/useradded1515.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1515","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1515", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1516.json b/src/main/resources/assets/imsm/models/item/useradded1516.json index 612fe1ac..a11ddd77 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1516.json +++ b/src/main/resources/assets/imsm/models/item/useradded1516.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1516","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1516", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1517.json b/src/main/resources/assets/imsm/models/item/useradded1517.json index ba6b5e48..9d9c58cb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1517.json +++ b/src/main/resources/assets/imsm/models/item/useradded1517.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1517","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1517", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1518.json b/src/main/resources/assets/imsm/models/item/useradded1518.json index 5a29cd5a..c8e9bcda 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1518.json +++ b/src/main/resources/assets/imsm/models/item/useradded1518.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1518","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1518", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1519.json b/src/main/resources/assets/imsm/models/item/useradded1519.json index 8a98d4ba..34ea75e6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1519.json +++ b/src/main/resources/assets/imsm/models/item/useradded1519.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1519","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1519", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded152.json b/src/main/resources/assets/imsm/models/item/useradded152.json index 2b38b996..6070a51f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded152.json +++ b/src/main/resources/assets/imsm/models/item/useradded152.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded152","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded152", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1520.json b/src/main/resources/assets/imsm/models/item/useradded1520.json index 3edfdef7..d2c21cc3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1520.json +++ b/src/main/resources/assets/imsm/models/item/useradded1520.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1520","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1520", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1521.json b/src/main/resources/assets/imsm/models/item/useradded1521.json index 42cd279a..dabdef4b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1521.json +++ b/src/main/resources/assets/imsm/models/item/useradded1521.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1521","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1521", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1522.json b/src/main/resources/assets/imsm/models/item/useradded1522.json index 9002416e..e33dd55c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1522.json +++ b/src/main/resources/assets/imsm/models/item/useradded1522.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1522","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1522", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1523.json b/src/main/resources/assets/imsm/models/item/useradded1523.json index d4eb4131..c407ef46 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1523.json +++ b/src/main/resources/assets/imsm/models/item/useradded1523.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1523","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1523", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1524.json b/src/main/resources/assets/imsm/models/item/useradded1524.json index 464b3f95..9c296928 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1524.json +++ b/src/main/resources/assets/imsm/models/item/useradded1524.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1524","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1524", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1525.json b/src/main/resources/assets/imsm/models/item/useradded1525.json index 95d55fe2..7777ae35 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1525.json +++ b/src/main/resources/assets/imsm/models/item/useradded1525.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1525","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1525", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1526.json b/src/main/resources/assets/imsm/models/item/useradded1526.json index b467050d..674d8196 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1526.json +++ b/src/main/resources/assets/imsm/models/item/useradded1526.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1526","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1526", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1527.json b/src/main/resources/assets/imsm/models/item/useradded1527.json index 8e7685e1..f77b4075 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1527.json +++ b/src/main/resources/assets/imsm/models/item/useradded1527.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1527","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1527", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1528.json b/src/main/resources/assets/imsm/models/item/useradded1528.json index 423aceac..24f6875c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1528.json +++ b/src/main/resources/assets/imsm/models/item/useradded1528.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1528","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1528", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1529.json b/src/main/resources/assets/imsm/models/item/useradded1529.json index 6e99c11a..2ffd5484 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1529.json +++ b/src/main/resources/assets/imsm/models/item/useradded1529.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1529","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1529", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded153.json b/src/main/resources/assets/imsm/models/item/useradded153.json index ce14311a..b2f34e1f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded153.json +++ b/src/main/resources/assets/imsm/models/item/useradded153.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded153","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded153", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1530.json b/src/main/resources/assets/imsm/models/item/useradded1530.json index 7c89d47d..31634bda 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1530.json +++ b/src/main/resources/assets/imsm/models/item/useradded1530.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1530","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1530", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1531.json b/src/main/resources/assets/imsm/models/item/useradded1531.json index 62eeedd6..f243ca52 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1531.json +++ b/src/main/resources/assets/imsm/models/item/useradded1531.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1531","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1531", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1532.json b/src/main/resources/assets/imsm/models/item/useradded1532.json index 34e703bf..5df5f40d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1532.json +++ b/src/main/resources/assets/imsm/models/item/useradded1532.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1532","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1532", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1533.json b/src/main/resources/assets/imsm/models/item/useradded1533.json index f0336cde..63c1009e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1533.json +++ b/src/main/resources/assets/imsm/models/item/useradded1533.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1533","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1533", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1534.json b/src/main/resources/assets/imsm/models/item/useradded1534.json index 2f351dda..98f09337 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1534.json +++ b/src/main/resources/assets/imsm/models/item/useradded1534.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1534","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1534", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1535.json b/src/main/resources/assets/imsm/models/item/useradded1535.json index 1137cd64..2a178c6a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1535.json +++ b/src/main/resources/assets/imsm/models/item/useradded1535.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1535","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1535", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1536.json b/src/main/resources/assets/imsm/models/item/useradded1536.json index 69e11821..075ded75 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1536.json +++ b/src/main/resources/assets/imsm/models/item/useradded1536.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1536","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1536", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1537.json b/src/main/resources/assets/imsm/models/item/useradded1537.json index 3581ccc9..6042698d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1537.json +++ b/src/main/resources/assets/imsm/models/item/useradded1537.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1537","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1537", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1538.json b/src/main/resources/assets/imsm/models/item/useradded1538.json index 52c39a54..80afe7ad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1538.json +++ b/src/main/resources/assets/imsm/models/item/useradded1538.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1538","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1538", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1539.json b/src/main/resources/assets/imsm/models/item/useradded1539.json index b41bdcc9..17cd46bd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1539.json +++ b/src/main/resources/assets/imsm/models/item/useradded1539.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1539","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1539", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded154.json b/src/main/resources/assets/imsm/models/item/useradded154.json index fc01c3c2..e0e95f4d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded154.json +++ b/src/main/resources/assets/imsm/models/item/useradded154.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded154","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded154", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1540.json b/src/main/resources/assets/imsm/models/item/useradded1540.json index 0b290a1c..54045be2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1540.json +++ b/src/main/resources/assets/imsm/models/item/useradded1540.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1540","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1540", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1541.json b/src/main/resources/assets/imsm/models/item/useradded1541.json index f46bbcd5..63151afa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1541.json +++ b/src/main/resources/assets/imsm/models/item/useradded1541.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1541","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1541", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1542.json b/src/main/resources/assets/imsm/models/item/useradded1542.json index a5522868..78a75bc5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1542.json +++ b/src/main/resources/assets/imsm/models/item/useradded1542.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1542","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1542", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1543.json b/src/main/resources/assets/imsm/models/item/useradded1543.json index 97735796..67e8be3e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1543.json +++ b/src/main/resources/assets/imsm/models/item/useradded1543.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1543","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1543", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1544.json b/src/main/resources/assets/imsm/models/item/useradded1544.json index 6b03f9ba..60b6eda1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1544.json +++ b/src/main/resources/assets/imsm/models/item/useradded1544.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1544","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1544", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1545.json b/src/main/resources/assets/imsm/models/item/useradded1545.json index adb883c2..4a30a506 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1545.json +++ b/src/main/resources/assets/imsm/models/item/useradded1545.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1545","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1545", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1546.json b/src/main/resources/assets/imsm/models/item/useradded1546.json index 1ac25d33..be3e56b8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1546.json +++ b/src/main/resources/assets/imsm/models/item/useradded1546.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1546","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1546", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1547.json b/src/main/resources/assets/imsm/models/item/useradded1547.json index 9bda4c8d..fd33a176 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1547.json +++ b/src/main/resources/assets/imsm/models/item/useradded1547.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1547","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1547", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1548.json b/src/main/resources/assets/imsm/models/item/useradded1548.json index be3d878a..6177584b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1548.json +++ b/src/main/resources/assets/imsm/models/item/useradded1548.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1548","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1548", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1549.json b/src/main/resources/assets/imsm/models/item/useradded1549.json index 07f1274e..9b4ae75b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1549.json +++ b/src/main/resources/assets/imsm/models/item/useradded1549.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1549","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1549", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded155.json b/src/main/resources/assets/imsm/models/item/useradded155.json index 300db17f..d9f0ed9c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded155.json +++ b/src/main/resources/assets/imsm/models/item/useradded155.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded155","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded155", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1550.json b/src/main/resources/assets/imsm/models/item/useradded1550.json index 40331de6..5b925ad1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1550.json +++ b/src/main/resources/assets/imsm/models/item/useradded1550.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1550","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1550", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1551.json b/src/main/resources/assets/imsm/models/item/useradded1551.json index 9ce3ea8d..7bef1622 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1551.json +++ b/src/main/resources/assets/imsm/models/item/useradded1551.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1551","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1551", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1552.json b/src/main/resources/assets/imsm/models/item/useradded1552.json index f98c0f7b..a350ec1c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1552.json +++ b/src/main/resources/assets/imsm/models/item/useradded1552.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1552","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1552", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1553.json b/src/main/resources/assets/imsm/models/item/useradded1553.json index 21ade099..a0740517 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1553.json +++ b/src/main/resources/assets/imsm/models/item/useradded1553.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1553","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1553", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1554.json b/src/main/resources/assets/imsm/models/item/useradded1554.json index 19307ba1..afb4cc47 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1554.json +++ b/src/main/resources/assets/imsm/models/item/useradded1554.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1554","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1554", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1555.json b/src/main/resources/assets/imsm/models/item/useradded1555.json index 9d301a99..ee2ff8fc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1555.json +++ b/src/main/resources/assets/imsm/models/item/useradded1555.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1555","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1555", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1556.json b/src/main/resources/assets/imsm/models/item/useradded1556.json index c2c3f9bc..c14cede3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1556.json +++ b/src/main/resources/assets/imsm/models/item/useradded1556.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1556","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1556", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1557.json b/src/main/resources/assets/imsm/models/item/useradded1557.json index 5b93f0c5..76b1841f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1557.json +++ b/src/main/resources/assets/imsm/models/item/useradded1557.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1557","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1557", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1558.json b/src/main/resources/assets/imsm/models/item/useradded1558.json index 10f058d5..fe1de4c3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1558.json +++ b/src/main/resources/assets/imsm/models/item/useradded1558.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1558","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1558", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1559.json b/src/main/resources/assets/imsm/models/item/useradded1559.json index 329a3bf7..d4a393a3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1559.json +++ b/src/main/resources/assets/imsm/models/item/useradded1559.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1559","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1559", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded156.json b/src/main/resources/assets/imsm/models/item/useradded156.json index ec54957a..b2ee9316 100644 --- a/src/main/resources/assets/imsm/models/item/useradded156.json +++ b/src/main/resources/assets/imsm/models/item/useradded156.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded156","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded156", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1560.json b/src/main/resources/assets/imsm/models/item/useradded1560.json index 79087bec..6410899d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1560.json +++ b/src/main/resources/assets/imsm/models/item/useradded1560.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1560","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1560", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1561.json b/src/main/resources/assets/imsm/models/item/useradded1561.json index bee76ba6..8554479a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1561.json +++ b/src/main/resources/assets/imsm/models/item/useradded1561.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1561","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1561", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1562.json b/src/main/resources/assets/imsm/models/item/useradded1562.json index d8162e1f..8c2243e9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1562.json +++ b/src/main/resources/assets/imsm/models/item/useradded1562.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1562","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1562", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1563.json b/src/main/resources/assets/imsm/models/item/useradded1563.json index 714b94c0..171bfd16 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1563.json +++ b/src/main/resources/assets/imsm/models/item/useradded1563.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1563","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1563", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1564.json b/src/main/resources/assets/imsm/models/item/useradded1564.json index 758037f8..c4e5bc10 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1564.json +++ b/src/main/resources/assets/imsm/models/item/useradded1564.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1564","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1564", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1565.json b/src/main/resources/assets/imsm/models/item/useradded1565.json index 80c34162..58643db8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1565.json +++ b/src/main/resources/assets/imsm/models/item/useradded1565.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1565","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1565", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1566.json b/src/main/resources/assets/imsm/models/item/useradded1566.json index ec4a4b30..8ec63f0c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1566.json +++ b/src/main/resources/assets/imsm/models/item/useradded1566.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1566","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1566", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1567.json b/src/main/resources/assets/imsm/models/item/useradded1567.json index 59709091..aac74268 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1567.json +++ b/src/main/resources/assets/imsm/models/item/useradded1567.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1567","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1567", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1568.json b/src/main/resources/assets/imsm/models/item/useradded1568.json index 75fd93df..1220bf19 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1568.json +++ b/src/main/resources/assets/imsm/models/item/useradded1568.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1568","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1568", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1569.json b/src/main/resources/assets/imsm/models/item/useradded1569.json index 8dd63a0c..ad761aee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1569.json +++ b/src/main/resources/assets/imsm/models/item/useradded1569.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1569","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1569", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded157.json b/src/main/resources/assets/imsm/models/item/useradded157.json index 61ebd39b..cd94ff1c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded157.json +++ b/src/main/resources/assets/imsm/models/item/useradded157.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded157","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded157", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1570.json b/src/main/resources/assets/imsm/models/item/useradded1570.json index 31140c1d..3cf20f6e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1570.json +++ b/src/main/resources/assets/imsm/models/item/useradded1570.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1570","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1570", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1571.json b/src/main/resources/assets/imsm/models/item/useradded1571.json index d277238f..783be037 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1571.json +++ b/src/main/resources/assets/imsm/models/item/useradded1571.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1571","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1571", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1572.json b/src/main/resources/assets/imsm/models/item/useradded1572.json index 816cd9b7..0603d965 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1572.json +++ b/src/main/resources/assets/imsm/models/item/useradded1572.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1572","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1572", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1573.json b/src/main/resources/assets/imsm/models/item/useradded1573.json index a9796c17..b2f71804 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1573.json +++ b/src/main/resources/assets/imsm/models/item/useradded1573.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1573","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1573", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1574.json b/src/main/resources/assets/imsm/models/item/useradded1574.json index 325efdec..ba4dbc3f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1574.json +++ b/src/main/resources/assets/imsm/models/item/useradded1574.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1574","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1574", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1575.json b/src/main/resources/assets/imsm/models/item/useradded1575.json index b12c46cf..bcde7659 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1575.json +++ b/src/main/resources/assets/imsm/models/item/useradded1575.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1575","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1575", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1576.json b/src/main/resources/assets/imsm/models/item/useradded1576.json index b6b48bd9..8b0f00f0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1576.json +++ b/src/main/resources/assets/imsm/models/item/useradded1576.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1576","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1576", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1577.json b/src/main/resources/assets/imsm/models/item/useradded1577.json index bba4fbae..967bdb06 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1577.json +++ b/src/main/resources/assets/imsm/models/item/useradded1577.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1577","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1577", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1578.json b/src/main/resources/assets/imsm/models/item/useradded1578.json index 0197d2b9..50908594 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1578.json +++ b/src/main/resources/assets/imsm/models/item/useradded1578.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1578","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1578", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1579.json b/src/main/resources/assets/imsm/models/item/useradded1579.json index 4213a3ea..534a0403 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1579.json +++ b/src/main/resources/assets/imsm/models/item/useradded1579.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1579","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1579", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded158.json b/src/main/resources/assets/imsm/models/item/useradded158.json index 3df2b067..a8ad9d3d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded158.json +++ b/src/main/resources/assets/imsm/models/item/useradded158.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded158","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded158", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1580.json b/src/main/resources/assets/imsm/models/item/useradded1580.json index d27da842..4835d73a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1580.json +++ b/src/main/resources/assets/imsm/models/item/useradded1580.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1580","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1580", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1581.json b/src/main/resources/assets/imsm/models/item/useradded1581.json index 13bda335..ca27c7c8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1581.json +++ b/src/main/resources/assets/imsm/models/item/useradded1581.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1581","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1581", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1582.json b/src/main/resources/assets/imsm/models/item/useradded1582.json index 89cec4c1..6bbc03ef 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1582.json +++ b/src/main/resources/assets/imsm/models/item/useradded1582.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1582","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1582", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1583.json b/src/main/resources/assets/imsm/models/item/useradded1583.json index df164180..8f81ea4e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1583.json +++ b/src/main/resources/assets/imsm/models/item/useradded1583.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1583","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1583", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1584.json b/src/main/resources/assets/imsm/models/item/useradded1584.json index 1c9c9b25..da829b80 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1584.json +++ b/src/main/resources/assets/imsm/models/item/useradded1584.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1584","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1584", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1585.json b/src/main/resources/assets/imsm/models/item/useradded1585.json index 9a11589e..638c05d2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1585.json +++ b/src/main/resources/assets/imsm/models/item/useradded1585.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1585","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1585", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1586.json b/src/main/resources/assets/imsm/models/item/useradded1586.json index f66f5ebe..e93a0037 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1586.json +++ b/src/main/resources/assets/imsm/models/item/useradded1586.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1586","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1586", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1587.json b/src/main/resources/assets/imsm/models/item/useradded1587.json index 2636f120..2401d6c8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1587.json +++ b/src/main/resources/assets/imsm/models/item/useradded1587.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1587","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1587", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1588.json b/src/main/resources/assets/imsm/models/item/useradded1588.json index 1d712ce1..abb7b4cc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1588.json +++ b/src/main/resources/assets/imsm/models/item/useradded1588.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1588","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1588", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1589.json b/src/main/resources/assets/imsm/models/item/useradded1589.json index a5616854..d96998b6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1589.json +++ b/src/main/resources/assets/imsm/models/item/useradded1589.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1589","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1589", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded159.json b/src/main/resources/assets/imsm/models/item/useradded159.json index c64cb26e..99466f58 100644 --- a/src/main/resources/assets/imsm/models/item/useradded159.json +++ b/src/main/resources/assets/imsm/models/item/useradded159.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded159","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded159", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1590.json b/src/main/resources/assets/imsm/models/item/useradded1590.json index 746bb235..a86ffd6c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1590.json +++ b/src/main/resources/assets/imsm/models/item/useradded1590.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1590","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1590", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1591.json b/src/main/resources/assets/imsm/models/item/useradded1591.json index 141fecba..4a258f56 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1591.json +++ b/src/main/resources/assets/imsm/models/item/useradded1591.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1591","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1591", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1592.json b/src/main/resources/assets/imsm/models/item/useradded1592.json index 88bf0d99..afb621e3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1592.json +++ b/src/main/resources/assets/imsm/models/item/useradded1592.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1592","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1592", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1593.json b/src/main/resources/assets/imsm/models/item/useradded1593.json index afecadc2..54f955f8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1593.json +++ b/src/main/resources/assets/imsm/models/item/useradded1593.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1593","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1593", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1594.json b/src/main/resources/assets/imsm/models/item/useradded1594.json index dd2d35f4..f56dcd79 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1594.json +++ b/src/main/resources/assets/imsm/models/item/useradded1594.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1594","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1594", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1595.json b/src/main/resources/assets/imsm/models/item/useradded1595.json index 0499c6e1..2ce9f11e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1595.json +++ b/src/main/resources/assets/imsm/models/item/useradded1595.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1595","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1595", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1596.json b/src/main/resources/assets/imsm/models/item/useradded1596.json index d10670a7..d870ed41 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1596.json +++ b/src/main/resources/assets/imsm/models/item/useradded1596.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1596","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1596", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1597.json b/src/main/resources/assets/imsm/models/item/useradded1597.json index 50ee55c6..cd0b4b49 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1597.json +++ b/src/main/resources/assets/imsm/models/item/useradded1597.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1597","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1597", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1598.json b/src/main/resources/assets/imsm/models/item/useradded1598.json index d8464e9b..a6a95aa6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1598.json +++ b/src/main/resources/assets/imsm/models/item/useradded1598.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1598","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1598", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1599.json b/src/main/resources/assets/imsm/models/item/useradded1599.json index 6fd8cca3..ff6d0db8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1599.json +++ b/src/main/resources/assets/imsm/models/item/useradded1599.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1599","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1599", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded16.json b/src/main/resources/assets/imsm/models/item/useradded16.json index 4af2a1b7..e3973838 100644 --- a/src/main/resources/assets/imsm/models/item/useradded16.json +++ b/src/main/resources/assets/imsm/models/item/useradded16.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded16","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded16", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded160.json b/src/main/resources/assets/imsm/models/item/useradded160.json index 08bc5073..cb25b038 100644 --- a/src/main/resources/assets/imsm/models/item/useradded160.json +++ b/src/main/resources/assets/imsm/models/item/useradded160.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded160","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded160", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1600.json b/src/main/resources/assets/imsm/models/item/useradded1600.json index 49711f27..a14637c0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1600.json +++ b/src/main/resources/assets/imsm/models/item/useradded1600.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1600","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1600", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1601.json b/src/main/resources/assets/imsm/models/item/useradded1601.json index 612e7ba3..3cc2138f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1601.json +++ b/src/main/resources/assets/imsm/models/item/useradded1601.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1601","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1601", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1602.json b/src/main/resources/assets/imsm/models/item/useradded1602.json index df8af8a7..68323a6c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1602.json +++ b/src/main/resources/assets/imsm/models/item/useradded1602.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1602","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1602", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1603.json b/src/main/resources/assets/imsm/models/item/useradded1603.json index d3c91c54..96462e0d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1603.json +++ b/src/main/resources/assets/imsm/models/item/useradded1603.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1603","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1603", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1604.json b/src/main/resources/assets/imsm/models/item/useradded1604.json index 4528a227..9661f6d1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1604.json +++ b/src/main/resources/assets/imsm/models/item/useradded1604.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1604","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1604", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1605.json b/src/main/resources/assets/imsm/models/item/useradded1605.json index e8b31724..0c7dcd17 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1605.json +++ b/src/main/resources/assets/imsm/models/item/useradded1605.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1605","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1605", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1606.json b/src/main/resources/assets/imsm/models/item/useradded1606.json index 6fcb2f06..f05a8a9d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1606.json +++ b/src/main/resources/assets/imsm/models/item/useradded1606.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1606","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1606", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1607.json b/src/main/resources/assets/imsm/models/item/useradded1607.json index 67c957ff..030aaea8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1607.json +++ b/src/main/resources/assets/imsm/models/item/useradded1607.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1607","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1607", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1608.json b/src/main/resources/assets/imsm/models/item/useradded1608.json index 729ea5b9..72d27a82 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1608.json +++ b/src/main/resources/assets/imsm/models/item/useradded1608.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1608","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1608", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1609.json b/src/main/resources/assets/imsm/models/item/useradded1609.json index 26721c5c..ed76bad3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1609.json +++ b/src/main/resources/assets/imsm/models/item/useradded1609.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1609","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1609", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded161.json b/src/main/resources/assets/imsm/models/item/useradded161.json index 5dd14acc..e75db2bd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded161.json +++ b/src/main/resources/assets/imsm/models/item/useradded161.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded161","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded161", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1610.json b/src/main/resources/assets/imsm/models/item/useradded1610.json index 40da97b1..8c830421 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1610.json +++ b/src/main/resources/assets/imsm/models/item/useradded1610.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1610","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1610", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1611.json b/src/main/resources/assets/imsm/models/item/useradded1611.json index 4c3aa27d..2f31886e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1611.json +++ b/src/main/resources/assets/imsm/models/item/useradded1611.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1611","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1611", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1612.json b/src/main/resources/assets/imsm/models/item/useradded1612.json index f0344c58..8e86d456 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1612.json +++ b/src/main/resources/assets/imsm/models/item/useradded1612.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1612","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1612", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1613.json b/src/main/resources/assets/imsm/models/item/useradded1613.json index b9e0706d..c69c6f1a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1613.json +++ b/src/main/resources/assets/imsm/models/item/useradded1613.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1613","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1613", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1614.json b/src/main/resources/assets/imsm/models/item/useradded1614.json index 18ad1ef4..577a9af2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1614.json +++ b/src/main/resources/assets/imsm/models/item/useradded1614.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1614","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1614", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1615.json b/src/main/resources/assets/imsm/models/item/useradded1615.json index d8205905..707d2694 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1615.json +++ b/src/main/resources/assets/imsm/models/item/useradded1615.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1615","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1615", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1616.json b/src/main/resources/assets/imsm/models/item/useradded1616.json index 91b2f36c..ac47741b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1616.json +++ b/src/main/resources/assets/imsm/models/item/useradded1616.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1616","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1616", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1617.json b/src/main/resources/assets/imsm/models/item/useradded1617.json index b0ad04e6..6e3ff912 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1617.json +++ b/src/main/resources/assets/imsm/models/item/useradded1617.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1617","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1617", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1618.json b/src/main/resources/assets/imsm/models/item/useradded1618.json index 99449495..3375814b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1618.json +++ b/src/main/resources/assets/imsm/models/item/useradded1618.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1618","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1618", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1619.json b/src/main/resources/assets/imsm/models/item/useradded1619.json index 5d023e81..64235964 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1619.json +++ b/src/main/resources/assets/imsm/models/item/useradded1619.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1619","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1619", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded162.json b/src/main/resources/assets/imsm/models/item/useradded162.json index d5add0ff..397d71a0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded162.json +++ b/src/main/resources/assets/imsm/models/item/useradded162.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded162","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded162", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1620.json b/src/main/resources/assets/imsm/models/item/useradded1620.json index 35b6936b..b423c55e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1620.json +++ b/src/main/resources/assets/imsm/models/item/useradded1620.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1620","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1620", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1621.json b/src/main/resources/assets/imsm/models/item/useradded1621.json index 4297a14c..6439b0eb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1621.json +++ b/src/main/resources/assets/imsm/models/item/useradded1621.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1621","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1621", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1622.json b/src/main/resources/assets/imsm/models/item/useradded1622.json index 6f53e1a6..71818473 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1622.json +++ b/src/main/resources/assets/imsm/models/item/useradded1622.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1622","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1622", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1623.json b/src/main/resources/assets/imsm/models/item/useradded1623.json index b565c230..d86f1666 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1623.json +++ b/src/main/resources/assets/imsm/models/item/useradded1623.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1623","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1623", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1624.json b/src/main/resources/assets/imsm/models/item/useradded1624.json index 8a627bb8..5018873a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1624.json +++ b/src/main/resources/assets/imsm/models/item/useradded1624.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1624","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1624", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1625.json b/src/main/resources/assets/imsm/models/item/useradded1625.json index 5e98dfaf..428fa60d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1625.json +++ b/src/main/resources/assets/imsm/models/item/useradded1625.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1625","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1625", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1626.json b/src/main/resources/assets/imsm/models/item/useradded1626.json index eb358c5d..223860f5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1626.json +++ b/src/main/resources/assets/imsm/models/item/useradded1626.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1626","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1626", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1627.json b/src/main/resources/assets/imsm/models/item/useradded1627.json index 6ad83b7e..0a992575 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1627.json +++ b/src/main/resources/assets/imsm/models/item/useradded1627.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1627","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1627", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1628.json b/src/main/resources/assets/imsm/models/item/useradded1628.json index faa791f3..097725af 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1628.json +++ b/src/main/resources/assets/imsm/models/item/useradded1628.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1628","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1628", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1629.json b/src/main/resources/assets/imsm/models/item/useradded1629.json index 01058233..6635b4f2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1629.json +++ b/src/main/resources/assets/imsm/models/item/useradded1629.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1629","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1629", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded163.json b/src/main/resources/assets/imsm/models/item/useradded163.json index b694a352..3ec0e423 100644 --- a/src/main/resources/assets/imsm/models/item/useradded163.json +++ b/src/main/resources/assets/imsm/models/item/useradded163.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded163","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded163", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1630.json b/src/main/resources/assets/imsm/models/item/useradded1630.json index fae600a5..f96ca022 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1630.json +++ b/src/main/resources/assets/imsm/models/item/useradded1630.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1630","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1630", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1631.json b/src/main/resources/assets/imsm/models/item/useradded1631.json index bb24f390..9fb77cd7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1631.json +++ b/src/main/resources/assets/imsm/models/item/useradded1631.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1631","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1631", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1632.json b/src/main/resources/assets/imsm/models/item/useradded1632.json index d23e8016..37beaa85 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1632.json +++ b/src/main/resources/assets/imsm/models/item/useradded1632.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1632","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1632", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1633.json b/src/main/resources/assets/imsm/models/item/useradded1633.json index 8b9cb0a3..8e8b57d0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1633.json +++ b/src/main/resources/assets/imsm/models/item/useradded1633.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1633","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1633", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1634.json b/src/main/resources/assets/imsm/models/item/useradded1634.json index 74c74007..41d1eb18 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1634.json +++ b/src/main/resources/assets/imsm/models/item/useradded1634.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1634","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1634", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1635.json b/src/main/resources/assets/imsm/models/item/useradded1635.json index 3cac513e..91dfefbc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1635.json +++ b/src/main/resources/assets/imsm/models/item/useradded1635.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1635","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1635", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1636.json b/src/main/resources/assets/imsm/models/item/useradded1636.json index e88f1467..c13853ca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1636.json +++ b/src/main/resources/assets/imsm/models/item/useradded1636.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1636","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1636", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1637.json b/src/main/resources/assets/imsm/models/item/useradded1637.json index 9ff9aee2..0b32b2bd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1637.json +++ b/src/main/resources/assets/imsm/models/item/useradded1637.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1637","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1637", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1638.json b/src/main/resources/assets/imsm/models/item/useradded1638.json index 4fdcf440..39759929 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1638.json +++ b/src/main/resources/assets/imsm/models/item/useradded1638.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1638","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1638", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1639.json b/src/main/resources/assets/imsm/models/item/useradded1639.json index 22000016..a8eab893 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1639.json +++ b/src/main/resources/assets/imsm/models/item/useradded1639.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1639","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1639", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded164.json b/src/main/resources/assets/imsm/models/item/useradded164.json index 08f35c65..3f073c2e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded164.json +++ b/src/main/resources/assets/imsm/models/item/useradded164.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded164","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded164", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1640.json b/src/main/resources/assets/imsm/models/item/useradded1640.json index 3d8af533..865ba188 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1640.json +++ b/src/main/resources/assets/imsm/models/item/useradded1640.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1640","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1640", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1641.json b/src/main/resources/assets/imsm/models/item/useradded1641.json index 6c2ccb22..ab4f84c6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1641.json +++ b/src/main/resources/assets/imsm/models/item/useradded1641.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1641","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1641", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1642.json b/src/main/resources/assets/imsm/models/item/useradded1642.json index e3161cdd..8b2d2927 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1642.json +++ b/src/main/resources/assets/imsm/models/item/useradded1642.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1642","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1642", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1643.json b/src/main/resources/assets/imsm/models/item/useradded1643.json index 93f68426..3595192e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1643.json +++ b/src/main/resources/assets/imsm/models/item/useradded1643.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1643","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1643", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1644.json b/src/main/resources/assets/imsm/models/item/useradded1644.json index 802e495c..dd66dad5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1644.json +++ b/src/main/resources/assets/imsm/models/item/useradded1644.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1644","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1644", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1645.json b/src/main/resources/assets/imsm/models/item/useradded1645.json index 317975ec..22f29845 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1645.json +++ b/src/main/resources/assets/imsm/models/item/useradded1645.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1645","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1645", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1646.json b/src/main/resources/assets/imsm/models/item/useradded1646.json index 2029d1db..c09a8610 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1646.json +++ b/src/main/resources/assets/imsm/models/item/useradded1646.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1646","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1646", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1647.json b/src/main/resources/assets/imsm/models/item/useradded1647.json index e3f505b1..51dde103 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1647.json +++ b/src/main/resources/assets/imsm/models/item/useradded1647.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1647","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1647", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1648.json b/src/main/resources/assets/imsm/models/item/useradded1648.json index 2520c77f..df5af96a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1648.json +++ b/src/main/resources/assets/imsm/models/item/useradded1648.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1648","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1648", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1649.json b/src/main/resources/assets/imsm/models/item/useradded1649.json index eaecfdcd..536cfe80 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1649.json +++ b/src/main/resources/assets/imsm/models/item/useradded1649.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1649","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1649", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded165.json b/src/main/resources/assets/imsm/models/item/useradded165.json index 7bb53bf9..05727123 100644 --- a/src/main/resources/assets/imsm/models/item/useradded165.json +++ b/src/main/resources/assets/imsm/models/item/useradded165.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded165","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded165", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1650.json b/src/main/resources/assets/imsm/models/item/useradded1650.json index b25f45eb..19bcf31a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1650.json +++ b/src/main/resources/assets/imsm/models/item/useradded1650.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1650","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1650", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1651.json b/src/main/resources/assets/imsm/models/item/useradded1651.json index 2087d874..132d094e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1651.json +++ b/src/main/resources/assets/imsm/models/item/useradded1651.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1651","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1651", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1652.json b/src/main/resources/assets/imsm/models/item/useradded1652.json index 6a0d3dff..694befeb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1652.json +++ b/src/main/resources/assets/imsm/models/item/useradded1652.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1652","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1652", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1653.json b/src/main/resources/assets/imsm/models/item/useradded1653.json index 341f158f..ef12f626 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1653.json +++ b/src/main/resources/assets/imsm/models/item/useradded1653.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1653","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1653", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1654.json b/src/main/resources/assets/imsm/models/item/useradded1654.json index 82a3c058..97e6495d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1654.json +++ b/src/main/resources/assets/imsm/models/item/useradded1654.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1654","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1654", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1655.json b/src/main/resources/assets/imsm/models/item/useradded1655.json index 8da78e2c..0e31aa47 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1655.json +++ b/src/main/resources/assets/imsm/models/item/useradded1655.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1655","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1655", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1656.json b/src/main/resources/assets/imsm/models/item/useradded1656.json index f8877906..dc421263 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1656.json +++ b/src/main/resources/assets/imsm/models/item/useradded1656.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1656","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1656", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1657.json b/src/main/resources/assets/imsm/models/item/useradded1657.json index d8b02a51..7c209a60 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1657.json +++ b/src/main/resources/assets/imsm/models/item/useradded1657.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1657","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1657", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1658.json b/src/main/resources/assets/imsm/models/item/useradded1658.json index 743e3900..e746bc81 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1658.json +++ b/src/main/resources/assets/imsm/models/item/useradded1658.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1658","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1658", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1659.json b/src/main/resources/assets/imsm/models/item/useradded1659.json index 0745c231..f8653d49 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1659.json +++ b/src/main/resources/assets/imsm/models/item/useradded1659.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1659","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1659", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded166.json b/src/main/resources/assets/imsm/models/item/useradded166.json index 7e605714..ba32afba 100644 --- a/src/main/resources/assets/imsm/models/item/useradded166.json +++ b/src/main/resources/assets/imsm/models/item/useradded166.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded166","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded166", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1660.json b/src/main/resources/assets/imsm/models/item/useradded1660.json index f2ee9850..cc9c26ce 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1660.json +++ b/src/main/resources/assets/imsm/models/item/useradded1660.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1660","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1660", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1661.json b/src/main/resources/assets/imsm/models/item/useradded1661.json index b025161e..92b28be2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1661.json +++ b/src/main/resources/assets/imsm/models/item/useradded1661.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1661","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1661", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1662.json b/src/main/resources/assets/imsm/models/item/useradded1662.json index 4eacdf4f..60bdaaca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1662.json +++ b/src/main/resources/assets/imsm/models/item/useradded1662.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1662","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1662", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1663.json b/src/main/resources/assets/imsm/models/item/useradded1663.json index d08d1d1f..52f08546 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1663.json +++ b/src/main/resources/assets/imsm/models/item/useradded1663.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1663","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1663", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1664.json b/src/main/resources/assets/imsm/models/item/useradded1664.json index 13f3c15e..bc70b1c2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1664.json +++ b/src/main/resources/assets/imsm/models/item/useradded1664.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1664","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1664", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1665.json b/src/main/resources/assets/imsm/models/item/useradded1665.json index 4d12e384..a8d43eb3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1665.json +++ b/src/main/resources/assets/imsm/models/item/useradded1665.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1665","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1665", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1666.json b/src/main/resources/assets/imsm/models/item/useradded1666.json index 3d7610b3..96d0a252 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1666.json +++ b/src/main/resources/assets/imsm/models/item/useradded1666.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1666","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1666", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1667.json b/src/main/resources/assets/imsm/models/item/useradded1667.json index 6b3befb7..66b7a5cb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1667.json +++ b/src/main/resources/assets/imsm/models/item/useradded1667.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1667","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1667", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1668.json b/src/main/resources/assets/imsm/models/item/useradded1668.json index ee033a7f..d636aaa9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1668.json +++ b/src/main/resources/assets/imsm/models/item/useradded1668.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1668","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1668", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1669.json b/src/main/resources/assets/imsm/models/item/useradded1669.json index 8422f4d1..91fdc9f7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1669.json +++ b/src/main/resources/assets/imsm/models/item/useradded1669.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1669","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1669", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded167.json b/src/main/resources/assets/imsm/models/item/useradded167.json index 03141222..38c007f6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded167.json +++ b/src/main/resources/assets/imsm/models/item/useradded167.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded167","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded167", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1670.json b/src/main/resources/assets/imsm/models/item/useradded1670.json index 1bb07d97..864e5e17 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1670.json +++ b/src/main/resources/assets/imsm/models/item/useradded1670.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1670","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1670", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1671.json b/src/main/resources/assets/imsm/models/item/useradded1671.json index 07d4730c..fd1be1c1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1671.json +++ b/src/main/resources/assets/imsm/models/item/useradded1671.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1671","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1671", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1672.json b/src/main/resources/assets/imsm/models/item/useradded1672.json index d351168f..556b4c40 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1672.json +++ b/src/main/resources/assets/imsm/models/item/useradded1672.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1672","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1672", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1673.json b/src/main/resources/assets/imsm/models/item/useradded1673.json index a15e3c75..c86b3c91 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1673.json +++ b/src/main/resources/assets/imsm/models/item/useradded1673.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1673","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1673", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1674.json b/src/main/resources/assets/imsm/models/item/useradded1674.json index 504c2f26..5a92d3f2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1674.json +++ b/src/main/resources/assets/imsm/models/item/useradded1674.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1674","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1674", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1675.json b/src/main/resources/assets/imsm/models/item/useradded1675.json index 2e028b5a..3dd3cb95 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1675.json +++ b/src/main/resources/assets/imsm/models/item/useradded1675.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1675","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1675", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1676.json b/src/main/resources/assets/imsm/models/item/useradded1676.json index 2535fd3d..25e9902a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1676.json +++ b/src/main/resources/assets/imsm/models/item/useradded1676.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1676","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1676", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1677.json b/src/main/resources/assets/imsm/models/item/useradded1677.json index ad454563..7f782891 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1677.json +++ b/src/main/resources/assets/imsm/models/item/useradded1677.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1677","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1677", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1678.json b/src/main/resources/assets/imsm/models/item/useradded1678.json index 28db1634..81836561 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1678.json +++ b/src/main/resources/assets/imsm/models/item/useradded1678.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1678","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1678", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1679.json b/src/main/resources/assets/imsm/models/item/useradded1679.json index 9c7f8d53..54596035 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1679.json +++ b/src/main/resources/assets/imsm/models/item/useradded1679.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1679","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1679", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded168.json b/src/main/resources/assets/imsm/models/item/useradded168.json index a885556b..4b9d653c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded168.json +++ b/src/main/resources/assets/imsm/models/item/useradded168.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded168","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded168", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1680.json b/src/main/resources/assets/imsm/models/item/useradded1680.json index ed17c90d..112ae9c6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1680.json +++ b/src/main/resources/assets/imsm/models/item/useradded1680.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1680","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1680", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1681.json b/src/main/resources/assets/imsm/models/item/useradded1681.json index 486fde32..e215e320 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1681.json +++ b/src/main/resources/assets/imsm/models/item/useradded1681.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1681","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1681", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1682.json b/src/main/resources/assets/imsm/models/item/useradded1682.json index f57b21a3..ed74183d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1682.json +++ b/src/main/resources/assets/imsm/models/item/useradded1682.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1682","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1682", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1683.json b/src/main/resources/assets/imsm/models/item/useradded1683.json index d89369ef..4d347622 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1683.json +++ b/src/main/resources/assets/imsm/models/item/useradded1683.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1683","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1683", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1684.json b/src/main/resources/assets/imsm/models/item/useradded1684.json index f87f66be..a40d8d5b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1684.json +++ b/src/main/resources/assets/imsm/models/item/useradded1684.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1684","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1684", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1685.json b/src/main/resources/assets/imsm/models/item/useradded1685.json index e64b634a..6685c1b1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1685.json +++ b/src/main/resources/assets/imsm/models/item/useradded1685.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1685","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1685", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1686.json b/src/main/resources/assets/imsm/models/item/useradded1686.json index 629492b9..440d8f8e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1686.json +++ b/src/main/resources/assets/imsm/models/item/useradded1686.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1686","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1686", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1687.json b/src/main/resources/assets/imsm/models/item/useradded1687.json index e6a92b62..1f06ddbb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1687.json +++ b/src/main/resources/assets/imsm/models/item/useradded1687.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1687","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1687", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1688.json b/src/main/resources/assets/imsm/models/item/useradded1688.json index 8e12681d..45384d66 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1688.json +++ b/src/main/resources/assets/imsm/models/item/useradded1688.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1688","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1688", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1689.json b/src/main/resources/assets/imsm/models/item/useradded1689.json index 6daf78cc..02da6c45 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1689.json +++ b/src/main/resources/assets/imsm/models/item/useradded1689.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1689","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1689", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded169.json b/src/main/resources/assets/imsm/models/item/useradded169.json index 738a70c9..392c285e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded169.json +++ b/src/main/resources/assets/imsm/models/item/useradded169.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded169","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded169", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1690.json b/src/main/resources/assets/imsm/models/item/useradded1690.json index 594fb3fe..347c5e25 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1690.json +++ b/src/main/resources/assets/imsm/models/item/useradded1690.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1690","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1690", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1691.json b/src/main/resources/assets/imsm/models/item/useradded1691.json index 1f0b0d29..27e07785 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1691.json +++ b/src/main/resources/assets/imsm/models/item/useradded1691.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1691","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1691", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1692.json b/src/main/resources/assets/imsm/models/item/useradded1692.json index 4bdf1f71..c0314a26 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1692.json +++ b/src/main/resources/assets/imsm/models/item/useradded1692.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1692","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1692", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1693.json b/src/main/resources/assets/imsm/models/item/useradded1693.json index 0ae99ff8..fb1c27e9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1693.json +++ b/src/main/resources/assets/imsm/models/item/useradded1693.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1693","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1693", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1694.json b/src/main/resources/assets/imsm/models/item/useradded1694.json index 3f472326..9da6995d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1694.json +++ b/src/main/resources/assets/imsm/models/item/useradded1694.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1694","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1694", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1695.json b/src/main/resources/assets/imsm/models/item/useradded1695.json index d4fa896c..51f34fc6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1695.json +++ b/src/main/resources/assets/imsm/models/item/useradded1695.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1695","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1695", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1696.json b/src/main/resources/assets/imsm/models/item/useradded1696.json index bb7b6a51..2d1d6e4d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1696.json +++ b/src/main/resources/assets/imsm/models/item/useradded1696.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1696","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1696", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1697.json b/src/main/resources/assets/imsm/models/item/useradded1697.json index b9b9cce7..4225ca3e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1697.json +++ b/src/main/resources/assets/imsm/models/item/useradded1697.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1697","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1697", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1698.json b/src/main/resources/assets/imsm/models/item/useradded1698.json index fe345bd7..72c321cc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1698.json +++ b/src/main/resources/assets/imsm/models/item/useradded1698.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1698","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1698", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1699.json b/src/main/resources/assets/imsm/models/item/useradded1699.json index bf22ed3f..1e2ff02c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1699.json +++ b/src/main/resources/assets/imsm/models/item/useradded1699.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1699","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1699", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded17.json b/src/main/resources/assets/imsm/models/item/useradded17.json index 25ff2ca5..ce54fafa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded17.json +++ b/src/main/resources/assets/imsm/models/item/useradded17.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded17","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded17", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded170.json b/src/main/resources/assets/imsm/models/item/useradded170.json index 6b526f50..3458ed67 100644 --- a/src/main/resources/assets/imsm/models/item/useradded170.json +++ b/src/main/resources/assets/imsm/models/item/useradded170.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded170","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded170", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1700.json b/src/main/resources/assets/imsm/models/item/useradded1700.json index e1fd0281..15594ad7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1700.json +++ b/src/main/resources/assets/imsm/models/item/useradded1700.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1700","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1700", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1701.json b/src/main/resources/assets/imsm/models/item/useradded1701.json index faf25016..61658820 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1701.json +++ b/src/main/resources/assets/imsm/models/item/useradded1701.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1701","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1701", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1702.json b/src/main/resources/assets/imsm/models/item/useradded1702.json index 6e2f921b..a34d59f5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1702.json +++ b/src/main/resources/assets/imsm/models/item/useradded1702.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1702","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1702", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1703.json b/src/main/resources/assets/imsm/models/item/useradded1703.json index 53d99fba..2198343b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1703.json +++ b/src/main/resources/assets/imsm/models/item/useradded1703.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1703","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1703", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1704.json b/src/main/resources/assets/imsm/models/item/useradded1704.json index 743cacf7..ad737787 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1704.json +++ b/src/main/resources/assets/imsm/models/item/useradded1704.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1704","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1704", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1705.json b/src/main/resources/assets/imsm/models/item/useradded1705.json index 2cd48829..7946fbec 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1705.json +++ b/src/main/resources/assets/imsm/models/item/useradded1705.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1705","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1705", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1706.json b/src/main/resources/assets/imsm/models/item/useradded1706.json index 03fcfa0d..88dfdc14 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1706.json +++ b/src/main/resources/assets/imsm/models/item/useradded1706.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1706","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1706", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1707.json b/src/main/resources/assets/imsm/models/item/useradded1707.json index 3d56cf10..ebfe56fb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1707.json +++ b/src/main/resources/assets/imsm/models/item/useradded1707.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1707","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1707", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1708.json b/src/main/resources/assets/imsm/models/item/useradded1708.json index 468c15ef..275262ee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1708.json +++ b/src/main/resources/assets/imsm/models/item/useradded1708.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1708","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1708", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1709.json b/src/main/resources/assets/imsm/models/item/useradded1709.json index 5b97333e..257a58df 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1709.json +++ b/src/main/resources/assets/imsm/models/item/useradded1709.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1709","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1709", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded171.json b/src/main/resources/assets/imsm/models/item/useradded171.json index eafa8300..2a22d387 100644 --- a/src/main/resources/assets/imsm/models/item/useradded171.json +++ b/src/main/resources/assets/imsm/models/item/useradded171.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded171","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded171", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1710.json b/src/main/resources/assets/imsm/models/item/useradded1710.json index 83a7d7b0..317264aa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1710.json +++ b/src/main/resources/assets/imsm/models/item/useradded1710.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1710","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1710", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1711.json b/src/main/resources/assets/imsm/models/item/useradded1711.json index 4156ea2a..2285a2dd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1711.json +++ b/src/main/resources/assets/imsm/models/item/useradded1711.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1711","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1711", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1712.json b/src/main/resources/assets/imsm/models/item/useradded1712.json index 66006b39..8d1cc779 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1712.json +++ b/src/main/resources/assets/imsm/models/item/useradded1712.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1712","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1712", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1713.json b/src/main/resources/assets/imsm/models/item/useradded1713.json index a65e12b8..e478caa9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1713.json +++ b/src/main/resources/assets/imsm/models/item/useradded1713.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1713","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1713", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1714.json b/src/main/resources/assets/imsm/models/item/useradded1714.json index d50ef8c7..198b2e96 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1714.json +++ b/src/main/resources/assets/imsm/models/item/useradded1714.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1714","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1714", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1715.json b/src/main/resources/assets/imsm/models/item/useradded1715.json index 5b6aec0e..03b27e9e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1715.json +++ b/src/main/resources/assets/imsm/models/item/useradded1715.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1715","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1715", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1716.json b/src/main/resources/assets/imsm/models/item/useradded1716.json index 07eb87f9..acb83811 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1716.json +++ b/src/main/resources/assets/imsm/models/item/useradded1716.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1716","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1716", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1717.json b/src/main/resources/assets/imsm/models/item/useradded1717.json index a43ddf43..c9595a67 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1717.json +++ b/src/main/resources/assets/imsm/models/item/useradded1717.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1717","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1717", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1718.json b/src/main/resources/assets/imsm/models/item/useradded1718.json index 88fdf842..f1e464c9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1718.json +++ b/src/main/resources/assets/imsm/models/item/useradded1718.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1718","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1718", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1719.json b/src/main/resources/assets/imsm/models/item/useradded1719.json index f19e0da7..d20ffc10 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1719.json +++ b/src/main/resources/assets/imsm/models/item/useradded1719.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1719","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1719", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded172.json b/src/main/resources/assets/imsm/models/item/useradded172.json index b5694852..a4be66da 100644 --- a/src/main/resources/assets/imsm/models/item/useradded172.json +++ b/src/main/resources/assets/imsm/models/item/useradded172.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded172","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded172", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1720.json b/src/main/resources/assets/imsm/models/item/useradded1720.json index 3758ee43..c6682541 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1720.json +++ b/src/main/resources/assets/imsm/models/item/useradded1720.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1720","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1720", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1721.json b/src/main/resources/assets/imsm/models/item/useradded1721.json index ccddf1aa..7bc550aa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1721.json +++ b/src/main/resources/assets/imsm/models/item/useradded1721.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1721","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1721", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1722.json b/src/main/resources/assets/imsm/models/item/useradded1722.json index 1acf90de..cb973955 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1722.json +++ b/src/main/resources/assets/imsm/models/item/useradded1722.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1722","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1722", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1723.json b/src/main/resources/assets/imsm/models/item/useradded1723.json index ae60af1a..6b103970 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1723.json +++ b/src/main/resources/assets/imsm/models/item/useradded1723.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1723","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1723", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1724.json b/src/main/resources/assets/imsm/models/item/useradded1724.json index be00cff9..09d8ac02 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1724.json +++ b/src/main/resources/assets/imsm/models/item/useradded1724.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1724","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1724", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1725.json b/src/main/resources/assets/imsm/models/item/useradded1725.json index 9df5d281..6deda6d1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1725.json +++ b/src/main/resources/assets/imsm/models/item/useradded1725.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1725","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1725", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1726.json b/src/main/resources/assets/imsm/models/item/useradded1726.json index 2817854d..12cf99ff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1726.json +++ b/src/main/resources/assets/imsm/models/item/useradded1726.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1726","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1726", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1727.json b/src/main/resources/assets/imsm/models/item/useradded1727.json index 5a37ab0c..d49e25e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1727.json +++ b/src/main/resources/assets/imsm/models/item/useradded1727.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1727","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1727", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1728.json b/src/main/resources/assets/imsm/models/item/useradded1728.json index a0c11e0d..98bb4647 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1728.json +++ b/src/main/resources/assets/imsm/models/item/useradded1728.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1728","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1728", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1729.json b/src/main/resources/assets/imsm/models/item/useradded1729.json index 1db3bf70..678e9998 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1729.json +++ b/src/main/resources/assets/imsm/models/item/useradded1729.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1729","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1729", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded173.json b/src/main/resources/assets/imsm/models/item/useradded173.json index a791e868..9d25bbc0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded173.json +++ b/src/main/resources/assets/imsm/models/item/useradded173.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded173","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded173", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1730.json b/src/main/resources/assets/imsm/models/item/useradded1730.json index f09b9794..4d04527d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1730.json +++ b/src/main/resources/assets/imsm/models/item/useradded1730.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1730","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1730", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1731.json b/src/main/resources/assets/imsm/models/item/useradded1731.json index f5cba58a..760932f2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1731.json +++ b/src/main/resources/assets/imsm/models/item/useradded1731.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1731","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1731", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1732.json b/src/main/resources/assets/imsm/models/item/useradded1732.json index 294fcfdb..662089d2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1732.json +++ b/src/main/resources/assets/imsm/models/item/useradded1732.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1732","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1732", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1733.json b/src/main/resources/assets/imsm/models/item/useradded1733.json index de262b41..48921f57 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1733.json +++ b/src/main/resources/assets/imsm/models/item/useradded1733.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1733","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1733", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1734.json b/src/main/resources/assets/imsm/models/item/useradded1734.json index 4fa9e7aa..e806f64b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1734.json +++ b/src/main/resources/assets/imsm/models/item/useradded1734.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1734","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1734", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1735.json b/src/main/resources/assets/imsm/models/item/useradded1735.json index 67ecb86b..abec4970 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1735.json +++ b/src/main/resources/assets/imsm/models/item/useradded1735.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1735","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1735", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1736.json b/src/main/resources/assets/imsm/models/item/useradded1736.json index 2f06beee..da236387 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1736.json +++ b/src/main/resources/assets/imsm/models/item/useradded1736.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1736","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1736", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1737.json b/src/main/resources/assets/imsm/models/item/useradded1737.json index 27c9fc79..e4cafe46 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1737.json +++ b/src/main/resources/assets/imsm/models/item/useradded1737.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1737","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1737", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1738.json b/src/main/resources/assets/imsm/models/item/useradded1738.json index da74e30b..d3f1f7b6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1738.json +++ b/src/main/resources/assets/imsm/models/item/useradded1738.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1738","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1738", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1739.json b/src/main/resources/assets/imsm/models/item/useradded1739.json index 96c28538..193f8ce7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1739.json +++ b/src/main/resources/assets/imsm/models/item/useradded1739.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1739","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1739", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded174.json b/src/main/resources/assets/imsm/models/item/useradded174.json index f4d7ed60..aa3d17b0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded174.json +++ b/src/main/resources/assets/imsm/models/item/useradded174.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded174","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded174", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1740.json b/src/main/resources/assets/imsm/models/item/useradded1740.json index 01f42d16..a0a25bac 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1740.json +++ b/src/main/resources/assets/imsm/models/item/useradded1740.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1740","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1740", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1741.json b/src/main/resources/assets/imsm/models/item/useradded1741.json index 66e70bb2..89b37bd7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1741.json +++ b/src/main/resources/assets/imsm/models/item/useradded1741.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1741","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1741", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1742.json b/src/main/resources/assets/imsm/models/item/useradded1742.json index 7a33378b..c90f1ed9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1742.json +++ b/src/main/resources/assets/imsm/models/item/useradded1742.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1742","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1742", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1743.json b/src/main/resources/assets/imsm/models/item/useradded1743.json index 95dcd391..87d837b2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1743.json +++ b/src/main/resources/assets/imsm/models/item/useradded1743.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1743","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1743", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1744.json b/src/main/resources/assets/imsm/models/item/useradded1744.json index 757d964c..909e78ad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1744.json +++ b/src/main/resources/assets/imsm/models/item/useradded1744.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1744","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1744", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1745.json b/src/main/resources/assets/imsm/models/item/useradded1745.json index 14823d38..74c2a9c1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1745.json +++ b/src/main/resources/assets/imsm/models/item/useradded1745.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1745","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1745", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1746.json b/src/main/resources/assets/imsm/models/item/useradded1746.json index 4f7c1263..5667d191 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1746.json +++ b/src/main/resources/assets/imsm/models/item/useradded1746.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1746","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1746", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1747.json b/src/main/resources/assets/imsm/models/item/useradded1747.json index 489c7fc1..2c88b712 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1747.json +++ b/src/main/resources/assets/imsm/models/item/useradded1747.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1747","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1747", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1748.json b/src/main/resources/assets/imsm/models/item/useradded1748.json index 33446b73..91e71368 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1748.json +++ b/src/main/resources/assets/imsm/models/item/useradded1748.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1748","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1748", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1749.json b/src/main/resources/assets/imsm/models/item/useradded1749.json index 8f06a0a7..62860fee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1749.json +++ b/src/main/resources/assets/imsm/models/item/useradded1749.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1749","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1749", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded175.json b/src/main/resources/assets/imsm/models/item/useradded175.json index 641d59c8..3f5f8882 100644 --- a/src/main/resources/assets/imsm/models/item/useradded175.json +++ b/src/main/resources/assets/imsm/models/item/useradded175.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded175","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded175", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1750.json b/src/main/resources/assets/imsm/models/item/useradded1750.json index 4e3c4d55..bb9fbd13 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1750.json +++ b/src/main/resources/assets/imsm/models/item/useradded1750.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1750","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1750", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1751.json b/src/main/resources/assets/imsm/models/item/useradded1751.json index 5997d4bb..e0617196 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1751.json +++ b/src/main/resources/assets/imsm/models/item/useradded1751.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1751","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1751", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1752.json b/src/main/resources/assets/imsm/models/item/useradded1752.json index 6eea85fc..a04c5f94 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1752.json +++ b/src/main/resources/assets/imsm/models/item/useradded1752.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1752","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1752", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1753.json b/src/main/resources/assets/imsm/models/item/useradded1753.json index b580953d..1663e801 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1753.json +++ b/src/main/resources/assets/imsm/models/item/useradded1753.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1753","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1753", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1754.json b/src/main/resources/assets/imsm/models/item/useradded1754.json index 26a9e1ce..fc2bc938 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1754.json +++ b/src/main/resources/assets/imsm/models/item/useradded1754.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1754","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1754", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1755.json b/src/main/resources/assets/imsm/models/item/useradded1755.json index f7837182..a400ed52 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1755.json +++ b/src/main/resources/assets/imsm/models/item/useradded1755.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1755","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1755", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1756.json b/src/main/resources/assets/imsm/models/item/useradded1756.json index b727b6bc..c2f42224 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1756.json +++ b/src/main/resources/assets/imsm/models/item/useradded1756.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1756","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1756", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1757.json b/src/main/resources/assets/imsm/models/item/useradded1757.json index fb796692..af9df330 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1757.json +++ b/src/main/resources/assets/imsm/models/item/useradded1757.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1757","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1757", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1758.json b/src/main/resources/assets/imsm/models/item/useradded1758.json index 9af5e42a..b5bd5074 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1758.json +++ b/src/main/resources/assets/imsm/models/item/useradded1758.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1758","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1758", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1759.json b/src/main/resources/assets/imsm/models/item/useradded1759.json index 2d363286..9bbf9071 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1759.json +++ b/src/main/resources/assets/imsm/models/item/useradded1759.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1759","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1759", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded176.json b/src/main/resources/assets/imsm/models/item/useradded176.json index 19e3ea4e..1f98af62 100644 --- a/src/main/resources/assets/imsm/models/item/useradded176.json +++ b/src/main/resources/assets/imsm/models/item/useradded176.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded176","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded176", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1760.json b/src/main/resources/assets/imsm/models/item/useradded1760.json index 6b8f1250..af787235 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1760.json +++ b/src/main/resources/assets/imsm/models/item/useradded1760.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1760","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1760", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1761.json b/src/main/resources/assets/imsm/models/item/useradded1761.json index 2e863c67..c95879dd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1761.json +++ b/src/main/resources/assets/imsm/models/item/useradded1761.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1761","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1761", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1762.json b/src/main/resources/assets/imsm/models/item/useradded1762.json index eceac29d..e62856a6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1762.json +++ b/src/main/resources/assets/imsm/models/item/useradded1762.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1762","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1762", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1763.json b/src/main/resources/assets/imsm/models/item/useradded1763.json index 5902fa1a..dd75d91c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1763.json +++ b/src/main/resources/assets/imsm/models/item/useradded1763.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1763","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1763", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1764.json b/src/main/resources/assets/imsm/models/item/useradded1764.json index 1133a1ae..b7fe0b69 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1764.json +++ b/src/main/resources/assets/imsm/models/item/useradded1764.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1764","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1764", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1765.json b/src/main/resources/assets/imsm/models/item/useradded1765.json index a7e313b2..38279071 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1765.json +++ b/src/main/resources/assets/imsm/models/item/useradded1765.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1765","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1765", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1766.json b/src/main/resources/assets/imsm/models/item/useradded1766.json index 76445a0e..3ca066aa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1766.json +++ b/src/main/resources/assets/imsm/models/item/useradded1766.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1766","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1766", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1767.json b/src/main/resources/assets/imsm/models/item/useradded1767.json index edde7bc3..3aa4b19c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1767.json +++ b/src/main/resources/assets/imsm/models/item/useradded1767.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1767","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1767", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1768.json b/src/main/resources/assets/imsm/models/item/useradded1768.json index b5d5fab0..9dc7613d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1768.json +++ b/src/main/resources/assets/imsm/models/item/useradded1768.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1768","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1768", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1769.json b/src/main/resources/assets/imsm/models/item/useradded1769.json index 9337d7b9..7979d194 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1769.json +++ b/src/main/resources/assets/imsm/models/item/useradded1769.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1769","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1769", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded177.json b/src/main/resources/assets/imsm/models/item/useradded177.json index b8d74941..90cf52b8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded177.json +++ b/src/main/resources/assets/imsm/models/item/useradded177.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded177","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded177", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1770.json b/src/main/resources/assets/imsm/models/item/useradded1770.json index c5eaf5b1..9797ddd8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1770.json +++ b/src/main/resources/assets/imsm/models/item/useradded1770.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1770","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1770", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1771.json b/src/main/resources/assets/imsm/models/item/useradded1771.json index 88fb3666..643301bc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1771.json +++ b/src/main/resources/assets/imsm/models/item/useradded1771.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1771","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1771", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1772.json b/src/main/resources/assets/imsm/models/item/useradded1772.json index b596e0b0..82bd62ec 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1772.json +++ b/src/main/resources/assets/imsm/models/item/useradded1772.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1772","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1772", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1773.json b/src/main/resources/assets/imsm/models/item/useradded1773.json index b222a90d..717c048e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1773.json +++ b/src/main/resources/assets/imsm/models/item/useradded1773.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1773","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1773", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1774.json b/src/main/resources/assets/imsm/models/item/useradded1774.json index 6d147515..4dadde91 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1774.json +++ b/src/main/resources/assets/imsm/models/item/useradded1774.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1774","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1774", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1775.json b/src/main/resources/assets/imsm/models/item/useradded1775.json index cdb36a1b..20bf6f5c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1775.json +++ b/src/main/resources/assets/imsm/models/item/useradded1775.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1775","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1775", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1776.json b/src/main/resources/assets/imsm/models/item/useradded1776.json index 7b9b9fb7..b378bfd4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1776.json +++ b/src/main/resources/assets/imsm/models/item/useradded1776.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1776","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1776", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1777.json b/src/main/resources/assets/imsm/models/item/useradded1777.json index ac01bea1..63e9bb55 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1777.json +++ b/src/main/resources/assets/imsm/models/item/useradded1777.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1777","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1777", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1778.json b/src/main/resources/assets/imsm/models/item/useradded1778.json index 921660f9..0194fbeb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1778.json +++ b/src/main/resources/assets/imsm/models/item/useradded1778.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1778","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1778", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1779.json b/src/main/resources/assets/imsm/models/item/useradded1779.json index 91a7279d..4f36f39c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1779.json +++ b/src/main/resources/assets/imsm/models/item/useradded1779.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1779","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1779", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded178.json b/src/main/resources/assets/imsm/models/item/useradded178.json index 6e17297c..34bbbd0a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded178.json +++ b/src/main/resources/assets/imsm/models/item/useradded178.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded178","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded178", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1780.json b/src/main/resources/assets/imsm/models/item/useradded1780.json index f068110e..17e29059 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1780.json +++ b/src/main/resources/assets/imsm/models/item/useradded1780.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1780","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1780", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1781.json b/src/main/resources/assets/imsm/models/item/useradded1781.json index e8772edd..c7361f2d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1781.json +++ b/src/main/resources/assets/imsm/models/item/useradded1781.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1781","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1781", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1782.json b/src/main/resources/assets/imsm/models/item/useradded1782.json index b5612e4a..4df9db39 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1782.json +++ b/src/main/resources/assets/imsm/models/item/useradded1782.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1782","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1782", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1783.json b/src/main/resources/assets/imsm/models/item/useradded1783.json index e9f3692a..6d54a330 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1783.json +++ b/src/main/resources/assets/imsm/models/item/useradded1783.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1783","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1783", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1784.json b/src/main/resources/assets/imsm/models/item/useradded1784.json index 5fd5518d..6e23412a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1784.json +++ b/src/main/resources/assets/imsm/models/item/useradded1784.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1784","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1784", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1785.json b/src/main/resources/assets/imsm/models/item/useradded1785.json index 38394685..e1ac989b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1785.json +++ b/src/main/resources/assets/imsm/models/item/useradded1785.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1785","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1785", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1786.json b/src/main/resources/assets/imsm/models/item/useradded1786.json index a7698f9e..dae224c7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1786.json +++ b/src/main/resources/assets/imsm/models/item/useradded1786.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1786","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1786", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1787.json b/src/main/resources/assets/imsm/models/item/useradded1787.json index 9949ace4..177b33c1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1787.json +++ b/src/main/resources/assets/imsm/models/item/useradded1787.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1787","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1787", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1788.json b/src/main/resources/assets/imsm/models/item/useradded1788.json index 14934946..01ce62d7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1788.json +++ b/src/main/resources/assets/imsm/models/item/useradded1788.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1788","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1788", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1789.json b/src/main/resources/assets/imsm/models/item/useradded1789.json index 7db771d3..46f7ac5f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1789.json +++ b/src/main/resources/assets/imsm/models/item/useradded1789.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1789","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1789", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded179.json b/src/main/resources/assets/imsm/models/item/useradded179.json index 403f1155..8641997d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded179.json +++ b/src/main/resources/assets/imsm/models/item/useradded179.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded179","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded179", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1790.json b/src/main/resources/assets/imsm/models/item/useradded1790.json index 8a97453a..7d8d67d8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1790.json +++ b/src/main/resources/assets/imsm/models/item/useradded1790.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1790","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1790", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1791.json b/src/main/resources/assets/imsm/models/item/useradded1791.json index 834cb2df..c4c3223d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1791.json +++ b/src/main/resources/assets/imsm/models/item/useradded1791.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1791","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1791", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1792.json b/src/main/resources/assets/imsm/models/item/useradded1792.json index 48687409..0393cd8b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1792.json +++ b/src/main/resources/assets/imsm/models/item/useradded1792.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1792","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1792", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1793.json b/src/main/resources/assets/imsm/models/item/useradded1793.json index df8836b1..2ea815fb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1793.json +++ b/src/main/resources/assets/imsm/models/item/useradded1793.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1793","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1793", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1794.json b/src/main/resources/assets/imsm/models/item/useradded1794.json index 30748d86..5a83d280 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1794.json +++ b/src/main/resources/assets/imsm/models/item/useradded1794.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1794","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1794", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1795.json b/src/main/resources/assets/imsm/models/item/useradded1795.json index 72142641..deaf016e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1795.json +++ b/src/main/resources/assets/imsm/models/item/useradded1795.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1795","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1795", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1796.json b/src/main/resources/assets/imsm/models/item/useradded1796.json index da4de300..e8c75820 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1796.json +++ b/src/main/resources/assets/imsm/models/item/useradded1796.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1796","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1796", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1797.json b/src/main/resources/assets/imsm/models/item/useradded1797.json index f3695c2d..62f9fffc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1797.json +++ b/src/main/resources/assets/imsm/models/item/useradded1797.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1797","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1797", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1798.json b/src/main/resources/assets/imsm/models/item/useradded1798.json index 0a112714..88c2cdb6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1798.json +++ b/src/main/resources/assets/imsm/models/item/useradded1798.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1798","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1798", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1799.json b/src/main/resources/assets/imsm/models/item/useradded1799.json index c34c76e0..bdf1243d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1799.json +++ b/src/main/resources/assets/imsm/models/item/useradded1799.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1799","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1799", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded18.json b/src/main/resources/assets/imsm/models/item/useradded18.json index 0d0c7081..b4bfb3f8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded18.json +++ b/src/main/resources/assets/imsm/models/item/useradded18.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded18","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded18", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded180.json b/src/main/resources/assets/imsm/models/item/useradded180.json index e6592641..18e2fe8d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded180.json +++ b/src/main/resources/assets/imsm/models/item/useradded180.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded180","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded180", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1800.json b/src/main/resources/assets/imsm/models/item/useradded1800.json index 24e68c9e..6d6de1a8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1800.json +++ b/src/main/resources/assets/imsm/models/item/useradded1800.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1800","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1800", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1801.json b/src/main/resources/assets/imsm/models/item/useradded1801.json index 6ad1a73e..78bc0cc7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1801.json +++ b/src/main/resources/assets/imsm/models/item/useradded1801.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1801","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1801", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1802.json b/src/main/resources/assets/imsm/models/item/useradded1802.json index af77c48a..1d4d30ec 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1802.json +++ b/src/main/resources/assets/imsm/models/item/useradded1802.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1802","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1802", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1803.json b/src/main/resources/assets/imsm/models/item/useradded1803.json index 77f5628b..26b219e3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1803.json +++ b/src/main/resources/assets/imsm/models/item/useradded1803.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1803","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1803", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1804.json b/src/main/resources/assets/imsm/models/item/useradded1804.json index 7802cd69..78eed16e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1804.json +++ b/src/main/resources/assets/imsm/models/item/useradded1804.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1804","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1804", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1805.json b/src/main/resources/assets/imsm/models/item/useradded1805.json index 3dcd957f..1c7662ee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1805.json +++ b/src/main/resources/assets/imsm/models/item/useradded1805.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1805","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1805", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1806.json b/src/main/resources/assets/imsm/models/item/useradded1806.json index 2804fd59..580626a8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1806.json +++ b/src/main/resources/assets/imsm/models/item/useradded1806.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1806","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1806", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1807.json b/src/main/resources/assets/imsm/models/item/useradded1807.json index c1535bc1..9ab8cce6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1807.json +++ b/src/main/resources/assets/imsm/models/item/useradded1807.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1807","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1807", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1808.json b/src/main/resources/assets/imsm/models/item/useradded1808.json index 066745d6..487cd251 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1808.json +++ b/src/main/resources/assets/imsm/models/item/useradded1808.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1808","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1808", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1809.json b/src/main/resources/assets/imsm/models/item/useradded1809.json index 9878cfd7..42f49174 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1809.json +++ b/src/main/resources/assets/imsm/models/item/useradded1809.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1809","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1809", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded181.json b/src/main/resources/assets/imsm/models/item/useradded181.json index c030a6d1..fe38a289 100644 --- a/src/main/resources/assets/imsm/models/item/useradded181.json +++ b/src/main/resources/assets/imsm/models/item/useradded181.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded181","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded181", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1810.json b/src/main/resources/assets/imsm/models/item/useradded1810.json index 2ab3491f..fc6a700b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1810.json +++ b/src/main/resources/assets/imsm/models/item/useradded1810.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1810","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1810", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1811.json b/src/main/resources/assets/imsm/models/item/useradded1811.json index c54bedf0..ec26ea48 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1811.json +++ b/src/main/resources/assets/imsm/models/item/useradded1811.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1811","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1811", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1812.json b/src/main/resources/assets/imsm/models/item/useradded1812.json index bf352546..259d1a9f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1812.json +++ b/src/main/resources/assets/imsm/models/item/useradded1812.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1812","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1812", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1813.json b/src/main/resources/assets/imsm/models/item/useradded1813.json index 32d0b909..ccb98984 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1813.json +++ b/src/main/resources/assets/imsm/models/item/useradded1813.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1813","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1813", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1814.json b/src/main/resources/assets/imsm/models/item/useradded1814.json index fe7f7cd7..b77da230 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1814.json +++ b/src/main/resources/assets/imsm/models/item/useradded1814.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1814","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1814", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1815.json b/src/main/resources/assets/imsm/models/item/useradded1815.json index 38c35b4e..199f36cf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1815.json +++ b/src/main/resources/assets/imsm/models/item/useradded1815.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1815","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1815", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1816.json b/src/main/resources/assets/imsm/models/item/useradded1816.json index 2940053d..e54ae4af 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1816.json +++ b/src/main/resources/assets/imsm/models/item/useradded1816.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1816","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1816", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1817.json b/src/main/resources/assets/imsm/models/item/useradded1817.json index 71563407..be23f3c8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1817.json +++ b/src/main/resources/assets/imsm/models/item/useradded1817.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1817","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1817", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1818.json b/src/main/resources/assets/imsm/models/item/useradded1818.json index 27e278e0..48ebcecf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1818.json +++ b/src/main/resources/assets/imsm/models/item/useradded1818.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1818","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1818", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1819.json b/src/main/resources/assets/imsm/models/item/useradded1819.json index 21d8eef2..665efcb5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1819.json +++ b/src/main/resources/assets/imsm/models/item/useradded1819.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1819","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1819", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded182.json b/src/main/resources/assets/imsm/models/item/useradded182.json index 2c93c2d0..5b0c0678 100644 --- a/src/main/resources/assets/imsm/models/item/useradded182.json +++ b/src/main/resources/assets/imsm/models/item/useradded182.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded182","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded182", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1820.json b/src/main/resources/assets/imsm/models/item/useradded1820.json index f0a78532..cf111c94 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1820.json +++ b/src/main/resources/assets/imsm/models/item/useradded1820.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1820","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1820", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1821.json b/src/main/resources/assets/imsm/models/item/useradded1821.json index 7946a388..be52fb87 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1821.json +++ b/src/main/resources/assets/imsm/models/item/useradded1821.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1821","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1821", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1822.json b/src/main/resources/assets/imsm/models/item/useradded1822.json index bdfaee2b..4616c286 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1822.json +++ b/src/main/resources/assets/imsm/models/item/useradded1822.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1822","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1822", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1823.json b/src/main/resources/assets/imsm/models/item/useradded1823.json index 7dd3acd4..580cc5fe 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1823.json +++ b/src/main/resources/assets/imsm/models/item/useradded1823.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1823","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1823", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1824.json b/src/main/resources/assets/imsm/models/item/useradded1824.json index d12fe3dc..a3826c43 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1824.json +++ b/src/main/resources/assets/imsm/models/item/useradded1824.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1824","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1824", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1825.json b/src/main/resources/assets/imsm/models/item/useradded1825.json index cb154c05..383e2c65 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1825.json +++ b/src/main/resources/assets/imsm/models/item/useradded1825.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1825","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1825", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1826.json b/src/main/resources/assets/imsm/models/item/useradded1826.json index ad75746f..f33a1a54 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1826.json +++ b/src/main/resources/assets/imsm/models/item/useradded1826.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1826","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1826", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1827.json b/src/main/resources/assets/imsm/models/item/useradded1827.json index ce511ce6..eb55d7ef 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1827.json +++ b/src/main/resources/assets/imsm/models/item/useradded1827.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1827","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1827", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1828.json b/src/main/resources/assets/imsm/models/item/useradded1828.json index fb88afc7..21b8bc20 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1828.json +++ b/src/main/resources/assets/imsm/models/item/useradded1828.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1828","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1828", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1829.json b/src/main/resources/assets/imsm/models/item/useradded1829.json index 949ea127..7254d662 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1829.json +++ b/src/main/resources/assets/imsm/models/item/useradded1829.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1829","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1829", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded183.json b/src/main/resources/assets/imsm/models/item/useradded183.json index bca61b3e..23bc3bd9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded183.json +++ b/src/main/resources/assets/imsm/models/item/useradded183.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded183","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded183", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1830.json b/src/main/resources/assets/imsm/models/item/useradded1830.json index 6dc40e93..de9af139 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1830.json +++ b/src/main/resources/assets/imsm/models/item/useradded1830.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1830","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1830", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1831.json b/src/main/resources/assets/imsm/models/item/useradded1831.json index 870f357c..73b055c6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1831.json +++ b/src/main/resources/assets/imsm/models/item/useradded1831.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1831","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1831", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1832.json b/src/main/resources/assets/imsm/models/item/useradded1832.json index 17d6ae7f..a7ad9d4b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1832.json +++ b/src/main/resources/assets/imsm/models/item/useradded1832.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1832","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1832", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1833.json b/src/main/resources/assets/imsm/models/item/useradded1833.json index de7ebf3f..9fab063e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1833.json +++ b/src/main/resources/assets/imsm/models/item/useradded1833.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1833","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1833", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1834.json b/src/main/resources/assets/imsm/models/item/useradded1834.json index 171732f5..0d4c27b8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1834.json +++ b/src/main/resources/assets/imsm/models/item/useradded1834.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1834","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1834", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1835.json b/src/main/resources/assets/imsm/models/item/useradded1835.json index b36e0faf..4c49e5da 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1835.json +++ b/src/main/resources/assets/imsm/models/item/useradded1835.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1835","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1835", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1836.json b/src/main/resources/assets/imsm/models/item/useradded1836.json index 613aca59..c5b60ec1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1836.json +++ b/src/main/resources/assets/imsm/models/item/useradded1836.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1836","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1836", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1837.json b/src/main/resources/assets/imsm/models/item/useradded1837.json index 55777d54..f747c4ee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1837.json +++ b/src/main/resources/assets/imsm/models/item/useradded1837.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1837","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1837", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1838.json b/src/main/resources/assets/imsm/models/item/useradded1838.json index f08c52d4..eb6a5cb8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1838.json +++ b/src/main/resources/assets/imsm/models/item/useradded1838.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1838","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1838", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1839.json b/src/main/resources/assets/imsm/models/item/useradded1839.json index 0b09ef1a..de73c5c0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1839.json +++ b/src/main/resources/assets/imsm/models/item/useradded1839.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1839","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1839", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded184.json b/src/main/resources/assets/imsm/models/item/useradded184.json index 14529bb4..5ac3b379 100644 --- a/src/main/resources/assets/imsm/models/item/useradded184.json +++ b/src/main/resources/assets/imsm/models/item/useradded184.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded184","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded184", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1840.json b/src/main/resources/assets/imsm/models/item/useradded1840.json index f03d0c4b..b4e5024e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1840.json +++ b/src/main/resources/assets/imsm/models/item/useradded1840.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1840","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1840", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1841.json b/src/main/resources/assets/imsm/models/item/useradded1841.json index 73c9caf8..3b18bf29 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1841.json +++ b/src/main/resources/assets/imsm/models/item/useradded1841.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1841","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1841", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1842.json b/src/main/resources/assets/imsm/models/item/useradded1842.json index fa073e31..6f945192 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1842.json +++ b/src/main/resources/assets/imsm/models/item/useradded1842.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1842","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1842", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1843.json b/src/main/resources/assets/imsm/models/item/useradded1843.json index 4a240f78..40be19e6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1843.json +++ b/src/main/resources/assets/imsm/models/item/useradded1843.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1843","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1843", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1844.json b/src/main/resources/assets/imsm/models/item/useradded1844.json index 582c9a1c..796c37d5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1844.json +++ b/src/main/resources/assets/imsm/models/item/useradded1844.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1844","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1844", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1845.json b/src/main/resources/assets/imsm/models/item/useradded1845.json index e764426e..a8fe8a83 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1845.json +++ b/src/main/resources/assets/imsm/models/item/useradded1845.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1845","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1845", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1846.json b/src/main/resources/assets/imsm/models/item/useradded1846.json index 75293e30..0a150245 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1846.json +++ b/src/main/resources/assets/imsm/models/item/useradded1846.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1846","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1846", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1847.json b/src/main/resources/assets/imsm/models/item/useradded1847.json index 7707f40c..fd29d20c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1847.json +++ b/src/main/resources/assets/imsm/models/item/useradded1847.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1847","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1847", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1848.json b/src/main/resources/assets/imsm/models/item/useradded1848.json index d7423b2e..e4ec6099 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1848.json +++ b/src/main/resources/assets/imsm/models/item/useradded1848.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1848","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1848", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1849.json b/src/main/resources/assets/imsm/models/item/useradded1849.json index b9bf1002..bc124593 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1849.json +++ b/src/main/resources/assets/imsm/models/item/useradded1849.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1849","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1849", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded185.json b/src/main/resources/assets/imsm/models/item/useradded185.json index b75bc448..fadca7f3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded185.json +++ b/src/main/resources/assets/imsm/models/item/useradded185.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded185","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded185", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1850.json b/src/main/resources/assets/imsm/models/item/useradded1850.json index f30e4842..4d210b05 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1850.json +++ b/src/main/resources/assets/imsm/models/item/useradded1850.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1850","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1850", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1851.json b/src/main/resources/assets/imsm/models/item/useradded1851.json index a13b788b..0cdeadc5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1851.json +++ b/src/main/resources/assets/imsm/models/item/useradded1851.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1851","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1851", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1852.json b/src/main/resources/assets/imsm/models/item/useradded1852.json index 51d12e7e..9fcb46f1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1852.json +++ b/src/main/resources/assets/imsm/models/item/useradded1852.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1852","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1852", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1853.json b/src/main/resources/assets/imsm/models/item/useradded1853.json index d2c0789e..92e35278 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1853.json +++ b/src/main/resources/assets/imsm/models/item/useradded1853.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1853","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1853", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1854.json b/src/main/resources/assets/imsm/models/item/useradded1854.json index 0feb3f41..225e6f0f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1854.json +++ b/src/main/resources/assets/imsm/models/item/useradded1854.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1854","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1854", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1855.json b/src/main/resources/assets/imsm/models/item/useradded1855.json index 70496ab3..5f86c369 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1855.json +++ b/src/main/resources/assets/imsm/models/item/useradded1855.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1855","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1855", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1856.json b/src/main/resources/assets/imsm/models/item/useradded1856.json index 4db0a07d..a5964430 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1856.json +++ b/src/main/resources/assets/imsm/models/item/useradded1856.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1856","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1856", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1857.json b/src/main/resources/assets/imsm/models/item/useradded1857.json index 457e9e81..e7ce0fe7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1857.json +++ b/src/main/resources/assets/imsm/models/item/useradded1857.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1857","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1857", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1858.json b/src/main/resources/assets/imsm/models/item/useradded1858.json index f88b5d3e..b211b2c3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1858.json +++ b/src/main/resources/assets/imsm/models/item/useradded1858.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1858","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1858", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1859.json b/src/main/resources/assets/imsm/models/item/useradded1859.json index afa75b59..ea2ff59e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1859.json +++ b/src/main/resources/assets/imsm/models/item/useradded1859.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1859","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1859", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded186.json b/src/main/resources/assets/imsm/models/item/useradded186.json index e44a8e77..fbe470da 100644 --- a/src/main/resources/assets/imsm/models/item/useradded186.json +++ b/src/main/resources/assets/imsm/models/item/useradded186.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded186","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded186", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1860.json b/src/main/resources/assets/imsm/models/item/useradded1860.json index f775ad33..cb9038b7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1860.json +++ b/src/main/resources/assets/imsm/models/item/useradded1860.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1860","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1860", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1861.json b/src/main/resources/assets/imsm/models/item/useradded1861.json index c4badbfb..6fd618d2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1861.json +++ b/src/main/resources/assets/imsm/models/item/useradded1861.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1861","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1861", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1862.json b/src/main/resources/assets/imsm/models/item/useradded1862.json index 09dae340..2c32fdad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1862.json +++ b/src/main/resources/assets/imsm/models/item/useradded1862.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1862","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1862", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1863.json b/src/main/resources/assets/imsm/models/item/useradded1863.json index 8d08dfaa..4a53b579 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1863.json +++ b/src/main/resources/assets/imsm/models/item/useradded1863.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1863","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1863", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1864.json b/src/main/resources/assets/imsm/models/item/useradded1864.json index cb06cce5..54aabe98 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1864.json +++ b/src/main/resources/assets/imsm/models/item/useradded1864.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1864","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1864", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1865.json b/src/main/resources/assets/imsm/models/item/useradded1865.json index 34e11440..b7f35f86 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1865.json +++ b/src/main/resources/assets/imsm/models/item/useradded1865.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1865","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1865", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1866.json b/src/main/resources/assets/imsm/models/item/useradded1866.json index fa6bb815..f446300e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1866.json +++ b/src/main/resources/assets/imsm/models/item/useradded1866.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1866","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1866", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1867.json b/src/main/resources/assets/imsm/models/item/useradded1867.json index 88f7ae86..b617a25b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1867.json +++ b/src/main/resources/assets/imsm/models/item/useradded1867.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1867","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1867", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1868.json b/src/main/resources/assets/imsm/models/item/useradded1868.json index 2495faf5..afa25cc5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1868.json +++ b/src/main/resources/assets/imsm/models/item/useradded1868.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1868","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1868", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1869.json b/src/main/resources/assets/imsm/models/item/useradded1869.json index ee4d9a5b..87f14cc4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1869.json +++ b/src/main/resources/assets/imsm/models/item/useradded1869.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1869","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1869", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded187.json b/src/main/resources/assets/imsm/models/item/useradded187.json index c35ecbb4..ab0dc0a6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded187.json +++ b/src/main/resources/assets/imsm/models/item/useradded187.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded187","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded187", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1870.json b/src/main/resources/assets/imsm/models/item/useradded1870.json index ac42d93c..96c7168c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1870.json +++ b/src/main/resources/assets/imsm/models/item/useradded1870.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1870","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1870", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1871.json b/src/main/resources/assets/imsm/models/item/useradded1871.json index cfcf2944..308ca262 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1871.json +++ b/src/main/resources/assets/imsm/models/item/useradded1871.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1871","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1871", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1872.json b/src/main/resources/assets/imsm/models/item/useradded1872.json index d3284a0a..4cf077a7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1872.json +++ b/src/main/resources/assets/imsm/models/item/useradded1872.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1872","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1872", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1873.json b/src/main/resources/assets/imsm/models/item/useradded1873.json index 9ef15376..36e3c8e0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1873.json +++ b/src/main/resources/assets/imsm/models/item/useradded1873.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1873","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1873", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1874.json b/src/main/resources/assets/imsm/models/item/useradded1874.json index 71ba465d..a5a8effd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1874.json +++ b/src/main/resources/assets/imsm/models/item/useradded1874.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1874","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1874", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1875.json b/src/main/resources/assets/imsm/models/item/useradded1875.json index a2ceaa6d..5f502369 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1875.json +++ b/src/main/resources/assets/imsm/models/item/useradded1875.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1875","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1875", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1876.json b/src/main/resources/assets/imsm/models/item/useradded1876.json index 645b2799..bd8f06f9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1876.json +++ b/src/main/resources/assets/imsm/models/item/useradded1876.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1876","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1876", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1877.json b/src/main/resources/assets/imsm/models/item/useradded1877.json index 62644c86..1c2bde5d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1877.json +++ b/src/main/resources/assets/imsm/models/item/useradded1877.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1877","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1877", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1878.json b/src/main/resources/assets/imsm/models/item/useradded1878.json index e3c7d204..70ba8f0b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1878.json +++ b/src/main/resources/assets/imsm/models/item/useradded1878.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1878","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1878", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1879.json b/src/main/resources/assets/imsm/models/item/useradded1879.json index 29430d6c..ac3a6e99 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1879.json +++ b/src/main/resources/assets/imsm/models/item/useradded1879.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1879","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1879", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded188.json b/src/main/resources/assets/imsm/models/item/useradded188.json index 6bd71dad..cd26eb98 100644 --- a/src/main/resources/assets/imsm/models/item/useradded188.json +++ b/src/main/resources/assets/imsm/models/item/useradded188.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded188","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded188", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1880.json b/src/main/resources/assets/imsm/models/item/useradded1880.json index 7c31f318..03d5d120 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1880.json +++ b/src/main/resources/assets/imsm/models/item/useradded1880.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1880","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1880", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1881.json b/src/main/resources/assets/imsm/models/item/useradded1881.json index 7aa87d6c..2802bc67 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1881.json +++ b/src/main/resources/assets/imsm/models/item/useradded1881.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1881","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1881", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1882.json b/src/main/resources/assets/imsm/models/item/useradded1882.json index 48d79d25..b02f2fa9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1882.json +++ b/src/main/resources/assets/imsm/models/item/useradded1882.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1882","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1882", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1883.json b/src/main/resources/assets/imsm/models/item/useradded1883.json index 8f60ff94..6bbdece2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1883.json +++ b/src/main/resources/assets/imsm/models/item/useradded1883.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1883","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1883", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1884.json b/src/main/resources/assets/imsm/models/item/useradded1884.json index 7e70d665..88fcf186 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1884.json +++ b/src/main/resources/assets/imsm/models/item/useradded1884.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1884","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1884", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1885.json b/src/main/resources/assets/imsm/models/item/useradded1885.json index 15cb3cf6..c3e97abb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1885.json +++ b/src/main/resources/assets/imsm/models/item/useradded1885.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1885","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1885", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1886.json b/src/main/resources/assets/imsm/models/item/useradded1886.json index e33fb39f..d899d0fb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1886.json +++ b/src/main/resources/assets/imsm/models/item/useradded1886.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1886","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1886", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1887.json b/src/main/resources/assets/imsm/models/item/useradded1887.json index b59647d8..674d1fa2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1887.json +++ b/src/main/resources/assets/imsm/models/item/useradded1887.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1887","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1887", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1888.json b/src/main/resources/assets/imsm/models/item/useradded1888.json index 21fe3ca0..fdb60d98 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1888.json +++ b/src/main/resources/assets/imsm/models/item/useradded1888.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1888","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1888", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1889.json b/src/main/resources/assets/imsm/models/item/useradded1889.json index b759983e..d1aff44c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1889.json +++ b/src/main/resources/assets/imsm/models/item/useradded1889.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1889","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1889", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded189.json b/src/main/resources/assets/imsm/models/item/useradded189.json index 7bac9828..b750b8a6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded189.json +++ b/src/main/resources/assets/imsm/models/item/useradded189.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded189","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded189", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1890.json b/src/main/resources/assets/imsm/models/item/useradded1890.json index a72317b6..fbe6ce1c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1890.json +++ b/src/main/resources/assets/imsm/models/item/useradded1890.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1890","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1890", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1891.json b/src/main/resources/assets/imsm/models/item/useradded1891.json index 080e0e15..037b5f0f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1891.json +++ b/src/main/resources/assets/imsm/models/item/useradded1891.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1891","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1891", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1892.json b/src/main/resources/assets/imsm/models/item/useradded1892.json index 016711ba..20fc84c5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1892.json +++ b/src/main/resources/assets/imsm/models/item/useradded1892.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1892","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1892", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1893.json b/src/main/resources/assets/imsm/models/item/useradded1893.json index d43663a3..8dc5c117 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1893.json +++ b/src/main/resources/assets/imsm/models/item/useradded1893.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1893","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1893", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1894.json b/src/main/resources/assets/imsm/models/item/useradded1894.json index f05f3dae..03115deb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1894.json +++ b/src/main/resources/assets/imsm/models/item/useradded1894.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1894","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1894", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1895.json b/src/main/resources/assets/imsm/models/item/useradded1895.json index 8e65d1cf..d05877b7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1895.json +++ b/src/main/resources/assets/imsm/models/item/useradded1895.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1895","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1895", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1896.json b/src/main/resources/assets/imsm/models/item/useradded1896.json index c230f0dc..704b930b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1896.json +++ b/src/main/resources/assets/imsm/models/item/useradded1896.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1896","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1896", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1897.json b/src/main/resources/assets/imsm/models/item/useradded1897.json index 778db9a7..ab4a195f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1897.json +++ b/src/main/resources/assets/imsm/models/item/useradded1897.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1897","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1897", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1898.json b/src/main/resources/assets/imsm/models/item/useradded1898.json index 283ecc5e..5d7fc367 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1898.json +++ b/src/main/resources/assets/imsm/models/item/useradded1898.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1898","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1898", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1899.json b/src/main/resources/assets/imsm/models/item/useradded1899.json index 7c23f93c..d25cead7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1899.json +++ b/src/main/resources/assets/imsm/models/item/useradded1899.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1899","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1899", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded19.json b/src/main/resources/assets/imsm/models/item/useradded19.json index e814f22b..440ea741 100644 --- a/src/main/resources/assets/imsm/models/item/useradded19.json +++ b/src/main/resources/assets/imsm/models/item/useradded19.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded19","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded19", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded190.json b/src/main/resources/assets/imsm/models/item/useradded190.json index e2460fb7..70490b44 100644 --- a/src/main/resources/assets/imsm/models/item/useradded190.json +++ b/src/main/resources/assets/imsm/models/item/useradded190.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded190","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded190", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1900.json b/src/main/resources/assets/imsm/models/item/useradded1900.json index e75dceae..5c34a38a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1900.json +++ b/src/main/resources/assets/imsm/models/item/useradded1900.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1900","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1900", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1901.json b/src/main/resources/assets/imsm/models/item/useradded1901.json index 09db9f48..c9f279ec 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1901.json +++ b/src/main/resources/assets/imsm/models/item/useradded1901.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1901","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1901", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1902.json b/src/main/resources/assets/imsm/models/item/useradded1902.json index 374bb64b..108cda53 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1902.json +++ b/src/main/resources/assets/imsm/models/item/useradded1902.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1902","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1902", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1903.json b/src/main/resources/assets/imsm/models/item/useradded1903.json index 2af8d594..92e182fd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1903.json +++ b/src/main/resources/assets/imsm/models/item/useradded1903.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1903","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1903", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1904.json b/src/main/resources/assets/imsm/models/item/useradded1904.json index 5cbfa731..fe52fe5e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1904.json +++ b/src/main/resources/assets/imsm/models/item/useradded1904.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1904","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1904", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1905.json b/src/main/resources/assets/imsm/models/item/useradded1905.json index cecc2833..0b03f670 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1905.json +++ b/src/main/resources/assets/imsm/models/item/useradded1905.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1905","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1905", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1906.json b/src/main/resources/assets/imsm/models/item/useradded1906.json index 4758eb5f..d39533a7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1906.json +++ b/src/main/resources/assets/imsm/models/item/useradded1906.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1906","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1906", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1907.json b/src/main/resources/assets/imsm/models/item/useradded1907.json index 90754381..9d40e06a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1907.json +++ b/src/main/resources/assets/imsm/models/item/useradded1907.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1907","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1907", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1908.json b/src/main/resources/assets/imsm/models/item/useradded1908.json index 30812f93..ca43bfe4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1908.json +++ b/src/main/resources/assets/imsm/models/item/useradded1908.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1908","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1908", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1909.json b/src/main/resources/assets/imsm/models/item/useradded1909.json index 1d567d94..31c5a0ec 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1909.json +++ b/src/main/resources/assets/imsm/models/item/useradded1909.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1909","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1909", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded191.json b/src/main/resources/assets/imsm/models/item/useradded191.json index c5967a8e..d7e2feab 100644 --- a/src/main/resources/assets/imsm/models/item/useradded191.json +++ b/src/main/resources/assets/imsm/models/item/useradded191.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded191","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded191", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1910.json b/src/main/resources/assets/imsm/models/item/useradded1910.json index 3fc01f4e..cc309311 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1910.json +++ b/src/main/resources/assets/imsm/models/item/useradded1910.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1910","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1910", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1911.json b/src/main/resources/assets/imsm/models/item/useradded1911.json index d4c55ab8..a48e8fa0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1911.json +++ b/src/main/resources/assets/imsm/models/item/useradded1911.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1911","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1911", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1912.json b/src/main/resources/assets/imsm/models/item/useradded1912.json index 7ccd0d53..f99075ba 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1912.json +++ b/src/main/resources/assets/imsm/models/item/useradded1912.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1912","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1912", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1913.json b/src/main/resources/assets/imsm/models/item/useradded1913.json index 6faeca65..ee5c4deb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1913.json +++ b/src/main/resources/assets/imsm/models/item/useradded1913.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1913","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1913", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1914.json b/src/main/resources/assets/imsm/models/item/useradded1914.json index 79eddce2..4275877d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1914.json +++ b/src/main/resources/assets/imsm/models/item/useradded1914.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1914","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1914", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1915.json b/src/main/resources/assets/imsm/models/item/useradded1915.json index 6ec007bd..192cc28b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1915.json +++ b/src/main/resources/assets/imsm/models/item/useradded1915.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1915","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1915", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1916.json b/src/main/resources/assets/imsm/models/item/useradded1916.json index 1fb0d86c..406afcfd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1916.json +++ b/src/main/resources/assets/imsm/models/item/useradded1916.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1916","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1916", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1917.json b/src/main/resources/assets/imsm/models/item/useradded1917.json index 32f07422..8002a149 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1917.json +++ b/src/main/resources/assets/imsm/models/item/useradded1917.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1917","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1917", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1918.json b/src/main/resources/assets/imsm/models/item/useradded1918.json index 4f173108..cc3a1149 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1918.json +++ b/src/main/resources/assets/imsm/models/item/useradded1918.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1918","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1918", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1919.json b/src/main/resources/assets/imsm/models/item/useradded1919.json index 30ea7578..16bc293c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1919.json +++ b/src/main/resources/assets/imsm/models/item/useradded1919.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1919","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1919", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded192.json b/src/main/resources/assets/imsm/models/item/useradded192.json index d76d7ae5..4bc4561d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded192.json +++ b/src/main/resources/assets/imsm/models/item/useradded192.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded192","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded192", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1920.json b/src/main/resources/assets/imsm/models/item/useradded1920.json index 754572b8..00a735aa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1920.json +++ b/src/main/resources/assets/imsm/models/item/useradded1920.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1920","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1920", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1921.json b/src/main/resources/assets/imsm/models/item/useradded1921.json index a695d254..2fa2da44 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1921.json +++ b/src/main/resources/assets/imsm/models/item/useradded1921.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1921","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1921", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1922.json b/src/main/resources/assets/imsm/models/item/useradded1922.json index 039981a2..696954f5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1922.json +++ b/src/main/resources/assets/imsm/models/item/useradded1922.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1922","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1922", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1923.json b/src/main/resources/assets/imsm/models/item/useradded1923.json index 9eafee2e..a19473ff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1923.json +++ b/src/main/resources/assets/imsm/models/item/useradded1923.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1923","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1923", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1924.json b/src/main/resources/assets/imsm/models/item/useradded1924.json index dc25bb0f..a72f0fea 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1924.json +++ b/src/main/resources/assets/imsm/models/item/useradded1924.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1924","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1924", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1925.json b/src/main/resources/assets/imsm/models/item/useradded1925.json index 8464b3e1..be7e98e5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1925.json +++ b/src/main/resources/assets/imsm/models/item/useradded1925.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1925","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1925", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1926.json b/src/main/resources/assets/imsm/models/item/useradded1926.json index 86345c98..2d229486 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1926.json +++ b/src/main/resources/assets/imsm/models/item/useradded1926.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1926","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1926", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1927.json b/src/main/resources/assets/imsm/models/item/useradded1927.json index 01db5969..66c52f9e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1927.json +++ b/src/main/resources/assets/imsm/models/item/useradded1927.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1927","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1927", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1928.json b/src/main/resources/assets/imsm/models/item/useradded1928.json index cf491573..872cfbfd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1928.json +++ b/src/main/resources/assets/imsm/models/item/useradded1928.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1928","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1928", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1929.json b/src/main/resources/assets/imsm/models/item/useradded1929.json index 580d4b32..f95267b9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1929.json +++ b/src/main/resources/assets/imsm/models/item/useradded1929.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1929","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1929", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded193.json b/src/main/resources/assets/imsm/models/item/useradded193.json index 79854beb..23726ab0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded193.json +++ b/src/main/resources/assets/imsm/models/item/useradded193.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded193","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded193", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1930.json b/src/main/resources/assets/imsm/models/item/useradded1930.json index c61042d6..b1ec758e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1930.json +++ b/src/main/resources/assets/imsm/models/item/useradded1930.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1930","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1930", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1931.json b/src/main/resources/assets/imsm/models/item/useradded1931.json index f3c79a46..5c3d6f03 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1931.json +++ b/src/main/resources/assets/imsm/models/item/useradded1931.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1931","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1931", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1932.json b/src/main/resources/assets/imsm/models/item/useradded1932.json index 7e97e97f..97f8167f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1932.json +++ b/src/main/resources/assets/imsm/models/item/useradded1932.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1932","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1932", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1933.json b/src/main/resources/assets/imsm/models/item/useradded1933.json index e5e1610f..c8a3d753 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1933.json +++ b/src/main/resources/assets/imsm/models/item/useradded1933.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1933","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1933", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1934.json b/src/main/resources/assets/imsm/models/item/useradded1934.json index 909aa6ac..141b12e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1934.json +++ b/src/main/resources/assets/imsm/models/item/useradded1934.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1934","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1934", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1935.json b/src/main/resources/assets/imsm/models/item/useradded1935.json index c5f31ea0..6e3eed4e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1935.json +++ b/src/main/resources/assets/imsm/models/item/useradded1935.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1935","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1935", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1936.json b/src/main/resources/assets/imsm/models/item/useradded1936.json index 786d8e2e..d98364e1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1936.json +++ b/src/main/resources/assets/imsm/models/item/useradded1936.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1936","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1936", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1937.json b/src/main/resources/assets/imsm/models/item/useradded1937.json index df14e8e0..328cea4f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1937.json +++ b/src/main/resources/assets/imsm/models/item/useradded1937.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1937","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1937", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1938.json b/src/main/resources/assets/imsm/models/item/useradded1938.json index 7b671e2c..7af7b5bc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1938.json +++ b/src/main/resources/assets/imsm/models/item/useradded1938.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1938","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1938", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1939.json b/src/main/resources/assets/imsm/models/item/useradded1939.json index a641af7a..05783fc0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1939.json +++ b/src/main/resources/assets/imsm/models/item/useradded1939.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1939","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1939", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded194.json b/src/main/resources/assets/imsm/models/item/useradded194.json index ef2e0156..72428c43 100644 --- a/src/main/resources/assets/imsm/models/item/useradded194.json +++ b/src/main/resources/assets/imsm/models/item/useradded194.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded194","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded194", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1940.json b/src/main/resources/assets/imsm/models/item/useradded1940.json index bfb0068f..3a4ab6f0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1940.json +++ b/src/main/resources/assets/imsm/models/item/useradded1940.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1940","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1940", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1941.json b/src/main/resources/assets/imsm/models/item/useradded1941.json index 145132c2..911fe592 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1941.json +++ b/src/main/resources/assets/imsm/models/item/useradded1941.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1941","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1941", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1942.json b/src/main/resources/assets/imsm/models/item/useradded1942.json index ba381477..e4324be9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1942.json +++ b/src/main/resources/assets/imsm/models/item/useradded1942.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1942","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1942", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1943.json b/src/main/resources/assets/imsm/models/item/useradded1943.json index 2fd64520..957a43f1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1943.json +++ b/src/main/resources/assets/imsm/models/item/useradded1943.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1943","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1943", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1944.json b/src/main/resources/assets/imsm/models/item/useradded1944.json index eb2392d5..28dbccb8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1944.json +++ b/src/main/resources/assets/imsm/models/item/useradded1944.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1944","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1944", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1945.json b/src/main/resources/assets/imsm/models/item/useradded1945.json index 77fc7a7c..0f74afa7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1945.json +++ b/src/main/resources/assets/imsm/models/item/useradded1945.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1945","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1945", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1946.json b/src/main/resources/assets/imsm/models/item/useradded1946.json index a2aee252..2f7fc18f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1946.json +++ b/src/main/resources/assets/imsm/models/item/useradded1946.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1946","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1946", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1947.json b/src/main/resources/assets/imsm/models/item/useradded1947.json index 4325ed46..01b3f9eb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1947.json +++ b/src/main/resources/assets/imsm/models/item/useradded1947.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1947","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1947", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1948.json b/src/main/resources/assets/imsm/models/item/useradded1948.json index a289b6dc..73b52ead 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1948.json +++ b/src/main/resources/assets/imsm/models/item/useradded1948.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1948","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1948", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1949.json b/src/main/resources/assets/imsm/models/item/useradded1949.json index e0b6adf3..ea7931ca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1949.json +++ b/src/main/resources/assets/imsm/models/item/useradded1949.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1949","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1949", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded195.json b/src/main/resources/assets/imsm/models/item/useradded195.json index a82314d9..ce9f9bda 100644 --- a/src/main/resources/assets/imsm/models/item/useradded195.json +++ b/src/main/resources/assets/imsm/models/item/useradded195.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded195","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded195", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1950.json b/src/main/resources/assets/imsm/models/item/useradded1950.json index 1c17b092..9d499696 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1950.json +++ b/src/main/resources/assets/imsm/models/item/useradded1950.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1950","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1950", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1951.json b/src/main/resources/assets/imsm/models/item/useradded1951.json index 4b63aef6..588e05b7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1951.json +++ b/src/main/resources/assets/imsm/models/item/useradded1951.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1951","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1951", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1952.json b/src/main/resources/assets/imsm/models/item/useradded1952.json index f5ee6f4e..02a2a181 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1952.json +++ b/src/main/resources/assets/imsm/models/item/useradded1952.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1952","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1952", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1953.json b/src/main/resources/assets/imsm/models/item/useradded1953.json index d737ff59..b024660a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1953.json +++ b/src/main/resources/assets/imsm/models/item/useradded1953.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1953","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1953", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1954.json b/src/main/resources/assets/imsm/models/item/useradded1954.json index d0a0738a..94d945d5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1954.json +++ b/src/main/resources/assets/imsm/models/item/useradded1954.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1954","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1954", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1955.json b/src/main/resources/assets/imsm/models/item/useradded1955.json index 115582b1..0050ed47 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1955.json +++ b/src/main/resources/assets/imsm/models/item/useradded1955.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1955","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1955", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1956.json b/src/main/resources/assets/imsm/models/item/useradded1956.json index 520d7bd6..9c702503 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1956.json +++ b/src/main/resources/assets/imsm/models/item/useradded1956.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1956","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1956", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1957.json b/src/main/resources/assets/imsm/models/item/useradded1957.json index f19189ff..b8f1a15e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1957.json +++ b/src/main/resources/assets/imsm/models/item/useradded1957.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1957","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1957", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1958.json b/src/main/resources/assets/imsm/models/item/useradded1958.json index 1321c755..1f47628d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1958.json +++ b/src/main/resources/assets/imsm/models/item/useradded1958.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1958","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1958", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1959.json b/src/main/resources/assets/imsm/models/item/useradded1959.json index f9362610..56ebb8ed 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1959.json +++ b/src/main/resources/assets/imsm/models/item/useradded1959.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1959","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1959", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded196.json b/src/main/resources/assets/imsm/models/item/useradded196.json index f67027af..f92e1fa8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded196.json +++ b/src/main/resources/assets/imsm/models/item/useradded196.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded196","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded196", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1960.json b/src/main/resources/assets/imsm/models/item/useradded1960.json index b751a0b3..e89d7642 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1960.json +++ b/src/main/resources/assets/imsm/models/item/useradded1960.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1960","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1960", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1961.json b/src/main/resources/assets/imsm/models/item/useradded1961.json index d3f7d6c5..34922596 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1961.json +++ b/src/main/resources/assets/imsm/models/item/useradded1961.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1961","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1961", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1962.json b/src/main/resources/assets/imsm/models/item/useradded1962.json index 32f249c7..60e6bd13 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1962.json +++ b/src/main/resources/assets/imsm/models/item/useradded1962.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1962","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1962", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1963.json b/src/main/resources/assets/imsm/models/item/useradded1963.json index 9f661039..df68803d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1963.json +++ b/src/main/resources/assets/imsm/models/item/useradded1963.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1963","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1963", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1964.json b/src/main/resources/assets/imsm/models/item/useradded1964.json index c7b90d55..fecf3cdf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1964.json +++ b/src/main/resources/assets/imsm/models/item/useradded1964.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1964","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1964", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1965.json b/src/main/resources/assets/imsm/models/item/useradded1965.json index 04e62bd5..f60d16ab 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1965.json +++ b/src/main/resources/assets/imsm/models/item/useradded1965.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1965","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1965", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1966.json b/src/main/resources/assets/imsm/models/item/useradded1966.json index 919e0dfd..12e16d38 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1966.json +++ b/src/main/resources/assets/imsm/models/item/useradded1966.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1966","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1966", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1967.json b/src/main/resources/assets/imsm/models/item/useradded1967.json index bc326fa0..a13a6aaf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1967.json +++ b/src/main/resources/assets/imsm/models/item/useradded1967.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1967","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1967", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1968.json b/src/main/resources/assets/imsm/models/item/useradded1968.json index e999ed23..809a3d7e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1968.json +++ b/src/main/resources/assets/imsm/models/item/useradded1968.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1968","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1968", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1969.json b/src/main/resources/assets/imsm/models/item/useradded1969.json index 22d0fcb5..e2801f50 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1969.json +++ b/src/main/resources/assets/imsm/models/item/useradded1969.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1969","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1969", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded197.json b/src/main/resources/assets/imsm/models/item/useradded197.json index cbd7f014..01d2f244 100644 --- a/src/main/resources/assets/imsm/models/item/useradded197.json +++ b/src/main/resources/assets/imsm/models/item/useradded197.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded197","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded197", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1970.json b/src/main/resources/assets/imsm/models/item/useradded1970.json index f0bef910..aabd1fef 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1970.json +++ b/src/main/resources/assets/imsm/models/item/useradded1970.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1970","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1970", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1971.json b/src/main/resources/assets/imsm/models/item/useradded1971.json index 7719892c..0b6b35d6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1971.json +++ b/src/main/resources/assets/imsm/models/item/useradded1971.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1971","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1971", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1972.json b/src/main/resources/assets/imsm/models/item/useradded1972.json index 46601b70..c9687f36 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1972.json +++ b/src/main/resources/assets/imsm/models/item/useradded1972.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1972","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1972", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1973.json b/src/main/resources/assets/imsm/models/item/useradded1973.json index 508187fd..cc847ea0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1973.json +++ b/src/main/resources/assets/imsm/models/item/useradded1973.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1973","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1973", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1974.json b/src/main/resources/assets/imsm/models/item/useradded1974.json index 7fd36e1f..df7d5827 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1974.json +++ b/src/main/resources/assets/imsm/models/item/useradded1974.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1974","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1974", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1975.json b/src/main/resources/assets/imsm/models/item/useradded1975.json index f86d6571..22dfa325 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1975.json +++ b/src/main/resources/assets/imsm/models/item/useradded1975.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1975","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1975", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1976.json b/src/main/resources/assets/imsm/models/item/useradded1976.json index 80bafcd5..2908192d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1976.json +++ b/src/main/resources/assets/imsm/models/item/useradded1976.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1976","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1976", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1977.json b/src/main/resources/assets/imsm/models/item/useradded1977.json index 0aa37cf6..f35b91cb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1977.json +++ b/src/main/resources/assets/imsm/models/item/useradded1977.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1977","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1977", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1978.json b/src/main/resources/assets/imsm/models/item/useradded1978.json index b43f8977..bbb3ef94 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1978.json +++ b/src/main/resources/assets/imsm/models/item/useradded1978.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1978","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1978", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1979.json b/src/main/resources/assets/imsm/models/item/useradded1979.json index 61521fd3..80ebfcae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1979.json +++ b/src/main/resources/assets/imsm/models/item/useradded1979.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1979","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1979", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded198.json b/src/main/resources/assets/imsm/models/item/useradded198.json index f8794177..ef381540 100644 --- a/src/main/resources/assets/imsm/models/item/useradded198.json +++ b/src/main/resources/assets/imsm/models/item/useradded198.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded198","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded198", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1980.json b/src/main/resources/assets/imsm/models/item/useradded1980.json index 16d35a75..a83389b9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1980.json +++ b/src/main/resources/assets/imsm/models/item/useradded1980.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1980","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1980", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1981.json b/src/main/resources/assets/imsm/models/item/useradded1981.json index 08951de2..c879fa39 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1981.json +++ b/src/main/resources/assets/imsm/models/item/useradded1981.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1981","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1981", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1982.json b/src/main/resources/assets/imsm/models/item/useradded1982.json index b521d4f0..f440ea8c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1982.json +++ b/src/main/resources/assets/imsm/models/item/useradded1982.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1982","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1982", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1983.json b/src/main/resources/assets/imsm/models/item/useradded1983.json index 53782e4f..9e5ee310 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1983.json +++ b/src/main/resources/assets/imsm/models/item/useradded1983.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1983","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1983", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1984.json b/src/main/resources/assets/imsm/models/item/useradded1984.json index 482e9486..803ef707 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1984.json +++ b/src/main/resources/assets/imsm/models/item/useradded1984.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1984","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1984", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1985.json b/src/main/resources/assets/imsm/models/item/useradded1985.json index b5ea6e46..91bf01ee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1985.json +++ b/src/main/resources/assets/imsm/models/item/useradded1985.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1985","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1985", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1986.json b/src/main/resources/assets/imsm/models/item/useradded1986.json index 7177cd38..41924281 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1986.json +++ b/src/main/resources/assets/imsm/models/item/useradded1986.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1986","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1986", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1987.json b/src/main/resources/assets/imsm/models/item/useradded1987.json index cf0104da..3bafdbed 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1987.json +++ b/src/main/resources/assets/imsm/models/item/useradded1987.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1987","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1987", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1988.json b/src/main/resources/assets/imsm/models/item/useradded1988.json index a4183c69..701a5766 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1988.json +++ b/src/main/resources/assets/imsm/models/item/useradded1988.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1988","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1988", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1989.json b/src/main/resources/assets/imsm/models/item/useradded1989.json index 57d93ecd..81818385 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1989.json +++ b/src/main/resources/assets/imsm/models/item/useradded1989.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1989","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1989", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded199.json b/src/main/resources/assets/imsm/models/item/useradded199.json index 6809c964..c97e69f7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded199.json +++ b/src/main/resources/assets/imsm/models/item/useradded199.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded199","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded199", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1990.json b/src/main/resources/assets/imsm/models/item/useradded1990.json index 49c6ab62..49ef35d0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1990.json +++ b/src/main/resources/assets/imsm/models/item/useradded1990.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1990","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1990", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1991.json b/src/main/resources/assets/imsm/models/item/useradded1991.json index 01ca1d2a..6c57e057 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1991.json +++ b/src/main/resources/assets/imsm/models/item/useradded1991.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1991","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1991", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1992.json b/src/main/resources/assets/imsm/models/item/useradded1992.json index e46814e3..3baa9b83 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1992.json +++ b/src/main/resources/assets/imsm/models/item/useradded1992.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1992","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1992", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1993.json b/src/main/resources/assets/imsm/models/item/useradded1993.json index 60efdc65..de41cecd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1993.json +++ b/src/main/resources/assets/imsm/models/item/useradded1993.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1993","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1993", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1994.json b/src/main/resources/assets/imsm/models/item/useradded1994.json index 1452884e..bc003e06 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1994.json +++ b/src/main/resources/assets/imsm/models/item/useradded1994.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1994","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1994", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1995.json b/src/main/resources/assets/imsm/models/item/useradded1995.json index 1dd55568..5ee90e5c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1995.json +++ b/src/main/resources/assets/imsm/models/item/useradded1995.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1995","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1995", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1996.json b/src/main/resources/assets/imsm/models/item/useradded1996.json index 18a41402..001f0a38 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1996.json +++ b/src/main/resources/assets/imsm/models/item/useradded1996.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1996","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1996", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1997.json b/src/main/resources/assets/imsm/models/item/useradded1997.json index b1af852b..9374d292 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1997.json +++ b/src/main/resources/assets/imsm/models/item/useradded1997.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1997","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1997", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1998.json b/src/main/resources/assets/imsm/models/item/useradded1998.json index 81613489..b2068cae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1998.json +++ b/src/main/resources/assets/imsm/models/item/useradded1998.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1998","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1998", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded1999.json b/src/main/resources/assets/imsm/models/item/useradded1999.json index e7742581..54b7049a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded1999.json +++ b/src/main/resources/assets/imsm/models/item/useradded1999.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded1999","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded1999", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded2.json b/src/main/resources/assets/imsm/models/item/useradded2.json index 8b5f4c8e..e9ed5466 100644 --- a/src/main/resources/assets/imsm/models/item/useradded2.json +++ b/src/main/resources/assets/imsm/models/item/useradded2.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded2","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded2", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded20.json b/src/main/resources/assets/imsm/models/item/useradded20.json index 690ad936..16687aa8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded20.json +++ b/src/main/resources/assets/imsm/models/item/useradded20.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded20","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded20", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded200.json b/src/main/resources/assets/imsm/models/item/useradded200.json index 04878709..9ec03a03 100644 --- a/src/main/resources/assets/imsm/models/item/useradded200.json +++ b/src/main/resources/assets/imsm/models/item/useradded200.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded200","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded200", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded2000.json b/src/main/resources/assets/imsm/models/item/useradded2000.json index bf3ca3d3..8ef9f9a7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded2000.json +++ b/src/main/resources/assets/imsm/models/item/useradded2000.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded2000","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded2000", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded201.json b/src/main/resources/assets/imsm/models/item/useradded201.json index 0294e3d4..7f057c91 100644 --- a/src/main/resources/assets/imsm/models/item/useradded201.json +++ b/src/main/resources/assets/imsm/models/item/useradded201.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded201","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded201", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded202.json b/src/main/resources/assets/imsm/models/item/useradded202.json index 3d552130..52a09a91 100644 --- a/src/main/resources/assets/imsm/models/item/useradded202.json +++ b/src/main/resources/assets/imsm/models/item/useradded202.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded202","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded202", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded203.json b/src/main/resources/assets/imsm/models/item/useradded203.json index e1b37646..8da2bb3e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded203.json +++ b/src/main/resources/assets/imsm/models/item/useradded203.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded203","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded203", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded204.json b/src/main/resources/assets/imsm/models/item/useradded204.json index ef4c21a8..29111292 100644 --- a/src/main/resources/assets/imsm/models/item/useradded204.json +++ b/src/main/resources/assets/imsm/models/item/useradded204.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded204","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded204", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded205.json b/src/main/resources/assets/imsm/models/item/useradded205.json index 92086937..ea55be51 100644 --- a/src/main/resources/assets/imsm/models/item/useradded205.json +++ b/src/main/resources/assets/imsm/models/item/useradded205.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded205","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded205", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded206.json b/src/main/resources/assets/imsm/models/item/useradded206.json index 91702718..1164f013 100644 --- a/src/main/resources/assets/imsm/models/item/useradded206.json +++ b/src/main/resources/assets/imsm/models/item/useradded206.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded206","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded206", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded207.json b/src/main/resources/assets/imsm/models/item/useradded207.json index 2d6c9229..b990c061 100644 --- a/src/main/resources/assets/imsm/models/item/useradded207.json +++ b/src/main/resources/assets/imsm/models/item/useradded207.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded207","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded207", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded208.json b/src/main/resources/assets/imsm/models/item/useradded208.json index 0332d9c8..629e86c2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded208.json +++ b/src/main/resources/assets/imsm/models/item/useradded208.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded208","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded208", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded209.json b/src/main/resources/assets/imsm/models/item/useradded209.json index b5cdf9ac..83ac2201 100644 --- a/src/main/resources/assets/imsm/models/item/useradded209.json +++ b/src/main/resources/assets/imsm/models/item/useradded209.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded209","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded209", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded21.json b/src/main/resources/assets/imsm/models/item/useradded21.json index 7217a624..76dc4f82 100644 --- a/src/main/resources/assets/imsm/models/item/useradded21.json +++ b/src/main/resources/assets/imsm/models/item/useradded21.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded21","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded21", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded210.json b/src/main/resources/assets/imsm/models/item/useradded210.json index 8811edc0..49bce11f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded210.json +++ b/src/main/resources/assets/imsm/models/item/useradded210.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded210","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded210", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded211.json b/src/main/resources/assets/imsm/models/item/useradded211.json index 61d568f9..b545e387 100644 --- a/src/main/resources/assets/imsm/models/item/useradded211.json +++ b/src/main/resources/assets/imsm/models/item/useradded211.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded211","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded211", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded212.json b/src/main/resources/assets/imsm/models/item/useradded212.json index 57cf69a5..592be387 100644 --- a/src/main/resources/assets/imsm/models/item/useradded212.json +++ b/src/main/resources/assets/imsm/models/item/useradded212.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded212","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded212", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded213.json b/src/main/resources/assets/imsm/models/item/useradded213.json index cb0accca..a32d5aaf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded213.json +++ b/src/main/resources/assets/imsm/models/item/useradded213.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded213","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded213", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded214.json b/src/main/resources/assets/imsm/models/item/useradded214.json index e1e7c3cb..fb1d1913 100644 --- a/src/main/resources/assets/imsm/models/item/useradded214.json +++ b/src/main/resources/assets/imsm/models/item/useradded214.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded214","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded214", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded215.json b/src/main/resources/assets/imsm/models/item/useradded215.json index 226e7358..cf337b5b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded215.json +++ b/src/main/resources/assets/imsm/models/item/useradded215.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded215","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded215", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded216.json b/src/main/resources/assets/imsm/models/item/useradded216.json index 03364ec2..04b5d126 100644 --- a/src/main/resources/assets/imsm/models/item/useradded216.json +++ b/src/main/resources/assets/imsm/models/item/useradded216.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded216","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded216", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded217.json b/src/main/resources/assets/imsm/models/item/useradded217.json index 3bcb335a..0a656f73 100644 --- a/src/main/resources/assets/imsm/models/item/useradded217.json +++ b/src/main/resources/assets/imsm/models/item/useradded217.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded217","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded217", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded218.json b/src/main/resources/assets/imsm/models/item/useradded218.json index c90be741..c90a49af 100644 --- a/src/main/resources/assets/imsm/models/item/useradded218.json +++ b/src/main/resources/assets/imsm/models/item/useradded218.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded218","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded218", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded219.json b/src/main/resources/assets/imsm/models/item/useradded219.json index db7f7aa6..3b20b04f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded219.json +++ b/src/main/resources/assets/imsm/models/item/useradded219.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded219","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded219", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded22.json b/src/main/resources/assets/imsm/models/item/useradded22.json index 3a2cdc37..9bd772d6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded22.json +++ b/src/main/resources/assets/imsm/models/item/useradded22.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded22","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded22", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded220.json b/src/main/resources/assets/imsm/models/item/useradded220.json index 838d85a4..76e0c19b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded220.json +++ b/src/main/resources/assets/imsm/models/item/useradded220.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded220","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded220", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded221.json b/src/main/resources/assets/imsm/models/item/useradded221.json index e0e586a2..c569b8df 100644 --- a/src/main/resources/assets/imsm/models/item/useradded221.json +++ b/src/main/resources/assets/imsm/models/item/useradded221.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded221","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded221", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded222.json b/src/main/resources/assets/imsm/models/item/useradded222.json index 22c09487..459be4c7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded222.json +++ b/src/main/resources/assets/imsm/models/item/useradded222.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded222","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded222", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded223.json b/src/main/resources/assets/imsm/models/item/useradded223.json index ec5567d9..c90eeffd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded223.json +++ b/src/main/resources/assets/imsm/models/item/useradded223.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded223","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded223", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded224.json b/src/main/resources/assets/imsm/models/item/useradded224.json index 025c0334..7c45c55b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded224.json +++ b/src/main/resources/assets/imsm/models/item/useradded224.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded224","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded224", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded225.json b/src/main/resources/assets/imsm/models/item/useradded225.json index f462f9fd..39a2f210 100644 --- a/src/main/resources/assets/imsm/models/item/useradded225.json +++ b/src/main/resources/assets/imsm/models/item/useradded225.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded225","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded225", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded226.json b/src/main/resources/assets/imsm/models/item/useradded226.json index 33f6022f..06525716 100644 --- a/src/main/resources/assets/imsm/models/item/useradded226.json +++ b/src/main/resources/assets/imsm/models/item/useradded226.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded226","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded226", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded227.json b/src/main/resources/assets/imsm/models/item/useradded227.json index 59cb00d5..accccbde 100644 --- a/src/main/resources/assets/imsm/models/item/useradded227.json +++ b/src/main/resources/assets/imsm/models/item/useradded227.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded227","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded227", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded228.json b/src/main/resources/assets/imsm/models/item/useradded228.json index 12f5a4b3..073e2d64 100644 --- a/src/main/resources/assets/imsm/models/item/useradded228.json +++ b/src/main/resources/assets/imsm/models/item/useradded228.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded228","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded228", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded229.json b/src/main/resources/assets/imsm/models/item/useradded229.json index f705300f..ec8d2833 100644 --- a/src/main/resources/assets/imsm/models/item/useradded229.json +++ b/src/main/resources/assets/imsm/models/item/useradded229.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded229","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded229", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded23.json b/src/main/resources/assets/imsm/models/item/useradded23.json index ba06b180..05c6d281 100644 --- a/src/main/resources/assets/imsm/models/item/useradded23.json +++ b/src/main/resources/assets/imsm/models/item/useradded23.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded23","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded23", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded230.json b/src/main/resources/assets/imsm/models/item/useradded230.json index e2a450b9..665fbc6f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded230.json +++ b/src/main/resources/assets/imsm/models/item/useradded230.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded230","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded230", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded231.json b/src/main/resources/assets/imsm/models/item/useradded231.json index f6f7cd94..f99c81e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded231.json +++ b/src/main/resources/assets/imsm/models/item/useradded231.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded231","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded231", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded232.json b/src/main/resources/assets/imsm/models/item/useradded232.json index 1ea1d035..f990ab79 100644 --- a/src/main/resources/assets/imsm/models/item/useradded232.json +++ b/src/main/resources/assets/imsm/models/item/useradded232.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded232","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded232", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded233.json b/src/main/resources/assets/imsm/models/item/useradded233.json index 50eaa20e..55d2429e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded233.json +++ b/src/main/resources/assets/imsm/models/item/useradded233.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded233","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded233", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded234.json b/src/main/resources/assets/imsm/models/item/useradded234.json index 87773efa..42a45bef 100644 --- a/src/main/resources/assets/imsm/models/item/useradded234.json +++ b/src/main/resources/assets/imsm/models/item/useradded234.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded234","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded234", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded235.json b/src/main/resources/assets/imsm/models/item/useradded235.json index 89f63688..4271e4ea 100644 --- a/src/main/resources/assets/imsm/models/item/useradded235.json +++ b/src/main/resources/assets/imsm/models/item/useradded235.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded235","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded235", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded236.json b/src/main/resources/assets/imsm/models/item/useradded236.json index 8b780529..5947b890 100644 --- a/src/main/resources/assets/imsm/models/item/useradded236.json +++ b/src/main/resources/assets/imsm/models/item/useradded236.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded236","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded236", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded237.json b/src/main/resources/assets/imsm/models/item/useradded237.json index 6173a009..704f347a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded237.json +++ b/src/main/resources/assets/imsm/models/item/useradded237.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded237","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded237", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded238.json b/src/main/resources/assets/imsm/models/item/useradded238.json index 12ec82bd..e7e30183 100644 --- a/src/main/resources/assets/imsm/models/item/useradded238.json +++ b/src/main/resources/assets/imsm/models/item/useradded238.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded238","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded238", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded239.json b/src/main/resources/assets/imsm/models/item/useradded239.json index b9358af8..0f2bedac 100644 --- a/src/main/resources/assets/imsm/models/item/useradded239.json +++ b/src/main/resources/assets/imsm/models/item/useradded239.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded239","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded239", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded24.json b/src/main/resources/assets/imsm/models/item/useradded24.json index a125c93c..6c4169e3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded24.json +++ b/src/main/resources/assets/imsm/models/item/useradded24.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded24","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded24", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded240.json b/src/main/resources/assets/imsm/models/item/useradded240.json index 8b75ef6a..26ed7661 100644 --- a/src/main/resources/assets/imsm/models/item/useradded240.json +++ b/src/main/resources/assets/imsm/models/item/useradded240.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded240","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded240", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded241.json b/src/main/resources/assets/imsm/models/item/useradded241.json index 1c993743..5e3406cb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded241.json +++ b/src/main/resources/assets/imsm/models/item/useradded241.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded241","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded241", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded242.json b/src/main/resources/assets/imsm/models/item/useradded242.json index 968aaacf..b16b2c5f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded242.json +++ b/src/main/resources/assets/imsm/models/item/useradded242.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded242","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded242", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded243.json b/src/main/resources/assets/imsm/models/item/useradded243.json index f8be746a..1f77325c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded243.json +++ b/src/main/resources/assets/imsm/models/item/useradded243.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded243","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded243", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded244.json b/src/main/resources/assets/imsm/models/item/useradded244.json index 29cebd9b..ebd96587 100644 --- a/src/main/resources/assets/imsm/models/item/useradded244.json +++ b/src/main/resources/assets/imsm/models/item/useradded244.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded244","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded244", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded245.json b/src/main/resources/assets/imsm/models/item/useradded245.json index 24132953..7d037eff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded245.json +++ b/src/main/resources/assets/imsm/models/item/useradded245.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded245","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded245", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded246.json b/src/main/resources/assets/imsm/models/item/useradded246.json index 72fa6239..5eef27b9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded246.json +++ b/src/main/resources/assets/imsm/models/item/useradded246.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded246","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded246", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded247.json b/src/main/resources/assets/imsm/models/item/useradded247.json index 7ddb377e..75e91850 100644 --- a/src/main/resources/assets/imsm/models/item/useradded247.json +++ b/src/main/resources/assets/imsm/models/item/useradded247.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded247","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded247", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded248.json b/src/main/resources/assets/imsm/models/item/useradded248.json index 69fd2b03..243a1bfb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded248.json +++ b/src/main/resources/assets/imsm/models/item/useradded248.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded248","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded248", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded249.json b/src/main/resources/assets/imsm/models/item/useradded249.json index 258705a7..1fc2d4a5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded249.json +++ b/src/main/resources/assets/imsm/models/item/useradded249.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded249","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded249", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded25.json b/src/main/resources/assets/imsm/models/item/useradded25.json index f62e27f6..d59a0060 100644 --- a/src/main/resources/assets/imsm/models/item/useradded25.json +++ b/src/main/resources/assets/imsm/models/item/useradded25.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded25","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded25", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded250.json b/src/main/resources/assets/imsm/models/item/useradded250.json index cdf2744b..17e91ff5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded250.json +++ b/src/main/resources/assets/imsm/models/item/useradded250.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded250","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded250", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded251.json b/src/main/resources/assets/imsm/models/item/useradded251.json index dc18eeee..eaa7a880 100644 --- a/src/main/resources/assets/imsm/models/item/useradded251.json +++ b/src/main/resources/assets/imsm/models/item/useradded251.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded251","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded251", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded252.json b/src/main/resources/assets/imsm/models/item/useradded252.json index 32de8b72..d47df1bc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded252.json +++ b/src/main/resources/assets/imsm/models/item/useradded252.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded252","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded252", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded253.json b/src/main/resources/assets/imsm/models/item/useradded253.json index 64057e4b..6952afb6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded253.json +++ b/src/main/resources/assets/imsm/models/item/useradded253.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded253","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded253", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded254.json b/src/main/resources/assets/imsm/models/item/useradded254.json index 56f5fe3e..c12881ba 100644 --- a/src/main/resources/assets/imsm/models/item/useradded254.json +++ b/src/main/resources/assets/imsm/models/item/useradded254.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded254","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded254", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded255.json b/src/main/resources/assets/imsm/models/item/useradded255.json index dd3ceb20..12d4776b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded255.json +++ b/src/main/resources/assets/imsm/models/item/useradded255.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded255","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded255", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded256.json b/src/main/resources/assets/imsm/models/item/useradded256.json index dd92aa71..7c59b14a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded256.json +++ b/src/main/resources/assets/imsm/models/item/useradded256.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded256","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded256", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded257.json b/src/main/resources/assets/imsm/models/item/useradded257.json index c57a98b3..f22a34e2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded257.json +++ b/src/main/resources/assets/imsm/models/item/useradded257.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded257","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded257", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded258.json b/src/main/resources/assets/imsm/models/item/useradded258.json index 5424b3ee..086305ab 100644 --- a/src/main/resources/assets/imsm/models/item/useradded258.json +++ b/src/main/resources/assets/imsm/models/item/useradded258.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded258","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded258", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded259.json b/src/main/resources/assets/imsm/models/item/useradded259.json index 46c11083..7e1ef700 100644 --- a/src/main/resources/assets/imsm/models/item/useradded259.json +++ b/src/main/resources/assets/imsm/models/item/useradded259.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded259","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded259", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded26.json b/src/main/resources/assets/imsm/models/item/useradded26.json index 1d4c900c..48ff806a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded26.json +++ b/src/main/resources/assets/imsm/models/item/useradded26.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded26","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded26", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded260.json b/src/main/resources/assets/imsm/models/item/useradded260.json index 30adc8e9..55c9c5f4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded260.json +++ b/src/main/resources/assets/imsm/models/item/useradded260.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded260","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded260", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded261.json b/src/main/resources/assets/imsm/models/item/useradded261.json index fa5b0ae6..be40f066 100644 --- a/src/main/resources/assets/imsm/models/item/useradded261.json +++ b/src/main/resources/assets/imsm/models/item/useradded261.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded261","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded261", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded262.json b/src/main/resources/assets/imsm/models/item/useradded262.json index 5e94c411..e41c49f0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded262.json +++ b/src/main/resources/assets/imsm/models/item/useradded262.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded262","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded262", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded263.json b/src/main/resources/assets/imsm/models/item/useradded263.json index c515806c..aa031a7d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded263.json +++ b/src/main/resources/assets/imsm/models/item/useradded263.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded263","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded263", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded264.json b/src/main/resources/assets/imsm/models/item/useradded264.json index a1dc9b30..2a1c31a2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded264.json +++ b/src/main/resources/assets/imsm/models/item/useradded264.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded264","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded264", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded265.json b/src/main/resources/assets/imsm/models/item/useradded265.json index eec58d3c..0ccf633e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded265.json +++ b/src/main/resources/assets/imsm/models/item/useradded265.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded265","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded265", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded266.json b/src/main/resources/assets/imsm/models/item/useradded266.json index bd39d92c..a25fd710 100644 --- a/src/main/resources/assets/imsm/models/item/useradded266.json +++ b/src/main/resources/assets/imsm/models/item/useradded266.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded266","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded266", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded267.json b/src/main/resources/assets/imsm/models/item/useradded267.json index abd876dd..decb7e6f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded267.json +++ b/src/main/resources/assets/imsm/models/item/useradded267.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded267","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded267", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded268.json b/src/main/resources/assets/imsm/models/item/useradded268.json index bf794bc8..2abf2193 100644 --- a/src/main/resources/assets/imsm/models/item/useradded268.json +++ b/src/main/resources/assets/imsm/models/item/useradded268.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded268","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded268", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded269.json b/src/main/resources/assets/imsm/models/item/useradded269.json index 7f208110..526f9844 100644 --- a/src/main/resources/assets/imsm/models/item/useradded269.json +++ b/src/main/resources/assets/imsm/models/item/useradded269.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded269","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded269", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded27.json b/src/main/resources/assets/imsm/models/item/useradded27.json index 0299dcfa..198c5a0f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded27.json +++ b/src/main/resources/assets/imsm/models/item/useradded27.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded27","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded27", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded270.json b/src/main/resources/assets/imsm/models/item/useradded270.json index 39566bcd..4bb4a23c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded270.json +++ b/src/main/resources/assets/imsm/models/item/useradded270.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded270","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded270", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded271.json b/src/main/resources/assets/imsm/models/item/useradded271.json index 91ac87d5..d1e6cf09 100644 --- a/src/main/resources/assets/imsm/models/item/useradded271.json +++ b/src/main/resources/assets/imsm/models/item/useradded271.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded271","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded271", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded272.json b/src/main/resources/assets/imsm/models/item/useradded272.json index 0a7e2c32..19acfbd5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded272.json +++ b/src/main/resources/assets/imsm/models/item/useradded272.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded272","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded272", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded273.json b/src/main/resources/assets/imsm/models/item/useradded273.json index c8cb73b3..634f7315 100644 --- a/src/main/resources/assets/imsm/models/item/useradded273.json +++ b/src/main/resources/assets/imsm/models/item/useradded273.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded273","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded273", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded274.json b/src/main/resources/assets/imsm/models/item/useradded274.json index 3a381965..265f2945 100644 --- a/src/main/resources/assets/imsm/models/item/useradded274.json +++ b/src/main/resources/assets/imsm/models/item/useradded274.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded274","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded274", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded275.json b/src/main/resources/assets/imsm/models/item/useradded275.json index 3ded06bd..9b74b74e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded275.json +++ b/src/main/resources/assets/imsm/models/item/useradded275.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded275","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded275", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded276.json b/src/main/resources/assets/imsm/models/item/useradded276.json index 1804d913..e6616825 100644 --- a/src/main/resources/assets/imsm/models/item/useradded276.json +++ b/src/main/resources/assets/imsm/models/item/useradded276.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded276","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded276", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded277.json b/src/main/resources/assets/imsm/models/item/useradded277.json index d45491d5..29d9860e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded277.json +++ b/src/main/resources/assets/imsm/models/item/useradded277.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded277","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded277", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded278.json b/src/main/resources/assets/imsm/models/item/useradded278.json index 934e71c7..f409ce37 100644 --- a/src/main/resources/assets/imsm/models/item/useradded278.json +++ b/src/main/resources/assets/imsm/models/item/useradded278.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded278","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded278", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded279.json b/src/main/resources/assets/imsm/models/item/useradded279.json index 83205548..c0039393 100644 --- a/src/main/resources/assets/imsm/models/item/useradded279.json +++ b/src/main/resources/assets/imsm/models/item/useradded279.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded279","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded279", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded28.json b/src/main/resources/assets/imsm/models/item/useradded28.json index 4cb18f4d..9810c229 100644 --- a/src/main/resources/assets/imsm/models/item/useradded28.json +++ b/src/main/resources/assets/imsm/models/item/useradded28.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded28","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded28", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded280.json b/src/main/resources/assets/imsm/models/item/useradded280.json index c964a59c..296fe38b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded280.json +++ b/src/main/resources/assets/imsm/models/item/useradded280.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded280","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded280", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded281.json b/src/main/resources/assets/imsm/models/item/useradded281.json index 6fe7f259..f6fbbfeb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded281.json +++ b/src/main/resources/assets/imsm/models/item/useradded281.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded281","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded281", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded282.json b/src/main/resources/assets/imsm/models/item/useradded282.json index 61f7b6c6..1822e288 100644 --- a/src/main/resources/assets/imsm/models/item/useradded282.json +++ b/src/main/resources/assets/imsm/models/item/useradded282.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded282","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded282", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded283.json b/src/main/resources/assets/imsm/models/item/useradded283.json index d8bc72c9..8a544182 100644 --- a/src/main/resources/assets/imsm/models/item/useradded283.json +++ b/src/main/resources/assets/imsm/models/item/useradded283.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded283","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded283", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded284.json b/src/main/resources/assets/imsm/models/item/useradded284.json index 288bab5e..2cbf945d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded284.json +++ b/src/main/resources/assets/imsm/models/item/useradded284.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded284","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded284", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded285.json b/src/main/resources/assets/imsm/models/item/useradded285.json index 11db2b81..2a133e83 100644 --- a/src/main/resources/assets/imsm/models/item/useradded285.json +++ b/src/main/resources/assets/imsm/models/item/useradded285.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded285","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded285", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded286.json b/src/main/resources/assets/imsm/models/item/useradded286.json index 891753be..41715669 100644 --- a/src/main/resources/assets/imsm/models/item/useradded286.json +++ b/src/main/resources/assets/imsm/models/item/useradded286.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded286","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded286", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded287.json b/src/main/resources/assets/imsm/models/item/useradded287.json index d4082d8c..492b3e9b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded287.json +++ b/src/main/resources/assets/imsm/models/item/useradded287.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded287","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded287", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded288.json b/src/main/resources/assets/imsm/models/item/useradded288.json index 44aa0fd3..9a6e6d7e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded288.json +++ b/src/main/resources/assets/imsm/models/item/useradded288.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded288","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded288", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded289.json b/src/main/resources/assets/imsm/models/item/useradded289.json index 88d3daf7..767ee8d2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded289.json +++ b/src/main/resources/assets/imsm/models/item/useradded289.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded289","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded289", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded29.json b/src/main/resources/assets/imsm/models/item/useradded29.json index 05929524..d45d00ff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded29.json +++ b/src/main/resources/assets/imsm/models/item/useradded29.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded29","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded29", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded290.json b/src/main/resources/assets/imsm/models/item/useradded290.json index 270f930e..cdf274dc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded290.json +++ b/src/main/resources/assets/imsm/models/item/useradded290.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded290","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded290", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded291.json b/src/main/resources/assets/imsm/models/item/useradded291.json index 17c848ac..64c3aec9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded291.json +++ b/src/main/resources/assets/imsm/models/item/useradded291.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded291","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded291", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded292.json b/src/main/resources/assets/imsm/models/item/useradded292.json index 036e9ed0..41bacaad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded292.json +++ b/src/main/resources/assets/imsm/models/item/useradded292.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded292","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded292", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded293.json b/src/main/resources/assets/imsm/models/item/useradded293.json index b756161d..45c32cf3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded293.json +++ b/src/main/resources/assets/imsm/models/item/useradded293.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded293","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded293", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded294.json b/src/main/resources/assets/imsm/models/item/useradded294.json index da22ab5d..dcaca9c1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded294.json +++ b/src/main/resources/assets/imsm/models/item/useradded294.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded294","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded294", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded295.json b/src/main/resources/assets/imsm/models/item/useradded295.json index 2270f107..153d5fe4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded295.json +++ b/src/main/resources/assets/imsm/models/item/useradded295.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded295","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded295", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded296.json b/src/main/resources/assets/imsm/models/item/useradded296.json index d8f186ba..5e1915b5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded296.json +++ b/src/main/resources/assets/imsm/models/item/useradded296.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded296","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded296", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded297.json b/src/main/resources/assets/imsm/models/item/useradded297.json index 70659b47..f6349412 100644 --- a/src/main/resources/assets/imsm/models/item/useradded297.json +++ b/src/main/resources/assets/imsm/models/item/useradded297.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded297","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded297", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded298.json b/src/main/resources/assets/imsm/models/item/useradded298.json index 24845a30..f04a35f2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded298.json +++ b/src/main/resources/assets/imsm/models/item/useradded298.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded298","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded298", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded299.json b/src/main/resources/assets/imsm/models/item/useradded299.json index ad9e1abc..efb1c388 100644 --- a/src/main/resources/assets/imsm/models/item/useradded299.json +++ b/src/main/resources/assets/imsm/models/item/useradded299.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded299","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded299", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded3.json b/src/main/resources/assets/imsm/models/item/useradded3.json index ee5fad8a..ea15d0e1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded3.json +++ b/src/main/resources/assets/imsm/models/item/useradded3.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded3","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded3", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded30.json b/src/main/resources/assets/imsm/models/item/useradded30.json index 096d3f50..2f1a0aa6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded30.json +++ b/src/main/resources/assets/imsm/models/item/useradded30.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded30","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded30", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded300.json b/src/main/resources/assets/imsm/models/item/useradded300.json index cce160b1..7776cdce 100644 --- a/src/main/resources/assets/imsm/models/item/useradded300.json +++ b/src/main/resources/assets/imsm/models/item/useradded300.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded300","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded300", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded301.json b/src/main/resources/assets/imsm/models/item/useradded301.json index 5218791f..7eec8940 100644 --- a/src/main/resources/assets/imsm/models/item/useradded301.json +++ b/src/main/resources/assets/imsm/models/item/useradded301.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded301","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded301", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded302.json b/src/main/resources/assets/imsm/models/item/useradded302.json index c75c3793..9decdc02 100644 --- a/src/main/resources/assets/imsm/models/item/useradded302.json +++ b/src/main/resources/assets/imsm/models/item/useradded302.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded302","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded302", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded303.json b/src/main/resources/assets/imsm/models/item/useradded303.json index 5ba8fb5b..dcbf1356 100644 --- a/src/main/resources/assets/imsm/models/item/useradded303.json +++ b/src/main/resources/assets/imsm/models/item/useradded303.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded303","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded303", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded304.json b/src/main/resources/assets/imsm/models/item/useradded304.json index 0d6f0ff8..e1ce80d9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded304.json +++ b/src/main/resources/assets/imsm/models/item/useradded304.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded304","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded304", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded305.json b/src/main/resources/assets/imsm/models/item/useradded305.json index 7c70fca9..c6b55590 100644 --- a/src/main/resources/assets/imsm/models/item/useradded305.json +++ b/src/main/resources/assets/imsm/models/item/useradded305.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded305","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded305", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded306.json b/src/main/resources/assets/imsm/models/item/useradded306.json index 31828083..78126310 100644 --- a/src/main/resources/assets/imsm/models/item/useradded306.json +++ b/src/main/resources/assets/imsm/models/item/useradded306.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded306","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded306", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded307.json b/src/main/resources/assets/imsm/models/item/useradded307.json index fad7dc57..d250aac6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded307.json +++ b/src/main/resources/assets/imsm/models/item/useradded307.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded307","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded307", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded308.json b/src/main/resources/assets/imsm/models/item/useradded308.json index caea5f12..66732c5c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded308.json +++ b/src/main/resources/assets/imsm/models/item/useradded308.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded308","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded308", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded309.json b/src/main/resources/assets/imsm/models/item/useradded309.json index 1ea90936..12ac6870 100644 --- a/src/main/resources/assets/imsm/models/item/useradded309.json +++ b/src/main/resources/assets/imsm/models/item/useradded309.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded309","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded309", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded31.json b/src/main/resources/assets/imsm/models/item/useradded31.json index 6a13ccdd..3831e007 100644 --- a/src/main/resources/assets/imsm/models/item/useradded31.json +++ b/src/main/resources/assets/imsm/models/item/useradded31.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded31","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded31", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded310.json b/src/main/resources/assets/imsm/models/item/useradded310.json index ef921dc7..4c9cfc39 100644 --- a/src/main/resources/assets/imsm/models/item/useradded310.json +++ b/src/main/resources/assets/imsm/models/item/useradded310.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded310","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded310", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded311.json b/src/main/resources/assets/imsm/models/item/useradded311.json index 04f97499..42ad4c39 100644 --- a/src/main/resources/assets/imsm/models/item/useradded311.json +++ b/src/main/resources/assets/imsm/models/item/useradded311.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded311","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded311", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded312.json b/src/main/resources/assets/imsm/models/item/useradded312.json index 63c7318f..ccd6974c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded312.json +++ b/src/main/resources/assets/imsm/models/item/useradded312.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded312","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded312", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded313.json b/src/main/resources/assets/imsm/models/item/useradded313.json index b74b5dad..2daf4135 100644 --- a/src/main/resources/assets/imsm/models/item/useradded313.json +++ b/src/main/resources/assets/imsm/models/item/useradded313.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded313","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded313", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded314.json b/src/main/resources/assets/imsm/models/item/useradded314.json index 5548dafb..ea18984d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded314.json +++ b/src/main/resources/assets/imsm/models/item/useradded314.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded314","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded314", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded315.json b/src/main/resources/assets/imsm/models/item/useradded315.json index 934e4b70..b1244929 100644 --- a/src/main/resources/assets/imsm/models/item/useradded315.json +++ b/src/main/resources/assets/imsm/models/item/useradded315.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded315","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded315", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded316.json b/src/main/resources/assets/imsm/models/item/useradded316.json index dd79d9f8..ae0667bf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded316.json +++ b/src/main/resources/assets/imsm/models/item/useradded316.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded316","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded316", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded317.json b/src/main/resources/assets/imsm/models/item/useradded317.json index 12f4a022..2c5587bb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded317.json +++ b/src/main/resources/assets/imsm/models/item/useradded317.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded317","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded317", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded318.json b/src/main/resources/assets/imsm/models/item/useradded318.json index efed2656..f8c8b4ca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded318.json +++ b/src/main/resources/assets/imsm/models/item/useradded318.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded318","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded318", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded319.json b/src/main/resources/assets/imsm/models/item/useradded319.json index 00cd1c9a..b75e8b46 100644 --- a/src/main/resources/assets/imsm/models/item/useradded319.json +++ b/src/main/resources/assets/imsm/models/item/useradded319.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded319","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded319", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded32.json b/src/main/resources/assets/imsm/models/item/useradded32.json index 1c733859..c56d24eb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded32.json +++ b/src/main/resources/assets/imsm/models/item/useradded32.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded32","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded32", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded320.json b/src/main/resources/assets/imsm/models/item/useradded320.json index cbc732f3..9df24442 100644 --- a/src/main/resources/assets/imsm/models/item/useradded320.json +++ b/src/main/resources/assets/imsm/models/item/useradded320.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded320","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded320", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded321.json b/src/main/resources/assets/imsm/models/item/useradded321.json index 739d7852..02d3f5bf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded321.json +++ b/src/main/resources/assets/imsm/models/item/useradded321.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded321","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded321", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded322.json b/src/main/resources/assets/imsm/models/item/useradded322.json index 7dd7a91f..3d6bff7b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded322.json +++ b/src/main/resources/assets/imsm/models/item/useradded322.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded322","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded322", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded323.json b/src/main/resources/assets/imsm/models/item/useradded323.json index e289919f..db7e3ba5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded323.json +++ b/src/main/resources/assets/imsm/models/item/useradded323.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded323","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded323", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded324.json b/src/main/resources/assets/imsm/models/item/useradded324.json index d1fc9829..58c60c86 100644 --- a/src/main/resources/assets/imsm/models/item/useradded324.json +++ b/src/main/resources/assets/imsm/models/item/useradded324.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded324","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded324", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded325.json b/src/main/resources/assets/imsm/models/item/useradded325.json index ee9fdd71..041e67c8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded325.json +++ b/src/main/resources/assets/imsm/models/item/useradded325.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded325","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded325", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded326.json b/src/main/resources/assets/imsm/models/item/useradded326.json index 07ffe995..516ea0a1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded326.json +++ b/src/main/resources/assets/imsm/models/item/useradded326.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded326","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded326", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded327.json b/src/main/resources/assets/imsm/models/item/useradded327.json index ecd8bc4c..73f83213 100644 --- a/src/main/resources/assets/imsm/models/item/useradded327.json +++ b/src/main/resources/assets/imsm/models/item/useradded327.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded327","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded327", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded328.json b/src/main/resources/assets/imsm/models/item/useradded328.json index d4e3ff28..ae8665ac 100644 --- a/src/main/resources/assets/imsm/models/item/useradded328.json +++ b/src/main/resources/assets/imsm/models/item/useradded328.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded328","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded328", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded329.json b/src/main/resources/assets/imsm/models/item/useradded329.json index e20fb57d..ac98a1a5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded329.json +++ b/src/main/resources/assets/imsm/models/item/useradded329.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded329","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded329", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded33.json b/src/main/resources/assets/imsm/models/item/useradded33.json index 72bc68da..06a9d65f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded33.json +++ b/src/main/resources/assets/imsm/models/item/useradded33.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded33","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded33", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded330.json b/src/main/resources/assets/imsm/models/item/useradded330.json index dfff6873..94607e41 100644 --- a/src/main/resources/assets/imsm/models/item/useradded330.json +++ b/src/main/resources/assets/imsm/models/item/useradded330.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded330","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded330", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded331.json b/src/main/resources/assets/imsm/models/item/useradded331.json index c68f7be8..17a480a0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded331.json +++ b/src/main/resources/assets/imsm/models/item/useradded331.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded331","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded331", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded332.json b/src/main/resources/assets/imsm/models/item/useradded332.json index e050db65..a6b07fe7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded332.json +++ b/src/main/resources/assets/imsm/models/item/useradded332.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded332","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded332", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded333.json b/src/main/resources/assets/imsm/models/item/useradded333.json index edabed0d..e3c002c5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded333.json +++ b/src/main/resources/assets/imsm/models/item/useradded333.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded333","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded333", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded334.json b/src/main/resources/assets/imsm/models/item/useradded334.json index 82743783..c15d3e05 100644 --- a/src/main/resources/assets/imsm/models/item/useradded334.json +++ b/src/main/resources/assets/imsm/models/item/useradded334.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded334","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded334", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded335.json b/src/main/resources/assets/imsm/models/item/useradded335.json index 79998e51..f44d66b8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded335.json +++ b/src/main/resources/assets/imsm/models/item/useradded335.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded335","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded335", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded336.json b/src/main/resources/assets/imsm/models/item/useradded336.json index c5acf6a4..df54dad3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded336.json +++ b/src/main/resources/assets/imsm/models/item/useradded336.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded336","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded336", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded337.json b/src/main/resources/assets/imsm/models/item/useradded337.json index aafabf11..46f79735 100644 --- a/src/main/resources/assets/imsm/models/item/useradded337.json +++ b/src/main/resources/assets/imsm/models/item/useradded337.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded337","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded337", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded338.json b/src/main/resources/assets/imsm/models/item/useradded338.json index 57ef7029..36adf7d3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded338.json +++ b/src/main/resources/assets/imsm/models/item/useradded338.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded338","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded338", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded339.json b/src/main/resources/assets/imsm/models/item/useradded339.json index 31097858..fb988923 100644 --- a/src/main/resources/assets/imsm/models/item/useradded339.json +++ b/src/main/resources/assets/imsm/models/item/useradded339.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded339","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded339", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded34.json b/src/main/resources/assets/imsm/models/item/useradded34.json index 7a711a4c..c78ddc17 100644 --- a/src/main/resources/assets/imsm/models/item/useradded34.json +++ b/src/main/resources/assets/imsm/models/item/useradded34.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded34","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded34", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded340.json b/src/main/resources/assets/imsm/models/item/useradded340.json index 9f27f944..9b8e1cce 100644 --- a/src/main/resources/assets/imsm/models/item/useradded340.json +++ b/src/main/resources/assets/imsm/models/item/useradded340.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded340","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded340", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded341.json b/src/main/resources/assets/imsm/models/item/useradded341.json index 8a147c12..9a3929e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded341.json +++ b/src/main/resources/assets/imsm/models/item/useradded341.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded341","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded341", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded342.json b/src/main/resources/assets/imsm/models/item/useradded342.json index 8b01850b..ace32c00 100644 --- a/src/main/resources/assets/imsm/models/item/useradded342.json +++ b/src/main/resources/assets/imsm/models/item/useradded342.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded342","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded342", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded343.json b/src/main/resources/assets/imsm/models/item/useradded343.json index 2d48bf22..7ae24eff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded343.json +++ b/src/main/resources/assets/imsm/models/item/useradded343.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded343","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded343", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded344.json b/src/main/resources/assets/imsm/models/item/useradded344.json index 7aa85420..e5d9b565 100644 --- a/src/main/resources/assets/imsm/models/item/useradded344.json +++ b/src/main/resources/assets/imsm/models/item/useradded344.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded344","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded344", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded345.json b/src/main/resources/assets/imsm/models/item/useradded345.json index eb30adcb..9115fb9c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded345.json +++ b/src/main/resources/assets/imsm/models/item/useradded345.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded345","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded345", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded346.json b/src/main/resources/assets/imsm/models/item/useradded346.json index 2efb4da5..a88a5ec4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded346.json +++ b/src/main/resources/assets/imsm/models/item/useradded346.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded346","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded346", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded347.json b/src/main/resources/assets/imsm/models/item/useradded347.json index 1b233414..e59898fd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded347.json +++ b/src/main/resources/assets/imsm/models/item/useradded347.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded347","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded347", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded348.json b/src/main/resources/assets/imsm/models/item/useradded348.json index 9d0135fd..07a3319e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded348.json +++ b/src/main/resources/assets/imsm/models/item/useradded348.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded348","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded348", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded349.json b/src/main/resources/assets/imsm/models/item/useradded349.json index b60d2428..4eb3bb5b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded349.json +++ b/src/main/resources/assets/imsm/models/item/useradded349.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded349","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded349", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded35.json b/src/main/resources/assets/imsm/models/item/useradded35.json index 09c266f8..d9481af1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded35.json +++ b/src/main/resources/assets/imsm/models/item/useradded35.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded35","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded35", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded350.json b/src/main/resources/assets/imsm/models/item/useradded350.json index 522c5671..9854f090 100644 --- a/src/main/resources/assets/imsm/models/item/useradded350.json +++ b/src/main/resources/assets/imsm/models/item/useradded350.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded350","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded350", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded351.json b/src/main/resources/assets/imsm/models/item/useradded351.json index 9d532716..a32f926f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded351.json +++ b/src/main/resources/assets/imsm/models/item/useradded351.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded351","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded351", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded352.json b/src/main/resources/assets/imsm/models/item/useradded352.json index 9202f648..6611df93 100644 --- a/src/main/resources/assets/imsm/models/item/useradded352.json +++ b/src/main/resources/assets/imsm/models/item/useradded352.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded352","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded352", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded353.json b/src/main/resources/assets/imsm/models/item/useradded353.json index 7593eeb1..36afe864 100644 --- a/src/main/resources/assets/imsm/models/item/useradded353.json +++ b/src/main/resources/assets/imsm/models/item/useradded353.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded353","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded353", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded354.json b/src/main/resources/assets/imsm/models/item/useradded354.json index f18445ab..22f7498a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded354.json +++ b/src/main/resources/assets/imsm/models/item/useradded354.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded354","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded354", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded355.json b/src/main/resources/assets/imsm/models/item/useradded355.json index be5d2c16..64c2b5ab 100644 --- a/src/main/resources/assets/imsm/models/item/useradded355.json +++ b/src/main/resources/assets/imsm/models/item/useradded355.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded355","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded355", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded356.json b/src/main/resources/assets/imsm/models/item/useradded356.json index 2a14c8c5..f31b1335 100644 --- a/src/main/resources/assets/imsm/models/item/useradded356.json +++ b/src/main/resources/assets/imsm/models/item/useradded356.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded356","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded356", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded357.json b/src/main/resources/assets/imsm/models/item/useradded357.json index 0130eec8..4e476612 100644 --- a/src/main/resources/assets/imsm/models/item/useradded357.json +++ b/src/main/resources/assets/imsm/models/item/useradded357.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded357","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded357", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded358.json b/src/main/resources/assets/imsm/models/item/useradded358.json index 354daace..45dd598b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded358.json +++ b/src/main/resources/assets/imsm/models/item/useradded358.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded358","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded358", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded359.json b/src/main/resources/assets/imsm/models/item/useradded359.json index ab9eaed4..51d53d54 100644 --- a/src/main/resources/assets/imsm/models/item/useradded359.json +++ b/src/main/resources/assets/imsm/models/item/useradded359.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded359","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded359", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded36.json b/src/main/resources/assets/imsm/models/item/useradded36.json index 53903ef3..3eae43f1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded36.json +++ b/src/main/resources/assets/imsm/models/item/useradded36.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded36","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded36", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded360.json b/src/main/resources/assets/imsm/models/item/useradded360.json index ced0d092..d5097d0a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded360.json +++ b/src/main/resources/assets/imsm/models/item/useradded360.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded360","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded360", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded361.json b/src/main/resources/assets/imsm/models/item/useradded361.json index 57a9d226..fe9fd93f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded361.json +++ b/src/main/resources/assets/imsm/models/item/useradded361.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded361","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded361", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded362.json b/src/main/resources/assets/imsm/models/item/useradded362.json index 17fb34e3..c87709d8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded362.json +++ b/src/main/resources/assets/imsm/models/item/useradded362.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded362","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded362", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded363.json b/src/main/resources/assets/imsm/models/item/useradded363.json index b3afda63..933bb1ee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded363.json +++ b/src/main/resources/assets/imsm/models/item/useradded363.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded363","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded363", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded364.json b/src/main/resources/assets/imsm/models/item/useradded364.json index 218043b4..a22389a6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded364.json +++ b/src/main/resources/assets/imsm/models/item/useradded364.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded364","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded364", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded365.json b/src/main/resources/assets/imsm/models/item/useradded365.json index a75116d4..efc069e9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded365.json +++ b/src/main/resources/assets/imsm/models/item/useradded365.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded365","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded365", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded366.json b/src/main/resources/assets/imsm/models/item/useradded366.json index bb760ca1..c068ab8e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded366.json +++ b/src/main/resources/assets/imsm/models/item/useradded366.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded366","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded366", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded367.json b/src/main/resources/assets/imsm/models/item/useradded367.json index 12d5adb5..78d3ce30 100644 --- a/src/main/resources/assets/imsm/models/item/useradded367.json +++ b/src/main/resources/assets/imsm/models/item/useradded367.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded367","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded367", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded368.json b/src/main/resources/assets/imsm/models/item/useradded368.json index 7e0b4966..57ac291d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded368.json +++ b/src/main/resources/assets/imsm/models/item/useradded368.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded368","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded368", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded369.json b/src/main/resources/assets/imsm/models/item/useradded369.json index b1bc9fc6..5ed95258 100644 --- a/src/main/resources/assets/imsm/models/item/useradded369.json +++ b/src/main/resources/assets/imsm/models/item/useradded369.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded369","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded369", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded37.json b/src/main/resources/assets/imsm/models/item/useradded37.json index 200357bc..3db3fd73 100644 --- a/src/main/resources/assets/imsm/models/item/useradded37.json +++ b/src/main/resources/assets/imsm/models/item/useradded37.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded37","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded37", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded370.json b/src/main/resources/assets/imsm/models/item/useradded370.json index 286f8ff4..aa8f8274 100644 --- a/src/main/resources/assets/imsm/models/item/useradded370.json +++ b/src/main/resources/assets/imsm/models/item/useradded370.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded370","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded370", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded371.json b/src/main/resources/assets/imsm/models/item/useradded371.json index 9370576c..1a4ae537 100644 --- a/src/main/resources/assets/imsm/models/item/useradded371.json +++ b/src/main/resources/assets/imsm/models/item/useradded371.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded371","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded371", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded372.json b/src/main/resources/assets/imsm/models/item/useradded372.json index b3332b37..5bc24c95 100644 --- a/src/main/resources/assets/imsm/models/item/useradded372.json +++ b/src/main/resources/assets/imsm/models/item/useradded372.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded372","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded372", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded373.json b/src/main/resources/assets/imsm/models/item/useradded373.json index b09cf3f8..72afb546 100644 --- a/src/main/resources/assets/imsm/models/item/useradded373.json +++ b/src/main/resources/assets/imsm/models/item/useradded373.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded373","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded373", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded374.json b/src/main/resources/assets/imsm/models/item/useradded374.json index 91fb16e4..22eab613 100644 --- a/src/main/resources/assets/imsm/models/item/useradded374.json +++ b/src/main/resources/assets/imsm/models/item/useradded374.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded374","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded374", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded375.json b/src/main/resources/assets/imsm/models/item/useradded375.json index 94fc78a5..c36f40f8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded375.json +++ b/src/main/resources/assets/imsm/models/item/useradded375.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded375","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded375", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded376.json b/src/main/resources/assets/imsm/models/item/useradded376.json index b92efa98..bcdd79bf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded376.json +++ b/src/main/resources/assets/imsm/models/item/useradded376.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded376","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded376", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded377.json b/src/main/resources/assets/imsm/models/item/useradded377.json index 16f3b58d..261ceeb9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded377.json +++ b/src/main/resources/assets/imsm/models/item/useradded377.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded377","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded377", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded378.json b/src/main/resources/assets/imsm/models/item/useradded378.json index 2731b3d6..3702349e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded378.json +++ b/src/main/resources/assets/imsm/models/item/useradded378.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded378","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded378", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded379.json b/src/main/resources/assets/imsm/models/item/useradded379.json index 95c5992e..8e019f70 100644 --- a/src/main/resources/assets/imsm/models/item/useradded379.json +++ b/src/main/resources/assets/imsm/models/item/useradded379.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded379","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded379", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded38.json b/src/main/resources/assets/imsm/models/item/useradded38.json index 543f81f9..b9970adb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded38.json +++ b/src/main/resources/assets/imsm/models/item/useradded38.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded38","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded38", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded380.json b/src/main/resources/assets/imsm/models/item/useradded380.json index 7de1ca18..2fed3218 100644 --- a/src/main/resources/assets/imsm/models/item/useradded380.json +++ b/src/main/resources/assets/imsm/models/item/useradded380.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded380","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded380", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded381.json b/src/main/resources/assets/imsm/models/item/useradded381.json index cdd56068..8ee9315c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded381.json +++ b/src/main/resources/assets/imsm/models/item/useradded381.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded381","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded381", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded382.json b/src/main/resources/assets/imsm/models/item/useradded382.json index ec450927..e3710fc0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded382.json +++ b/src/main/resources/assets/imsm/models/item/useradded382.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded382","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded382", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded383.json b/src/main/resources/assets/imsm/models/item/useradded383.json index 99ddcda0..fbc0a444 100644 --- a/src/main/resources/assets/imsm/models/item/useradded383.json +++ b/src/main/resources/assets/imsm/models/item/useradded383.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded383","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded383", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded384.json b/src/main/resources/assets/imsm/models/item/useradded384.json index e1867c72..2602fc83 100644 --- a/src/main/resources/assets/imsm/models/item/useradded384.json +++ b/src/main/resources/assets/imsm/models/item/useradded384.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded384","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded384", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded385.json b/src/main/resources/assets/imsm/models/item/useradded385.json index 76caf63b..4bec96b8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded385.json +++ b/src/main/resources/assets/imsm/models/item/useradded385.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded385","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded385", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded386.json b/src/main/resources/assets/imsm/models/item/useradded386.json index b8732453..bb659995 100644 --- a/src/main/resources/assets/imsm/models/item/useradded386.json +++ b/src/main/resources/assets/imsm/models/item/useradded386.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded386","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded386", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded387.json b/src/main/resources/assets/imsm/models/item/useradded387.json index 2023f1eb..2cf7d1ad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded387.json +++ b/src/main/resources/assets/imsm/models/item/useradded387.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded387","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded387", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded388.json b/src/main/resources/assets/imsm/models/item/useradded388.json index f63b464a..395773d7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded388.json +++ b/src/main/resources/assets/imsm/models/item/useradded388.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded388","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded388", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded389.json b/src/main/resources/assets/imsm/models/item/useradded389.json index 3bba0e61..7b3797ff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded389.json +++ b/src/main/resources/assets/imsm/models/item/useradded389.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded389","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded389", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded39.json b/src/main/resources/assets/imsm/models/item/useradded39.json index 1235f537..6e811fa0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded39.json +++ b/src/main/resources/assets/imsm/models/item/useradded39.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded39","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded39", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded390.json b/src/main/resources/assets/imsm/models/item/useradded390.json index c1d449d7..7eac027c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded390.json +++ b/src/main/resources/assets/imsm/models/item/useradded390.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded390","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded390", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded391.json b/src/main/resources/assets/imsm/models/item/useradded391.json index 662c061e..df8299ee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded391.json +++ b/src/main/resources/assets/imsm/models/item/useradded391.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded391","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded391", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded392.json b/src/main/resources/assets/imsm/models/item/useradded392.json index 7aae84a7..fab17285 100644 --- a/src/main/resources/assets/imsm/models/item/useradded392.json +++ b/src/main/resources/assets/imsm/models/item/useradded392.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded392","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded392", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded393.json b/src/main/resources/assets/imsm/models/item/useradded393.json index be84ef3e..2a4ea915 100644 --- a/src/main/resources/assets/imsm/models/item/useradded393.json +++ b/src/main/resources/assets/imsm/models/item/useradded393.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded393","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded393", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded394.json b/src/main/resources/assets/imsm/models/item/useradded394.json index 734628f9..5b2aa545 100644 --- a/src/main/resources/assets/imsm/models/item/useradded394.json +++ b/src/main/resources/assets/imsm/models/item/useradded394.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded394","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded394", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded395.json b/src/main/resources/assets/imsm/models/item/useradded395.json index e9123b14..b019935e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded395.json +++ b/src/main/resources/assets/imsm/models/item/useradded395.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded395","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded395", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded396.json b/src/main/resources/assets/imsm/models/item/useradded396.json index 1ea8d551..153779ef 100644 --- a/src/main/resources/assets/imsm/models/item/useradded396.json +++ b/src/main/resources/assets/imsm/models/item/useradded396.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded396","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded396", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded397.json b/src/main/resources/assets/imsm/models/item/useradded397.json index c143bfa3..77516718 100644 --- a/src/main/resources/assets/imsm/models/item/useradded397.json +++ b/src/main/resources/assets/imsm/models/item/useradded397.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded397","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded397", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded398.json b/src/main/resources/assets/imsm/models/item/useradded398.json index c83c0afa..d57022b2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded398.json +++ b/src/main/resources/assets/imsm/models/item/useradded398.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded398","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded398", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded399.json b/src/main/resources/assets/imsm/models/item/useradded399.json index 3ac54a63..42c98871 100644 --- a/src/main/resources/assets/imsm/models/item/useradded399.json +++ b/src/main/resources/assets/imsm/models/item/useradded399.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded399","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded399", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded4.json b/src/main/resources/assets/imsm/models/item/useradded4.json index 7610a0e5..6196fe04 100644 --- a/src/main/resources/assets/imsm/models/item/useradded4.json +++ b/src/main/resources/assets/imsm/models/item/useradded4.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded4","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded4", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded40.json b/src/main/resources/assets/imsm/models/item/useradded40.json index 5b2ad8c3..24f78540 100644 --- a/src/main/resources/assets/imsm/models/item/useradded40.json +++ b/src/main/resources/assets/imsm/models/item/useradded40.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded40","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded40", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded400.json b/src/main/resources/assets/imsm/models/item/useradded400.json index d5bdb112..ac8aec51 100644 --- a/src/main/resources/assets/imsm/models/item/useradded400.json +++ b/src/main/resources/assets/imsm/models/item/useradded400.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded400","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded400", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded401.json b/src/main/resources/assets/imsm/models/item/useradded401.json index ca03f85d..392348d6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded401.json +++ b/src/main/resources/assets/imsm/models/item/useradded401.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded401","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded401", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded402.json b/src/main/resources/assets/imsm/models/item/useradded402.json index 82f0486e..11d47954 100644 --- a/src/main/resources/assets/imsm/models/item/useradded402.json +++ b/src/main/resources/assets/imsm/models/item/useradded402.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded402","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded402", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded403.json b/src/main/resources/assets/imsm/models/item/useradded403.json index 5d3fdb28..5ed419a3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded403.json +++ b/src/main/resources/assets/imsm/models/item/useradded403.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded403","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded403", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded404.json b/src/main/resources/assets/imsm/models/item/useradded404.json index 62ad0269..59b2f2a4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded404.json +++ b/src/main/resources/assets/imsm/models/item/useradded404.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded404","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded404", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded405.json b/src/main/resources/assets/imsm/models/item/useradded405.json index 45c510ea..36ce18ef 100644 --- a/src/main/resources/assets/imsm/models/item/useradded405.json +++ b/src/main/resources/assets/imsm/models/item/useradded405.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded405","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded405", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded406.json b/src/main/resources/assets/imsm/models/item/useradded406.json index 8ae31568..60aa1137 100644 --- a/src/main/resources/assets/imsm/models/item/useradded406.json +++ b/src/main/resources/assets/imsm/models/item/useradded406.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded406","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded406", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded407.json b/src/main/resources/assets/imsm/models/item/useradded407.json index 4f43cc5f..9d529841 100644 --- a/src/main/resources/assets/imsm/models/item/useradded407.json +++ b/src/main/resources/assets/imsm/models/item/useradded407.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded407","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded407", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded408.json b/src/main/resources/assets/imsm/models/item/useradded408.json index 43c0615e..8eaccd3f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded408.json +++ b/src/main/resources/assets/imsm/models/item/useradded408.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded408","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded408", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded409.json b/src/main/resources/assets/imsm/models/item/useradded409.json index 5410a9b9..09a0ac78 100644 --- a/src/main/resources/assets/imsm/models/item/useradded409.json +++ b/src/main/resources/assets/imsm/models/item/useradded409.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded409","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded409", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded41.json b/src/main/resources/assets/imsm/models/item/useradded41.json index 9c71b00e..7adccf75 100644 --- a/src/main/resources/assets/imsm/models/item/useradded41.json +++ b/src/main/resources/assets/imsm/models/item/useradded41.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded41","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded41", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded410.json b/src/main/resources/assets/imsm/models/item/useradded410.json index f7b5c92b..d89aa896 100644 --- a/src/main/resources/assets/imsm/models/item/useradded410.json +++ b/src/main/resources/assets/imsm/models/item/useradded410.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded410","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded410", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded411.json b/src/main/resources/assets/imsm/models/item/useradded411.json index f0611e14..b534c221 100644 --- a/src/main/resources/assets/imsm/models/item/useradded411.json +++ b/src/main/resources/assets/imsm/models/item/useradded411.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded411","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded411", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded412.json b/src/main/resources/assets/imsm/models/item/useradded412.json index ffab14ce..9f2376d7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded412.json +++ b/src/main/resources/assets/imsm/models/item/useradded412.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded412","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded412", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded413.json b/src/main/resources/assets/imsm/models/item/useradded413.json index fb855e9c..ac343d0c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded413.json +++ b/src/main/resources/assets/imsm/models/item/useradded413.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded413","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded413", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded414.json b/src/main/resources/assets/imsm/models/item/useradded414.json index 59909f07..c81b80c1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded414.json +++ b/src/main/resources/assets/imsm/models/item/useradded414.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded414","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded414", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded415.json b/src/main/resources/assets/imsm/models/item/useradded415.json index f2213d13..98a72f05 100644 --- a/src/main/resources/assets/imsm/models/item/useradded415.json +++ b/src/main/resources/assets/imsm/models/item/useradded415.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded415","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded415", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded416.json b/src/main/resources/assets/imsm/models/item/useradded416.json index c6f4d63d..e6a6a58d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded416.json +++ b/src/main/resources/assets/imsm/models/item/useradded416.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded416","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded416", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded417.json b/src/main/resources/assets/imsm/models/item/useradded417.json index a8bb59ae..654dbd41 100644 --- a/src/main/resources/assets/imsm/models/item/useradded417.json +++ b/src/main/resources/assets/imsm/models/item/useradded417.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded417","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded417", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded418.json b/src/main/resources/assets/imsm/models/item/useradded418.json index 959efe7a..b6a524b8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded418.json +++ b/src/main/resources/assets/imsm/models/item/useradded418.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded418","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded418", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded419.json b/src/main/resources/assets/imsm/models/item/useradded419.json index 8ceec72c..2369ecd3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded419.json +++ b/src/main/resources/assets/imsm/models/item/useradded419.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded419","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded419", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded42.json b/src/main/resources/assets/imsm/models/item/useradded42.json index 1e5a8992..c37f6413 100644 --- a/src/main/resources/assets/imsm/models/item/useradded42.json +++ b/src/main/resources/assets/imsm/models/item/useradded42.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded42","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded42", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded420.json b/src/main/resources/assets/imsm/models/item/useradded420.json index 0bde42af..8c075b90 100644 --- a/src/main/resources/assets/imsm/models/item/useradded420.json +++ b/src/main/resources/assets/imsm/models/item/useradded420.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded420","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded420", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded421.json b/src/main/resources/assets/imsm/models/item/useradded421.json index 7543d92a..82d3a840 100644 --- a/src/main/resources/assets/imsm/models/item/useradded421.json +++ b/src/main/resources/assets/imsm/models/item/useradded421.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded421","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded421", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded422.json b/src/main/resources/assets/imsm/models/item/useradded422.json index 8e16a599..59d6184d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded422.json +++ b/src/main/resources/assets/imsm/models/item/useradded422.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded422","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded422", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded423.json b/src/main/resources/assets/imsm/models/item/useradded423.json index 4c17e40a..cd15e7eb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded423.json +++ b/src/main/resources/assets/imsm/models/item/useradded423.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded423","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded423", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded424.json b/src/main/resources/assets/imsm/models/item/useradded424.json index 35191654..34768d9a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded424.json +++ b/src/main/resources/assets/imsm/models/item/useradded424.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded424","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded424", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded425.json b/src/main/resources/assets/imsm/models/item/useradded425.json index 3ab8c750..52536b22 100644 --- a/src/main/resources/assets/imsm/models/item/useradded425.json +++ b/src/main/resources/assets/imsm/models/item/useradded425.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded425","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded425", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded426.json b/src/main/resources/assets/imsm/models/item/useradded426.json index b340c295..3a37ec0e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded426.json +++ b/src/main/resources/assets/imsm/models/item/useradded426.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded426","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded426", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded427.json b/src/main/resources/assets/imsm/models/item/useradded427.json index 490236c9..c187fa11 100644 --- a/src/main/resources/assets/imsm/models/item/useradded427.json +++ b/src/main/resources/assets/imsm/models/item/useradded427.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded427","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded427", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded428.json b/src/main/resources/assets/imsm/models/item/useradded428.json index 1dbb0ee5..515fa93a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded428.json +++ b/src/main/resources/assets/imsm/models/item/useradded428.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded428","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded428", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded429.json b/src/main/resources/assets/imsm/models/item/useradded429.json index 75cbd00c..f75f6940 100644 --- a/src/main/resources/assets/imsm/models/item/useradded429.json +++ b/src/main/resources/assets/imsm/models/item/useradded429.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded429","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded429", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded43.json b/src/main/resources/assets/imsm/models/item/useradded43.json index b1a17d38..4ea123db 100644 --- a/src/main/resources/assets/imsm/models/item/useradded43.json +++ b/src/main/resources/assets/imsm/models/item/useradded43.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded43","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded43", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded430.json b/src/main/resources/assets/imsm/models/item/useradded430.json index 74b4ccf9..6dff57ea 100644 --- a/src/main/resources/assets/imsm/models/item/useradded430.json +++ b/src/main/resources/assets/imsm/models/item/useradded430.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded430","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded430", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded431.json b/src/main/resources/assets/imsm/models/item/useradded431.json index 728a53ce..f58b8fbc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded431.json +++ b/src/main/resources/assets/imsm/models/item/useradded431.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded431","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded431", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded432.json b/src/main/resources/assets/imsm/models/item/useradded432.json index 23b2c4d6..f9398bb5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded432.json +++ b/src/main/resources/assets/imsm/models/item/useradded432.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded432","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded432", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded433.json b/src/main/resources/assets/imsm/models/item/useradded433.json index 13ea12bb..b02f889d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded433.json +++ b/src/main/resources/assets/imsm/models/item/useradded433.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded433","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded433", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded434.json b/src/main/resources/assets/imsm/models/item/useradded434.json index f887eba0..9291b63d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded434.json +++ b/src/main/resources/assets/imsm/models/item/useradded434.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded434","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded434", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded435.json b/src/main/resources/assets/imsm/models/item/useradded435.json index bed9af90..c5853183 100644 --- a/src/main/resources/assets/imsm/models/item/useradded435.json +++ b/src/main/resources/assets/imsm/models/item/useradded435.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded435","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded435", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded436.json b/src/main/resources/assets/imsm/models/item/useradded436.json index a99f25be..03c42878 100644 --- a/src/main/resources/assets/imsm/models/item/useradded436.json +++ b/src/main/resources/assets/imsm/models/item/useradded436.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded436","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded436", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded437.json b/src/main/resources/assets/imsm/models/item/useradded437.json index aa0c9662..086524d1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded437.json +++ b/src/main/resources/assets/imsm/models/item/useradded437.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded437","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded437", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded438.json b/src/main/resources/assets/imsm/models/item/useradded438.json index f8a0400b..189a0fa7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded438.json +++ b/src/main/resources/assets/imsm/models/item/useradded438.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded438","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded438", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded439.json b/src/main/resources/assets/imsm/models/item/useradded439.json index 0668eeb2..2ddd8bb5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded439.json +++ b/src/main/resources/assets/imsm/models/item/useradded439.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded439","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded439", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded44.json b/src/main/resources/assets/imsm/models/item/useradded44.json index 222e295f..e75dd459 100644 --- a/src/main/resources/assets/imsm/models/item/useradded44.json +++ b/src/main/resources/assets/imsm/models/item/useradded44.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded44","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded44", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded440.json b/src/main/resources/assets/imsm/models/item/useradded440.json index 515f6038..552705f7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded440.json +++ b/src/main/resources/assets/imsm/models/item/useradded440.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded440","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded440", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded441.json b/src/main/resources/assets/imsm/models/item/useradded441.json index efb6be96..9b7bf143 100644 --- a/src/main/resources/assets/imsm/models/item/useradded441.json +++ b/src/main/resources/assets/imsm/models/item/useradded441.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded441","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded441", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded442.json b/src/main/resources/assets/imsm/models/item/useradded442.json index 682410a1..25ddb74c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded442.json +++ b/src/main/resources/assets/imsm/models/item/useradded442.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded442","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded442", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded443.json b/src/main/resources/assets/imsm/models/item/useradded443.json index c04ac49e..1f134334 100644 --- a/src/main/resources/assets/imsm/models/item/useradded443.json +++ b/src/main/resources/assets/imsm/models/item/useradded443.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded443","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded443", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded444.json b/src/main/resources/assets/imsm/models/item/useradded444.json index b949ba7e..477362c7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded444.json +++ b/src/main/resources/assets/imsm/models/item/useradded444.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded444","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded444", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded445.json b/src/main/resources/assets/imsm/models/item/useradded445.json index c601668b..7313c9a2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded445.json +++ b/src/main/resources/assets/imsm/models/item/useradded445.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded445","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded445", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded446.json b/src/main/resources/assets/imsm/models/item/useradded446.json index 8556fd5f..aa982e21 100644 --- a/src/main/resources/assets/imsm/models/item/useradded446.json +++ b/src/main/resources/assets/imsm/models/item/useradded446.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded446","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded446", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded447.json b/src/main/resources/assets/imsm/models/item/useradded447.json index bbfe722c..6274a4a3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded447.json +++ b/src/main/resources/assets/imsm/models/item/useradded447.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded447","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded447", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded448.json b/src/main/resources/assets/imsm/models/item/useradded448.json index 9cbad27c..ac9d5a4f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded448.json +++ b/src/main/resources/assets/imsm/models/item/useradded448.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded448","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded448", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded449.json b/src/main/resources/assets/imsm/models/item/useradded449.json index 7885f0d7..6a405492 100644 --- a/src/main/resources/assets/imsm/models/item/useradded449.json +++ b/src/main/resources/assets/imsm/models/item/useradded449.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded449","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded449", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded45.json b/src/main/resources/assets/imsm/models/item/useradded45.json index d3cef689..e18f60ff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded45.json +++ b/src/main/resources/assets/imsm/models/item/useradded45.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded45","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded45", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded450.json b/src/main/resources/assets/imsm/models/item/useradded450.json index 34d837c3..220fe696 100644 --- a/src/main/resources/assets/imsm/models/item/useradded450.json +++ b/src/main/resources/assets/imsm/models/item/useradded450.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded450","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded450", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded451.json b/src/main/resources/assets/imsm/models/item/useradded451.json index 3bf1bd54..cca679c0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded451.json +++ b/src/main/resources/assets/imsm/models/item/useradded451.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded451","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded451", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded452.json b/src/main/resources/assets/imsm/models/item/useradded452.json index 1fa60ac6..b5fc5d72 100644 --- a/src/main/resources/assets/imsm/models/item/useradded452.json +++ b/src/main/resources/assets/imsm/models/item/useradded452.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded452","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded452", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded453.json b/src/main/resources/assets/imsm/models/item/useradded453.json index e1696a64..f94f3edd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded453.json +++ b/src/main/resources/assets/imsm/models/item/useradded453.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded453","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded453", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded454.json b/src/main/resources/assets/imsm/models/item/useradded454.json index a8dfb503..3db284cf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded454.json +++ b/src/main/resources/assets/imsm/models/item/useradded454.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded454","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded454", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded455.json b/src/main/resources/assets/imsm/models/item/useradded455.json index d350400a..b7fb3341 100644 --- a/src/main/resources/assets/imsm/models/item/useradded455.json +++ b/src/main/resources/assets/imsm/models/item/useradded455.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded455","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded455", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded456.json b/src/main/resources/assets/imsm/models/item/useradded456.json index 0876c7e6..21765de0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded456.json +++ b/src/main/resources/assets/imsm/models/item/useradded456.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded456","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded456", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded457.json b/src/main/resources/assets/imsm/models/item/useradded457.json index 722876b6..70b75a4d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded457.json +++ b/src/main/resources/assets/imsm/models/item/useradded457.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded457","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded457", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded458.json b/src/main/resources/assets/imsm/models/item/useradded458.json index 3d21326b..4b4709d5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded458.json +++ b/src/main/resources/assets/imsm/models/item/useradded458.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded458","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded458", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded459.json b/src/main/resources/assets/imsm/models/item/useradded459.json index ba99b20d..2969d075 100644 --- a/src/main/resources/assets/imsm/models/item/useradded459.json +++ b/src/main/resources/assets/imsm/models/item/useradded459.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded459","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded459", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded46.json b/src/main/resources/assets/imsm/models/item/useradded46.json index 72987c64..97992452 100644 --- a/src/main/resources/assets/imsm/models/item/useradded46.json +++ b/src/main/resources/assets/imsm/models/item/useradded46.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded46","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded46", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded460.json b/src/main/resources/assets/imsm/models/item/useradded460.json index 42e1b0e9..87bea83d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded460.json +++ b/src/main/resources/assets/imsm/models/item/useradded460.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded460","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded460", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded461.json b/src/main/resources/assets/imsm/models/item/useradded461.json index ef7acb9e..686a22c8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded461.json +++ b/src/main/resources/assets/imsm/models/item/useradded461.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded461","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded461", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded462.json b/src/main/resources/assets/imsm/models/item/useradded462.json index 5ddaf804..c9f67dec 100644 --- a/src/main/resources/assets/imsm/models/item/useradded462.json +++ b/src/main/resources/assets/imsm/models/item/useradded462.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded462","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded462", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded463.json b/src/main/resources/assets/imsm/models/item/useradded463.json index a614c147..eb540e2f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded463.json +++ b/src/main/resources/assets/imsm/models/item/useradded463.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded463","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded463", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded464.json b/src/main/resources/assets/imsm/models/item/useradded464.json index 63c8b3c0..a0d5945c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded464.json +++ b/src/main/resources/assets/imsm/models/item/useradded464.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded464","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded464", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded465.json b/src/main/resources/assets/imsm/models/item/useradded465.json index 7711e136..8a4132a8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded465.json +++ b/src/main/resources/assets/imsm/models/item/useradded465.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded465","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded465", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded466.json b/src/main/resources/assets/imsm/models/item/useradded466.json index 5a51f3c9..1341ba53 100644 --- a/src/main/resources/assets/imsm/models/item/useradded466.json +++ b/src/main/resources/assets/imsm/models/item/useradded466.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded466","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded466", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded467.json b/src/main/resources/assets/imsm/models/item/useradded467.json index 3ada3d50..7ffe0162 100644 --- a/src/main/resources/assets/imsm/models/item/useradded467.json +++ b/src/main/resources/assets/imsm/models/item/useradded467.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded467","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded467", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded468.json b/src/main/resources/assets/imsm/models/item/useradded468.json index 656f4585..5545d26e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded468.json +++ b/src/main/resources/assets/imsm/models/item/useradded468.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded468","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded468", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded469.json b/src/main/resources/assets/imsm/models/item/useradded469.json index 01d2be17..d78df4eb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded469.json +++ b/src/main/resources/assets/imsm/models/item/useradded469.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded469","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded469", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded47.json b/src/main/resources/assets/imsm/models/item/useradded47.json index 4216b626..4d276639 100644 --- a/src/main/resources/assets/imsm/models/item/useradded47.json +++ b/src/main/resources/assets/imsm/models/item/useradded47.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded47","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded47", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded470.json b/src/main/resources/assets/imsm/models/item/useradded470.json index ad5be925..35608ae2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded470.json +++ b/src/main/resources/assets/imsm/models/item/useradded470.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded470","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded470", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded471.json b/src/main/resources/assets/imsm/models/item/useradded471.json index 50fa71ca..8b5b6e70 100644 --- a/src/main/resources/assets/imsm/models/item/useradded471.json +++ b/src/main/resources/assets/imsm/models/item/useradded471.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded471","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded471", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded472.json b/src/main/resources/assets/imsm/models/item/useradded472.json index 6fc6c043..f1769788 100644 --- a/src/main/resources/assets/imsm/models/item/useradded472.json +++ b/src/main/resources/assets/imsm/models/item/useradded472.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded472","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded472", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded473.json b/src/main/resources/assets/imsm/models/item/useradded473.json index 0163750f..f8aefc9e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded473.json +++ b/src/main/resources/assets/imsm/models/item/useradded473.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded473","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded473", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded474.json b/src/main/resources/assets/imsm/models/item/useradded474.json index 780a9c86..0e5fc2c9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded474.json +++ b/src/main/resources/assets/imsm/models/item/useradded474.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded474","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded474", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded475.json b/src/main/resources/assets/imsm/models/item/useradded475.json index cff778c4..2aa7cd3f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded475.json +++ b/src/main/resources/assets/imsm/models/item/useradded475.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded475","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded475", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded476.json b/src/main/resources/assets/imsm/models/item/useradded476.json index 67a5035e..f7a41154 100644 --- a/src/main/resources/assets/imsm/models/item/useradded476.json +++ b/src/main/resources/assets/imsm/models/item/useradded476.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded476","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded476", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded477.json b/src/main/resources/assets/imsm/models/item/useradded477.json index 50dbccd3..05283dd0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded477.json +++ b/src/main/resources/assets/imsm/models/item/useradded477.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded477","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded477", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded478.json b/src/main/resources/assets/imsm/models/item/useradded478.json index 7efa1021..1d7f9ee0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded478.json +++ b/src/main/resources/assets/imsm/models/item/useradded478.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded478","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded478", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded479.json b/src/main/resources/assets/imsm/models/item/useradded479.json index c9f816b6..a521aa3b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded479.json +++ b/src/main/resources/assets/imsm/models/item/useradded479.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded479","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded479", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded48.json b/src/main/resources/assets/imsm/models/item/useradded48.json index 57de2d6d..e0e00112 100644 --- a/src/main/resources/assets/imsm/models/item/useradded48.json +++ b/src/main/resources/assets/imsm/models/item/useradded48.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded48","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded48", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded480.json b/src/main/resources/assets/imsm/models/item/useradded480.json index be14b85f..2788fa6c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded480.json +++ b/src/main/resources/assets/imsm/models/item/useradded480.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded480","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded480", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded481.json b/src/main/resources/assets/imsm/models/item/useradded481.json index 37f219f4..b2525faf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded481.json +++ b/src/main/resources/assets/imsm/models/item/useradded481.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded481","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded481", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded482.json b/src/main/resources/assets/imsm/models/item/useradded482.json index d28f982b..0f29f54a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded482.json +++ b/src/main/resources/assets/imsm/models/item/useradded482.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded482","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded482", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded483.json b/src/main/resources/assets/imsm/models/item/useradded483.json index 4092df4b..94f010ca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded483.json +++ b/src/main/resources/assets/imsm/models/item/useradded483.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded483","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded483", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded484.json b/src/main/resources/assets/imsm/models/item/useradded484.json index 00d4a987..5df148f9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded484.json +++ b/src/main/resources/assets/imsm/models/item/useradded484.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded484","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded484", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded485.json b/src/main/resources/assets/imsm/models/item/useradded485.json index 761d3a8e..753e76c7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded485.json +++ b/src/main/resources/assets/imsm/models/item/useradded485.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded485","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded485", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded486.json b/src/main/resources/assets/imsm/models/item/useradded486.json index fc7d42dc..0b59d824 100644 --- a/src/main/resources/assets/imsm/models/item/useradded486.json +++ b/src/main/resources/assets/imsm/models/item/useradded486.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded486","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded486", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded487.json b/src/main/resources/assets/imsm/models/item/useradded487.json index 9d6c83c3..5ee1e4b7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded487.json +++ b/src/main/resources/assets/imsm/models/item/useradded487.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded487","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded487", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded488.json b/src/main/resources/assets/imsm/models/item/useradded488.json index 99d8e9f0..846d17c5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded488.json +++ b/src/main/resources/assets/imsm/models/item/useradded488.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded488","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded488", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded489.json b/src/main/resources/assets/imsm/models/item/useradded489.json index 3d8f06b4..6822d39e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded489.json +++ b/src/main/resources/assets/imsm/models/item/useradded489.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded489","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded489", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded49.json b/src/main/resources/assets/imsm/models/item/useradded49.json index 5b9c78ec..ef49106a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded49.json +++ b/src/main/resources/assets/imsm/models/item/useradded49.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded49","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded49", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded490.json b/src/main/resources/assets/imsm/models/item/useradded490.json index 748b62a1..c03be8e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded490.json +++ b/src/main/resources/assets/imsm/models/item/useradded490.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded490","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded490", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded491.json b/src/main/resources/assets/imsm/models/item/useradded491.json index 8263020f..d24583f7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded491.json +++ b/src/main/resources/assets/imsm/models/item/useradded491.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded491","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded491", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded492.json b/src/main/resources/assets/imsm/models/item/useradded492.json index ba866d54..31f27211 100644 --- a/src/main/resources/assets/imsm/models/item/useradded492.json +++ b/src/main/resources/assets/imsm/models/item/useradded492.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded492","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded492", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded493.json b/src/main/resources/assets/imsm/models/item/useradded493.json index 73586cc7..0143e1d5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded493.json +++ b/src/main/resources/assets/imsm/models/item/useradded493.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded493","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded493", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded494.json b/src/main/resources/assets/imsm/models/item/useradded494.json index 50fa3ed2..b1be11eb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded494.json +++ b/src/main/resources/assets/imsm/models/item/useradded494.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded494","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded494", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded495.json b/src/main/resources/assets/imsm/models/item/useradded495.json index f6494d56..79e4a34c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded495.json +++ b/src/main/resources/assets/imsm/models/item/useradded495.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded495","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded495", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded496.json b/src/main/resources/assets/imsm/models/item/useradded496.json index b5d84277..6cd8d90e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded496.json +++ b/src/main/resources/assets/imsm/models/item/useradded496.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded496","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded496", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded497.json b/src/main/resources/assets/imsm/models/item/useradded497.json index c5fb2975..781a2f57 100644 --- a/src/main/resources/assets/imsm/models/item/useradded497.json +++ b/src/main/resources/assets/imsm/models/item/useradded497.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded497","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded497", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded498.json b/src/main/resources/assets/imsm/models/item/useradded498.json index ed50f4f4..e5183a7a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded498.json +++ b/src/main/resources/assets/imsm/models/item/useradded498.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded498","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded498", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded499.json b/src/main/resources/assets/imsm/models/item/useradded499.json index c0d1d494..13295a5b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded499.json +++ b/src/main/resources/assets/imsm/models/item/useradded499.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded499","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded499", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded5.json b/src/main/resources/assets/imsm/models/item/useradded5.json index cea1f5a5..0087dacf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded5.json +++ b/src/main/resources/assets/imsm/models/item/useradded5.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded5","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded5", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded50.json b/src/main/resources/assets/imsm/models/item/useradded50.json index 4a7447ce..cb665bde 100644 --- a/src/main/resources/assets/imsm/models/item/useradded50.json +++ b/src/main/resources/assets/imsm/models/item/useradded50.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded50","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded50", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded500.json b/src/main/resources/assets/imsm/models/item/useradded500.json index 2d9f1fb4..e1d3504e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded500.json +++ b/src/main/resources/assets/imsm/models/item/useradded500.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded500","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded500", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded501.json b/src/main/resources/assets/imsm/models/item/useradded501.json index abb2c551..c76837ae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded501.json +++ b/src/main/resources/assets/imsm/models/item/useradded501.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded501","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded501", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded502.json b/src/main/resources/assets/imsm/models/item/useradded502.json index e7c15ccb..13cacc08 100644 --- a/src/main/resources/assets/imsm/models/item/useradded502.json +++ b/src/main/resources/assets/imsm/models/item/useradded502.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded502","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded502", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded503.json b/src/main/resources/assets/imsm/models/item/useradded503.json index e2fb4691..d45e46d0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded503.json +++ b/src/main/resources/assets/imsm/models/item/useradded503.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded503","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded503", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded504.json b/src/main/resources/assets/imsm/models/item/useradded504.json index daddae39..debbdc5f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded504.json +++ b/src/main/resources/assets/imsm/models/item/useradded504.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded504","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded504", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded505.json b/src/main/resources/assets/imsm/models/item/useradded505.json index f680045e..5ac3c074 100644 --- a/src/main/resources/assets/imsm/models/item/useradded505.json +++ b/src/main/resources/assets/imsm/models/item/useradded505.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded505","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded505", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded506.json b/src/main/resources/assets/imsm/models/item/useradded506.json index 632ec455..a0c525a4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded506.json +++ b/src/main/resources/assets/imsm/models/item/useradded506.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded506","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded506", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded507.json b/src/main/resources/assets/imsm/models/item/useradded507.json index a521d4da..66f4e7ac 100644 --- a/src/main/resources/assets/imsm/models/item/useradded507.json +++ b/src/main/resources/assets/imsm/models/item/useradded507.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded507","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded507", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded508.json b/src/main/resources/assets/imsm/models/item/useradded508.json index 3d2fbaec..4e8e8b58 100644 --- a/src/main/resources/assets/imsm/models/item/useradded508.json +++ b/src/main/resources/assets/imsm/models/item/useradded508.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded508","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded508", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded509.json b/src/main/resources/assets/imsm/models/item/useradded509.json index a265f712..ebe70f59 100644 --- a/src/main/resources/assets/imsm/models/item/useradded509.json +++ b/src/main/resources/assets/imsm/models/item/useradded509.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded509","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded509", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded51.json b/src/main/resources/assets/imsm/models/item/useradded51.json index e0674de6..7d8bfb0f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded51.json +++ b/src/main/resources/assets/imsm/models/item/useradded51.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded51","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded51", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded510.json b/src/main/resources/assets/imsm/models/item/useradded510.json index aeaee56a..fae32f1f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded510.json +++ b/src/main/resources/assets/imsm/models/item/useradded510.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded510","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded510", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded511.json b/src/main/resources/assets/imsm/models/item/useradded511.json index 1ed5986d..04056e4c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded511.json +++ b/src/main/resources/assets/imsm/models/item/useradded511.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded511","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded511", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded512.json b/src/main/resources/assets/imsm/models/item/useradded512.json index b76646f8..44ed4800 100644 --- a/src/main/resources/assets/imsm/models/item/useradded512.json +++ b/src/main/resources/assets/imsm/models/item/useradded512.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded512","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded512", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded513.json b/src/main/resources/assets/imsm/models/item/useradded513.json index 0dd36d16..f8ceb151 100644 --- a/src/main/resources/assets/imsm/models/item/useradded513.json +++ b/src/main/resources/assets/imsm/models/item/useradded513.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded513","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded513", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded514.json b/src/main/resources/assets/imsm/models/item/useradded514.json index ddc48c5d..f9fb9e55 100644 --- a/src/main/resources/assets/imsm/models/item/useradded514.json +++ b/src/main/resources/assets/imsm/models/item/useradded514.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded514","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded514", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded515.json b/src/main/resources/assets/imsm/models/item/useradded515.json index 8507d1d2..f32d757d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded515.json +++ b/src/main/resources/assets/imsm/models/item/useradded515.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded515","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded515", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded516.json b/src/main/resources/assets/imsm/models/item/useradded516.json index 68d41320..99686f81 100644 --- a/src/main/resources/assets/imsm/models/item/useradded516.json +++ b/src/main/resources/assets/imsm/models/item/useradded516.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded516","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded516", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded517.json b/src/main/resources/assets/imsm/models/item/useradded517.json index f1b11870..21fa52d4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded517.json +++ b/src/main/resources/assets/imsm/models/item/useradded517.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded517","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded517", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded518.json b/src/main/resources/assets/imsm/models/item/useradded518.json index 5028edff..3ceefed1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded518.json +++ b/src/main/resources/assets/imsm/models/item/useradded518.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded518","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded518", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded519.json b/src/main/resources/assets/imsm/models/item/useradded519.json index dc05d81c..af3fddc4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded519.json +++ b/src/main/resources/assets/imsm/models/item/useradded519.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded519","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded519", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded52.json b/src/main/resources/assets/imsm/models/item/useradded52.json index e37fbc5d..8d2db862 100644 --- a/src/main/resources/assets/imsm/models/item/useradded52.json +++ b/src/main/resources/assets/imsm/models/item/useradded52.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded52","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded52", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded520.json b/src/main/resources/assets/imsm/models/item/useradded520.json index cb38e77d..c6fabdca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded520.json +++ b/src/main/resources/assets/imsm/models/item/useradded520.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded520","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded520", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded521.json b/src/main/resources/assets/imsm/models/item/useradded521.json index 630e8d18..074fb27b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded521.json +++ b/src/main/resources/assets/imsm/models/item/useradded521.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded521","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded521", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded522.json b/src/main/resources/assets/imsm/models/item/useradded522.json index 56757c0b..c7c069c3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded522.json +++ b/src/main/resources/assets/imsm/models/item/useradded522.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded522","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded522", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded523.json b/src/main/resources/assets/imsm/models/item/useradded523.json index 6514a5bc..66a85f56 100644 --- a/src/main/resources/assets/imsm/models/item/useradded523.json +++ b/src/main/resources/assets/imsm/models/item/useradded523.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded523","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded523", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded524.json b/src/main/resources/assets/imsm/models/item/useradded524.json index d45a7291..ff004dc5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded524.json +++ b/src/main/resources/assets/imsm/models/item/useradded524.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded524","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded524", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded525.json b/src/main/resources/assets/imsm/models/item/useradded525.json index 0bb06bae..315086a6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded525.json +++ b/src/main/resources/assets/imsm/models/item/useradded525.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded525","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded525", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded526.json b/src/main/resources/assets/imsm/models/item/useradded526.json index 05cecd2b..4e3affe2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded526.json +++ b/src/main/resources/assets/imsm/models/item/useradded526.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded526","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded526", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded527.json b/src/main/resources/assets/imsm/models/item/useradded527.json index e48b77c7..000ca60a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded527.json +++ b/src/main/resources/assets/imsm/models/item/useradded527.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded527","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded527", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded528.json b/src/main/resources/assets/imsm/models/item/useradded528.json index c99c03af..47e775d6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded528.json +++ b/src/main/resources/assets/imsm/models/item/useradded528.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded528","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded528", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded529.json b/src/main/resources/assets/imsm/models/item/useradded529.json index ed6ba396..c05213ba 100644 --- a/src/main/resources/assets/imsm/models/item/useradded529.json +++ b/src/main/resources/assets/imsm/models/item/useradded529.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded529","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded529", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded53.json b/src/main/resources/assets/imsm/models/item/useradded53.json index b6c1e999..eb570371 100644 --- a/src/main/resources/assets/imsm/models/item/useradded53.json +++ b/src/main/resources/assets/imsm/models/item/useradded53.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded53","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded53", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded530.json b/src/main/resources/assets/imsm/models/item/useradded530.json index 5bcbec58..d4acaac8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded530.json +++ b/src/main/resources/assets/imsm/models/item/useradded530.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded530","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded530", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded531.json b/src/main/resources/assets/imsm/models/item/useradded531.json index d7acdd01..464c9333 100644 --- a/src/main/resources/assets/imsm/models/item/useradded531.json +++ b/src/main/resources/assets/imsm/models/item/useradded531.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded531","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded531", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded532.json b/src/main/resources/assets/imsm/models/item/useradded532.json index 7a561d02..735aa640 100644 --- a/src/main/resources/assets/imsm/models/item/useradded532.json +++ b/src/main/resources/assets/imsm/models/item/useradded532.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded532","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded532", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded533.json b/src/main/resources/assets/imsm/models/item/useradded533.json index c9be1639..da1dac72 100644 --- a/src/main/resources/assets/imsm/models/item/useradded533.json +++ b/src/main/resources/assets/imsm/models/item/useradded533.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded533","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded533", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded534.json b/src/main/resources/assets/imsm/models/item/useradded534.json index 60d17ed6..c88f6e86 100644 --- a/src/main/resources/assets/imsm/models/item/useradded534.json +++ b/src/main/resources/assets/imsm/models/item/useradded534.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded534","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded534", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded535.json b/src/main/resources/assets/imsm/models/item/useradded535.json index f0edae2a..be42aadd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded535.json +++ b/src/main/resources/assets/imsm/models/item/useradded535.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded535","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded535", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded536.json b/src/main/resources/assets/imsm/models/item/useradded536.json index 2e7298dd..a9fa6020 100644 --- a/src/main/resources/assets/imsm/models/item/useradded536.json +++ b/src/main/resources/assets/imsm/models/item/useradded536.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded536","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded536", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded537.json b/src/main/resources/assets/imsm/models/item/useradded537.json index ebb7e275..5261891d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded537.json +++ b/src/main/resources/assets/imsm/models/item/useradded537.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded537","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded537", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded538.json b/src/main/resources/assets/imsm/models/item/useradded538.json index 68deed4f..11d7a27d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded538.json +++ b/src/main/resources/assets/imsm/models/item/useradded538.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded538","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded538", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded539.json b/src/main/resources/assets/imsm/models/item/useradded539.json index f6de6372..33e6a3ae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded539.json +++ b/src/main/resources/assets/imsm/models/item/useradded539.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded539","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded539", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded54.json b/src/main/resources/assets/imsm/models/item/useradded54.json index 87a437c3..e05ce39f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded54.json +++ b/src/main/resources/assets/imsm/models/item/useradded54.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded54","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded54", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded540.json b/src/main/resources/assets/imsm/models/item/useradded540.json index c2d4dc07..c0df6e5d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded540.json +++ b/src/main/resources/assets/imsm/models/item/useradded540.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded540","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded540", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded541.json b/src/main/resources/assets/imsm/models/item/useradded541.json index 2c4e0f6c..8e9f55af 100644 --- a/src/main/resources/assets/imsm/models/item/useradded541.json +++ b/src/main/resources/assets/imsm/models/item/useradded541.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded541","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded541", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded542.json b/src/main/resources/assets/imsm/models/item/useradded542.json index bc14df49..2ac4b9f6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded542.json +++ b/src/main/resources/assets/imsm/models/item/useradded542.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded542","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded542", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded543.json b/src/main/resources/assets/imsm/models/item/useradded543.json index 66ec92ae..1fc3776f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded543.json +++ b/src/main/resources/assets/imsm/models/item/useradded543.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded543","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded543", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded544.json b/src/main/resources/assets/imsm/models/item/useradded544.json index 87d0ddb8..c7403830 100644 --- a/src/main/resources/assets/imsm/models/item/useradded544.json +++ b/src/main/resources/assets/imsm/models/item/useradded544.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded544","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded544", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded545.json b/src/main/resources/assets/imsm/models/item/useradded545.json index 01c32c9e..adb5d5f4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded545.json +++ b/src/main/resources/assets/imsm/models/item/useradded545.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded545","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded545", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded546.json b/src/main/resources/assets/imsm/models/item/useradded546.json index ffa1c669..0dbc43e5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded546.json +++ b/src/main/resources/assets/imsm/models/item/useradded546.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded546","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded546", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded547.json b/src/main/resources/assets/imsm/models/item/useradded547.json index 83e6e729..6668ca18 100644 --- a/src/main/resources/assets/imsm/models/item/useradded547.json +++ b/src/main/resources/assets/imsm/models/item/useradded547.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded547","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded547", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded548.json b/src/main/resources/assets/imsm/models/item/useradded548.json index d2eb35a8..ba9c8c44 100644 --- a/src/main/resources/assets/imsm/models/item/useradded548.json +++ b/src/main/resources/assets/imsm/models/item/useradded548.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded548","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded548", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded549.json b/src/main/resources/assets/imsm/models/item/useradded549.json index 4b2e1b95..e933bcad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded549.json +++ b/src/main/resources/assets/imsm/models/item/useradded549.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded549","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded549", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded55.json b/src/main/resources/assets/imsm/models/item/useradded55.json index c48eccf4..c22ef8cf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded55.json +++ b/src/main/resources/assets/imsm/models/item/useradded55.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded55","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded55", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded550.json b/src/main/resources/assets/imsm/models/item/useradded550.json index 3e23d981..904e2301 100644 --- a/src/main/resources/assets/imsm/models/item/useradded550.json +++ b/src/main/resources/assets/imsm/models/item/useradded550.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded550","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded550", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded551.json b/src/main/resources/assets/imsm/models/item/useradded551.json index 09d9401c..c473dbfe 100644 --- a/src/main/resources/assets/imsm/models/item/useradded551.json +++ b/src/main/resources/assets/imsm/models/item/useradded551.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded551","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded551", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded552.json b/src/main/resources/assets/imsm/models/item/useradded552.json index 7b34fde8..7ade5ade 100644 --- a/src/main/resources/assets/imsm/models/item/useradded552.json +++ b/src/main/resources/assets/imsm/models/item/useradded552.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded552","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded552", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded553.json b/src/main/resources/assets/imsm/models/item/useradded553.json index 28f7fcbc..135a1aa2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded553.json +++ b/src/main/resources/assets/imsm/models/item/useradded553.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded553","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded553", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded554.json b/src/main/resources/assets/imsm/models/item/useradded554.json index 340030e5..11d8c9e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded554.json +++ b/src/main/resources/assets/imsm/models/item/useradded554.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded554","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded554", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded555.json b/src/main/resources/assets/imsm/models/item/useradded555.json index 2864d9b4..96543229 100644 --- a/src/main/resources/assets/imsm/models/item/useradded555.json +++ b/src/main/resources/assets/imsm/models/item/useradded555.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded555","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded555", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded556.json b/src/main/resources/assets/imsm/models/item/useradded556.json index 27d781c0..fb3fe60a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded556.json +++ b/src/main/resources/assets/imsm/models/item/useradded556.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded556","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded556", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded557.json b/src/main/resources/assets/imsm/models/item/useradded557.json index 2e1c9c73..a1debaa1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded557.json +++ b/src/main/resources/assets/imsm/models/item/useradded557.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded557","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded557", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded558.json b/src/main/resources/assets/imsm/models/item/useradded558.json index 6b489937..e2124d99 100644 --- a/src/main/resources/assets/imsm/models/item/useradded558.json +++ b/src/main/resources/assets/imsm/models/item/useradded558.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded558","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded558", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded559.json b/src/main/resources/assets/imsm/models/item/useradded559.json index cc79e6f5..35b503b5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded559.json +++ b/src/main/resources/assets/imsm/models/item/useradded559.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded559","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded559", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded56.json b/src/main/resources/assets/imsm/models/item/useradded56.json index e5a1a093..21478983 100644 --- a/src/main/resources/assets/imsm/models/item/useradded56.json +++ b/src/main/resources/assets/imsm/models/item/useradded56.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded56","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded56", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded560.json b/src/main/resources/assets/imsm/models/item/useradded560.json index b0ad4349..2767e394 100644 --- a/src/main/resources/assets/imsm/models/item/useradded560.json +++ b/src/main/resources/assets/imsm/models/item/useradded560.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded560","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded560", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded561.json b/src/main/resources/assets/imsm/models/item/useradded561.json index 9612cb02..fda272e1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded561.json +++ b/src/main/resources/assets/imsm/models/item/useradded561.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded561","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded561", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded562.json b/src/main/resources/assets/imsm/models/item/useradded562.json index d2a56699..c79330dd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded562.json +++ b/src/main/resources/assets/imsm/models/item/useradded562.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded562","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded562", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded563.json b/src/main/resources/assets/imsm/models/item/useradded563.json index 0082565d..7054219b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded563.json +++ b/src/main/resources/assets/imsm/models/item/useradded563.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded563","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded563", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded564.json b/src/main/resources/assets/imsm/models/item/useradded564.json index cb46221d..ca213314 100644 --- a/src/main/resources/assets/imsm/models/item/useradded564.json +++ b/src/main/resources/assets/imsm/models/item/useradded564.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded564","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded564", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded565.json b/src/main/resources/assets/imsm/models/item/useradded565.json index e976273f..43bf662d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded565.json +++ b/src/main/resources/assets/imsm/models/item/useradded565.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded565","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded565", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded566.json b/src/main/resources/assets/imsm/models/item/useradded566.json index 9340e1ee..fab29250 100644 --- a/src/main/resources/assets/imsm/models/item/useradded566.json +++ b/src/main/resources/assets/imsm/models/item/useradded566.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded566","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded566", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded567.json b/src/main/resources/assets/imsm/models/item/useradded567.json index df3d6c80..366f3fd2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded567.json +++ b/src/main/resources/assets/imsm/models/item/useradded567.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded567","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded567", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded568.json b/src/main/resources/assets/imsm/models/item/useradded568.json index dcd30652..6041acfd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded568.json +++ b/src/main/resources/assets/imsm/models/item/useradded568.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded568","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded568", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded569.json b/src/main/resources/assets/imsm/models/item/useradded569.json index 030145dd..3ee21e75 100644 --- a/src/main/resources/assets/imsm/models/item/useradded569.json +++ b/src/main/resources/assets/imsm/models/item/useradded569.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded569","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded569", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded57.json b/src/main/resources/assets/imsm/models/item/useradded57.json index 62273f9a..d0285b3f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded57.json +++ b/src/main/resources/assets/imsm/models/item/useradded57.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded57","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded57", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded570.json b/src/main/resources/assets/imsm/models/item/useradded570.json index 7bab90a5..12717c0f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded570.json +++ b/src/main/resources/assets/imsm/models/item/useradded570.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded570","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded570", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded571.json b/src/main/resources/assets/imsm/models/item/useradded571.json index cb87d41c..3410f0e2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded571.json +++ b/src/main/resources/assets/imsm/models/item/useradded571.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded571","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded571", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded572.json b/src/main/resources/assets/imsm/models/item/useradded572.json index b043fcda..18f40bc0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded572.json +++ b/src/main/resources/assets/imsm/models/item/useradded572.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded572","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded572", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded573.json b/src/main/resources/assets/imsm/models/item/useradded573.json index 1563591b..6468bd59 100644 --- a/src/main/resources/assets/imsm/models/item/useradded573.json +++ b/src/main/resources/assets/imsm/models/item/useradded573.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded573","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded573", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded574.json b/src/main/resources/assets/imsm/models/item/useradded574.json index c67c593b..e87e201b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded574.json +++ b/src/main/resources/assets/imsm/models/item/useradded574.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded574","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded574", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded575.json b/src/main/resources/assets/imsm/models/item/useradded575.json index 8013681f..fb941217 100644 --- a/src/main/resources/assets/imsm/models/item/useradded575.json +++ b/src/main/resources/assets/imsm/models/item/useradded575.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded575","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded575", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded576.json b/src/main/resources/assets/imsm/models/item/useradded576.json index e1282ef9..38f20901 100644 --- a/src/main/resources/assets/imsm/models/item/useradded576.json +++ b/src/main/resources/assets/imsm/models/item/useradded576.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded576","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded576", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded577.json b/src/main/resources/assets/imsm/models/item/useradded577.json index 74443a09..39c878cf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded577.json +++ b/src/main/resources/assets/imsm/models/item/useradded577.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded577","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded577", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded578.json b/src/main/resources/assets/imsm/models/item/useradded578.json index a7c375ce..4f607bff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded578.json +++ b/src/main/resources/assets/imsm/models/item/useradded578.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded578","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded578", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded579.json b/src/main/resources/assets/imsm/models/item/useradded579.json index ded4dfbd..b4972acd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded579.json +++ b/src/main/resources/assets/imsm/models/item/useradded579.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded579","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded579", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded58.json b/src/main/resources/assets/imsm/models/item/useradded58.json index d9dca7ab..f740ad13 100644 --- a/src/main/resources/assets/imsm/models/item/useradded58.json +++ b/src/main/resources/assets/imsm/models/item/useradded58.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded58","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded58", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded580.json b/src/main/resources/assets/imsm/models/item/useradded580.json index 24bf7935..6cb549a5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded580.json +++ b/src/main/resources/assets/imsm/models/item/useradded580.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded580","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded580", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded581.json b/src/main/resources/assets/imsm/models/item/useradded581.json index dc2c33ac..94b65715 100644 --- a/src/main/resources/assets/imsm/models/item/useradded581.json +++ b/src/main/resources/assets/imsm/models/item/useradded581.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded581","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded581", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded582.json b/src/main/resources/assets/imsm/models/item/useradded582.json index 2009f802..aa23c179 100644 --- a/src/main/resources/assets/imsm/models/item/useradded582.json +++ b/src/main/resources/assets/imsm/models/item/useradded582.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded582","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded582", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded583.json b/src/main/resources/assets/imsm/models/item/useradded583.json index 7d3f039f..c6eb276c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded583.json +++ b/src/main/resources/assets/imsm/models/item/useradded583.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded583","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded583", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded584.json b/src/main/resources/assets/imsm/models/item/useradded584.json index 9657fa20..58d565ff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded584.json +++ b/src/main/resources/assets/imsm/models/item/useradded584.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded584","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded584", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded585.json b/src/main/resources/assets/imsm/models/item/useradded585.json index 39e4611e..36eae739 100644 --- a/src/main/resources/assets/imsm/models/item/useradded585.json +++ b/src/main/resources/assets/imsm/models/item/useradded585.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded585","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded585", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded586.json b/src/main/resources/assets/imsm/models/item/useradded586.json index a0e0ca11..9011b0b6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded586.json +++ b/src/main/resources/assets/imsm/models/item/useradded586.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded586","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded586", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded587.json b/src/main/resources/assets/imsm/models/item/useradded587.json index 26e315ab..5598cc24 100644 --- a/src/main/resources/assets/imsm/models/item/useradded587.json +++ b/src/main/resources/assets/imsm/models/item/useradded587.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded587","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded587", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded588.json b/src/main/resources/assets/imsm/models/item/useradded588.json index dde730c8..4e9fad45 100644 --- a/src/main/resources/assets/imsm/models/item/useradded588.json +++ b/src/main/resources/assets/imsm/models/item/useradded588.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded588","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded588", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded589.json b/src/main/resources/assets/imsm/models/item/useradded589.json index c93701f0..0db0b768 100644 --- a/src/main/resources/assets/imsm/models/item/useradded589.json +++ b/src/main/resources/assets/imsm/models/item/useradded589.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded589","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded589", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded59.json b/src/main/resources/assets/imsm/models/item/useradded59.json index bfec1860..547bdf23 100644 --- a/src/main/resources/assets/imsm/models/item/useradded59.json +++ b/src/main/resources/assets/imsm/models/item/useradded59.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded59","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded59", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded590.json b/src/main/resources/assets/imsm/models/item/useradded590.json index 3c5f243e..3cd4adb7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded590.json +++ b/src/main/resources/assets/imsm/models/item/useradded590.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded590","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded590", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded591.json b/src/main/resources/assets/imsm/models/item/useradded591.json index e39069e8..1ce6d57e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded591.json +++ b/src/main/resources/assets/imsm/models/item/useradded591.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded591","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded591", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded592.json b/src/main/resources/assets/imsm/models/item/useradded592.json index c796453f..6b580f8a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded592.json +++ b/src/main/resources/assets/imsm/models/item/useradded592.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded592","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded592", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded593.json b/src/main/resources/assets/imsm/models/item/useradded593.json index 7bab640d..466e93f0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded593.json +++ b/src/main/resources/assets/imsm/models/item/useradded593.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded593","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded593", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded594.json b/src/main/resources/assets/imsm/models/item/useradded594.json index 0b3ba60f..e73c3c8a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded594.json +++ b/src/main/resources/assets/imsm/models/item/useradded594.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded594","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded594", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded595.json b/src/main/resources/assets/imsm/models/item/useradded595.json index 29effc73..8449417e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded595.json +++ b/src/main/resources/assets/imsm/models/item/useradded595.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded595","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded595", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded596.json b/src/main/resources/assets/imsm/models/item/useradded596.json index 4153d66e..8a2c8df8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded596.json +++ b/src/main/resources/assets/imsm/models/item/useradded596.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded596","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded596", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded597.json b/src/main/resources/assets/imsm/models/item/useradded597.json index 60e96b50..dc4fe4ac 100644 --- a/src/main/resources/assets/imsm/models/item/useradded597.json +++ b/src/main/resources/assets/imsm/models/item/useradded597.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded597","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded597", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded598.json b/src/main/resources/assets/imsm/models/item/useradded598.json index ea68d055..2693292d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded598.json +++ b/src/main/resources/assets/imsm/models/item/useradded598.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded598","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded598", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded599.json b/src/main/resources/assets/imsm/models/item/useradded599.json index 5cdfa02a..8d7b10ac 100644 --- a/src/main/resources/assets/imsm/models/item/useradded599.json +++ b/src/main/resources/assets/imsm/models/item/useradded599.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded599","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded599", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded6.json b/src/main/resources/assets/imsm/models/item/useradded6.json index bc788bcc..a051acd6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded6.json +++ b/src/main/resources/assets/imsm/models/item/useradded6.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded6","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded6", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded60.json b/src/main/resources/assets/imsm/models/item/useradded60.json index d7ae324d..471a4cb0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded60.json +++ b/src/main/resources/assets/imsm/models/item/useradded60.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded60","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded60", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded600.json b/src/main/resources/assets/imsm/models/item/useradded600.json index 52336c2c..a830a4e8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded600.json +++ b/src/main/resources/assets/imsm/models/item/useradded600.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded600","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded600", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded601.json b/src/main/resources/assets/imsm/models/item/useradded601.json index 908e1be0..e42e020a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded601.json +++ b/src/main/resources/assets/imsm/models/item/useradded601.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded601","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded601", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded602.json b/src/main/resources/assets/imsm/models/item/useradded602.json index 154a59e8..14a3ebe5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded602.json +++ b/src/main/resources/assets/imsm/models/item/useradded602.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded602","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded602", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded603.json b/src/main/resources/assets/imsm/models/item/useradded603.json index bf823e48..fd3335f5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded603.json +++ b/src/main/resources/assets/imsm/models/item/useradded603.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded603","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded603", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded604.json b/src/main/resources/assets/imsm/models/item/useradded604.json index 3db6c9c9..70e999d3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded604.json +++ b/src/main/resources/assets/imsm/models/item/useradded604.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded604","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded604", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded605.json b/src/main/resources/assets/imsm/models/item/useradded605.json index 36f74edd..b6e2c8e7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded605.json +++ b/src/main/resources/assets/imsm/models/item/useradded605.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded605","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded605", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded606.json b/src/main/resources/assets/imsm/models/item/useradded606.json index ec805ff3..77400d6b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded606.json +++ b/src/main/resources/assets/imsm/models/item/useradded606.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded606","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded606", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded607.json b/src/main/resources/assets/imsm/models/item/useradded607.json index 95899d19..d9700acd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded607.json +++ b/src/main/resources/assets/imsm/models/item/useradded607.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded607","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded607", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded608.json b/src/main/resources/assets/imsm/models/item/useradded608.json index d007dc4f..b2a97fa0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded608.json +++ b/src/main/resources/assets/imsm/models/item/useradded608.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded608","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded608", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded609.json b/src/main/resources/assets/imsm/models/item/useradded609.json index daa4fe1e..efb295ec 100644 --- a/src/main/resources/assets/imsm/models/item/useradded609.json +++ b/src/main/resources/assets/imsm/models/item/useradded609.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded609","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded609", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded61.json b/src/main/resources/assets/imsm/models/item/useradded61.json index e963fe91..fc40653e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded61.json +++ b/src/main/resources/assets/imsm/models/item/useradded61.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded61","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded61", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded610.json b/src/main/resources/assets/imsm/models/item/useradded610.json index bfc2b591..49411de5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded610.json +++ b/src/main/resources/assets/imsm/models/item/useradded610.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded610","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded610", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded611.json b/src/main/resources/assets/imsm/models/item/useradded611.json index 4f85d32b..59281639 100644 --- a/src/main/resources/assets/imsm/models/item/useradded611.json +++ b/src/main/resources/assets/imsm/models/item/useradded611.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded611","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded611", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded612.json b/src/main/resources/assets/imsm/models/item/useradded612.json index 866eade8..cc1bf5a7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded612.json +++ b/src/main/resources/assets/imsm/models/item/useradded612.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded612","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded612", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded613.json b/src/main/resources/assets/imsm/models/item/useradded613.json index b0211c32..bb100d3c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded613.json +++ b/src/main/resources/assets/imsm/models/item/useradded613.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded613","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded613", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded614.json b/src/main/resources/assets/imsm/models/item/useradded614.json index 47c06281..2d476c6a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded614.json +++ b/src/main/resources/assets/imsm/models/item/useradded614.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded614","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded614", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded615.json b/src/main/resources/assets/imsm/models/item/useradded615.json index 6f6dcf3f..7f7d820a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded615.json +++ b/src/main/resources/assets/imsm/models/item/useradded615.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded615","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded615", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded616.json b/src/main/resources/assets/imsm/models/item/useradded616.json index 025732e4..11789f55 100644 --- a/src/main/resources/assets/imsm/models/item/useradded616.json +++ b/src/main/resources/assets/imsm/models/item/useradded616.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded616","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded616", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded617.json b/src/main/resources/assets/imsm/models/item/useradded617.json index a46f1a3e..d61abcc7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded617.json +++ b/src/main/resources/assets/imsm/models/item/useradded617.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded617","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded617", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded618.json b/src/main/resources/assets/imsm/models/item/useradded618.json index 7c10432b..93c2ccf5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded618.json +++ b/src/main/resources/assets/imsm/models/item/useradded618.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded618","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded618", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded619.json b/src/main/resources/assets/imsm/models/item/useradded619.json index d46db339..dde03e86 100644 --- a/src/main/resources/assets/imsm/models/item/useradded619.json +++ b/src/main/resources/assets/imsm/models/item/useradded619.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded619","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded619", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded62.json b/src/main/resources/assets/imsm/models/item/useradded62.json index cfe45500..f85a66a1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded62.json +++ b/src/main/resources/assets/imsm/models/item/useradded62.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded62","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded62", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded620.json b/src/main/resources/assets/imsm/models/item/useradded620.json index d56fd002..adcb79ca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded620.json +++ b/src/main/resources/assets/imsm/models/item/useradded620.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded620","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded620", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded621.json b/src/main/resources/assets/imsm/models/item/useradded621.json index c4b43e2b..e94b2b8d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded621.json +++ b/src/main/resources/assets/imsm/models/item/useradded621.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded621","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded621", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded622.json b/src/main/resources/assets/imsm/models/item/useradded622.json index ae36e9b2..c1a0fb3c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded622.json +++ b/src/main/resources/assets/imsm/models/item/useradded622.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded622","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded622", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded623.json b/src/main/resources/assets/imsm/models/item/useradded623.json index 8ed0352e..fa983c9d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded623.json +++ b/src/main/resources/assets/imsm/models/item/useradded623.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded623","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded623", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded624.json b/src/main/resources/assets/imsm/models/item/useradded624.json index dd6fe45e..616dd4e5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded624.json +++ b/src/main/resources/assets/imsm/models/item/useradded624.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded624","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded624", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded625.json b/src/main/resources/assets/imsm/models/item/useradded625.json index 9d5c0e42..8a89650d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded625.json +++ b/src/main/resources/assets/imsm/models/item/useradded625.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded625","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded625", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded626.json b/src/main/resources/assets/imsm/models/item/useradded626.json index b9add36d..a9548972 100644 --- a/src/main/resources/assets/imsm/models/item/useradded626.json +++ b/src/main/resources/assets/imsm/models/item/useradded626.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded626","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded626", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded627.json b/src/main/resources/assets/imsm/models/item/useradded627.json index 7125e3b9..57ab6d7c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded627.json +++ b/src/main/resources/assets/imsm/models/item/useradded627.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded627","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded627", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded628.json b/src/main/resources/assets/imsm/models/item/useradded628.json index 443036de..2afbf66a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded628.json +++ b/src/main/resources/assets/imsm/models/item/useradded628.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded628","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded628", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded629.json b/src/main/resources/assets/imsm/models/item/useradded629.json index 4c8f25df..e6ef56b1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded629.json +++ b/src/main/resources/assets/imsm/models/item/useradded629.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded629","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded629", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded63.json b/src/main/resources/assets/imsm/models/item/useradded63.json index b1c0f562..9ecbc07a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded63.json +++ b/src/main/resources/assets/imsm/models/item/useradded63.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded63","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded63", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded630.json b/src/main/resources/assets/imsm/models/item/useradded630.json index 98c36197..44102fa0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded630.json +++ b/src/main/resources/assets/imsm/models/item/useradded630.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded630","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded630", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded631.json b/src/main/resources/assets/imsm/models/item/useradded631.json index 9f7a3085..b5f8e45d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded631.json +++ b/src/main/resources/assets/imsm/models/item/useradded631.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded631","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded631", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded632.json b/src/main/resources/assets/imsm/models/item/useradded632.json index 72d566b5..5e32abbe 100644 --- a/src/main/resources/assets/imsm/models/item/useradded632.json +++ b/src/main/resources/assets/imsm/models/item/useradded632.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded632","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded632", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded633.json b/src/main/resources/assets/imsm/models/item/useradded633.json index 24fd0890..a2e0b6f3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded633.json +++ b/src/main/resources/assets/imsm/models/item/useradded633.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded633","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded633", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded634.json b/src/main/resources/assets/imsm/models/item/useradded634.json index de05b3b6..1fd6ed8c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded634.json +++ b/src/main/resources/assets/imsm/models/item/useradded634.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded634","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded634", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded635.json b/src/main/resources/assets/imsm/models/item/useradded635.json index 69d419fc..8458088b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded635.json +++ b/src/main/resources/assets/imsm/models/item/useradded635.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded635","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded635", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded636.json b/src/main/resources/assets/imsm/models/item/useradded636.json index f05cb07b..363bbf48 100644 --- a/src/main/resources/assets/imsm/models/item/useradded636.json +++ b/src/main/resources/assets/imsm/models/item/useradded636.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded636","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded636", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded637.json b/src/main/resources/assets/imsm/models/item/useradded637.json index 33745ef7..5fc488ed 100644 --- a/src/main/resources/assets/imsm/models/item/useradded637.json +++ b/src/main/resources/assets/imsm/models/item/useradded637.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded637","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded637", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded638.json b/src/main/resources/assets/imsm/models/item/useradded638.json index 23d75a5f..611733f8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded638.json +++ b/src/main/resources/assets/imsm/models/item/useradded638.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded638","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded638", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded639.json b/src/main/resources/assets/imsm/models/item/useradded639.json index ad081537..56f638e3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded639.json +++ b/src/main/resources/assets/imsm/models/item/useradded639.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded639","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded639", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded64.json b/src/main/resources/assets/imsm/models/item/useradded64.json index 9fd17317..d152480d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded64.json +++ b/src/main/resources/assets/imsm/models/item/useradded64.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded64","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded64", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded640.json b/src/main/resources/assets/imsm/models/item/useradded640.json index 1c8204e4..4a46fc4b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded640.json +++ b/src/main/resources/assets/imsm/models/item/useradded640.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded640","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded640", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded641.json b/src/main/resources/assets/imsm/models/item/useradded641.json index 467901be..4cc89ad3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded641.json +++ b/src/main/resources/assets/imsm/models/item/useradded641.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded641","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded641", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded642.json b/src/main/resources/assets/imsm/models/item/useradded642.json index cd51d0d3..25d184eb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded642.json +++ b/src/main/resources/assets/imsm/models/item/useradded642.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded642","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded642", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded643.json b/src/main/resources/assets/imsm/models/item/useradded643.json index 7bcb39fa..9671ad87 100644 --- a/src/main/resources/assets/imsm/models/item/useradded643.json +++ b/src/main/resources/assets/imsm/models/item/useradded643.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded643","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded643", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded644.json b/src/main/resources/assets/imsm/models/item/useradded644.json index d3a75fb8..1aa21a1a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded644.json +++ b/src/main/resources/assets/imsm/models/item/useradded644.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded644","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded644", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded645.json b/src/main/resources/assets/imsm/models/item/useradded645.json index 90068166..125853a1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded645.json +++ b/src/main/resources/assets/imsm/models/item/useradded645.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded645","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded645", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded646.json b/src/main/resources/assets/imsm/models/item/useradded646.json index 4c2df068..0e051975 100644 --- a/src/main/resources/assets/imsm/models/item/useradded646.json +++ b/src/main/resources/assets/imsm/models/item/useradded646.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded646","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded646", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded647.json b/src/main/resources/assets/imsm/models/item/useradded647.json index 717b10c8..49cf249b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded647.json +++ b/src/main/resources/assets/imsm/models/item/useradded647.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded647","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded647", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded648.json b/src/main/resources/assets/imsm/models/item/useradded648.json index d3f6e6f4..c52b6adc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded648.json +++ b/src/main/resources/assets/imsm/models/item/useradded648.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded648","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded648", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded649.json b/src/main/resources/assets/imsm/models/item/useradded649.json index 362d0e40..8c8cb359 100644 --- a/src/main/resources/assets/imsm/models/item/useradded649.json +++ b/src/main/resources/assets/imsm/models/item/useradded649.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded649","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded649", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded65.json b/src/main/resources/assets/imsm/models/item/useradded65.json index 65c8f2a5..d221f042 100644 --- a/src/main/resources/assets/imsm/models/item/useradded65.json +++ b/src/main/resources/assets/imsm/models/item/useradded65.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded65","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded65", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded650.json b/src/main/resources/assets/imsm/models/item/useradded650.json index bcc9712c..a1d1a448 100644 --- a/src/main/resources/assets/imsm/models/item/useradded650.json +++ b/src/main/resources/assets/imsm/models/item/useradded650.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded650","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded650", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded651.json b/src/main/resources/assets/imsm/models/item/useradded651.json index 95bed07e..5cc28aaa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded651.json +++ b/src/main/resources/assets/imsm/models/item/useradded651.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded651","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded651", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded652.json b/src/main/resources/assets/imsm/models/item/useradded652.json index cb6dde6f..2d19cb19 100644 --- a/src/main/resources/assets/imsm/models/item/useradded652.json +++ b/src/main/resources/assets/imsm/models/item/useradded652.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded652","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded652", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded653.json b/src/main/resources/assets/imsm/models/item/useradded653.json index 13a08515..baf1f632 100644 --- a/src/main/resources/assets/imsm/models/item/useradded653.json +++ b/src/main/resources/assets/imsm/models/item/useradded653.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded653","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded653", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded654.json b/src/main/resources/assets/imsm/models/item/useradded654.json index 55ae09c6..75272702 100644 --- a/src/main/resources/assets/imsm/models/item/useradded654.json +++ b/src/main/resources/assets/imsm/models/item/useradded654.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded654","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded654", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded655.json b/src/main/resources/assets/imsm/models/item/useradded655.json index 161854e2..bfab4d16 100644 --- a/src/main/resources/assets/imsm/models/item/useradded655.json +++ b/src/main/resources/assets/imsm/models/item/useradded655.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded655","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded655", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded656.json b/src/main/resources/assets/imsm/models/item/useradded656.json index 8055f7bd..971af1cc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded656.json +++ b/src/main/resources/assets/imsm/models/item/useradded656.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded656","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded656", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded657.json b/src/main/resources/assets/imsm/models/item/useradded657.json index 2cde262c..39b520c6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded657.json +++ b/src/main/resources/assets/imsm/models/item/useradded657.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded657","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded657", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded658.json b/src/main/resources/assets/imsm/models/item/useradded658.json index 73d766d0..ab122c09 100644 --- a/src/main/resources/assets/imsm/models/item/useradded658.json +++ b/src/main/resources/assets/imsm/models/item/useradded658.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded658","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded658", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded659.json b/src/main/resources/assets/imsm/models/item/useradded659.json index cb9cbe46..688dbd3f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded659.json +++ b/src/main/resources/assets/imsm/models/item/useradded659.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded659","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded659", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded66.json b/src/main/resources/assets/imsm/models/item/useradded66.json index 95a55d16..4115aa36 100644 --- a/src/main/resources/assets/imsm/models/item/useradded66.json +++ b/src/main/resources/assets/imsm/models/item/useradded66.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded66","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded66", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded660.json b/src/main/resources/assets/imsm/models/item/useradded660.json index 87279fa0..a4877f86 100644 --- a/src/main/resources/assets/imsm/models/item/useradded660.json +++ b/src/main/resources/assets/imsm/models/item/useradded660.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded660","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded660", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded661.json b/src/main/resources/assets/imsm/models/item/useradded661.json index 5c5b8c0a..db9fe3e5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded661.json +++ b/src/main/resources/assets/imsm/models/item/useradded661.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded661","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded661", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded662.json b/src/main/resources/assets/imsm/models/item/useradded662.json index 3ce3abd9..92fb0df9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded662.json +++ b/src/main/resources/assets/imsm/models/item/useradded662.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded662","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded662", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded663.json b/src/main/resources/assets/imsm/models/item/useradded663.json index b20a915f..e4fa4e2b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded663.json +++ b/src/main/resources/assets/imsm/models/item/useradded663.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded663","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded663", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded664.json b/src/main/resources/assets/imsm/models/item/useradded664.json index 90f93f66..b5dc3962 100644 --- a/src/main/resources/assets/imsm/models/item/useradded664.json +++ b/src/main/resources/assets/imsm/models/item/useradded664.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded664","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded664", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded665.json b/src/main/resources/assets/imsm/models/item/useradded665.json index 72fd64f6..6789bdf0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded665.json +++ b/src/main/resources/assets/imsm/models/item/useradded665.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded665","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded665", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded666.json b/src/main/resources/assets/imsm/models/item/useradded666.json index 28d01a88..f766d474 100644 --- a/src/main/resources/assets/imsm/models/item/useradded666.json +++ b/src/main/resources/assets/imsm/models/item/useradded666.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded666","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded666", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded667.json b/src/main/resources/assets/imsm/models/item/useradded667.json index f3426ba3..4722101d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded667.json +++ b/src/main/resources/assets/imsm/models/item/useradded667.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded667","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded667", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded668.json b/src/main/resources/assets/imsm/models/item/useradded668.json index 5ce26baa..645847df 100644 --- a/src/main/resources/assets/imsm/models/item/useradded668.json +++ b/src/main/resources/assets/imsm/models/item/useradded668.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded668","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded668", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded669.json b/src/main/resources/assets/imsm/models/item/useradded669.json index 7a23b6f2..543c6e4f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded669.json +++ b/src/main/resources/assets/imsm/models/item/useradded669.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded669","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded669", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded67.json b/src/main/resources/assets/imsm/models/item/useradded67.json index 39f12dfc..3bf56043 100644 --- a/src/main/resources/assets/imsm/models/item/useradded67.json +++ b/src/main/resources/assets/imsm/models/item/useradded67.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded67","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded67", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded670.json b/src/main/resources/assets/imsm/models/item/useradded670.json index 6a866022..bd742235 100644 --- a/src/main/resources/assets/imsm/models/item/useradded670.json +++ b/src/main/resources/assets/imsm/models/item/useradded670.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded670","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded670", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded671.json b/src/main/resources/assets/imsm/models/item/useradded671.json index f29e597c..5b3653f9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded671.json +++ b/src/main/resources/assets/imsm/models/item/useradded671.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded671","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded671", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded672.json b/src/main/resources/assets/imsm/models/item/useradded672.json index e3339c73..9b7b140e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded672.json +++ b/src/main/resources/assets/imsm/models/item/useradded672.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded672","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded672", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded673.json b/src/main/resources/assets/imsm/models/item/useradded673.json index 71b1a2a8..b0e06919 100644 --- a/src/main/resources/assets/imsm/models/item/useradded673.json +++ b/src/main/resources/assets/imsm/models/item/useradded673.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded673","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded673", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded674.json b/src/main/resources/assets/imsm/models/item/useradded674.json index e176b040..cf1f69c7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded674.json +++ b/src/main/resources/assets/imsm/models/item/useradded674.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded674","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded674", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded675.json b/src/main/resources/assets/imsm/models/item/useradded675.json index 8692f7ff..c6d16eaf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded675.json +++ b/src/main/resources/assets/imsm/models/item/useradded675.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded675","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded675", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded676.json b/src/main/resources/assets/imsm/models/item/useradded676.json index 18fb1cce..0c1f0c2f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded676.json +++ b/src/main/resources/assets/imsm/models/item/useradded676.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded676","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded676", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded677.json b/src/main/resources/assets/imsm/models/item/useradded677.json index 821d337c..ca9f9258 100644 --- a/src/main/resources/assets/imsm/models/item/useradded677.json +++ b/src/main/resources/assets/imsm/models/item/useradded677.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded677","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded677", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded678.json b/src/main/resources/assets/imsm/models/item/useradded678.json index 4428ed2a..4b85ae20 100644 --- a/src/main/resources/assets/imsm/models/item/useradded678.json +++ b/src/main/resources/assets/imsm/models/item/useradded678.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded678","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded678", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded679.json b/src/main/resources/assets/imsm/models/item/useradded679.json index 44f6ffda..210c3022 100644 --- a/src/main/resources/assets/imsm/models/item/useradded679.json +++ b/src/main/resources/assets/imsm/models/item/useradded679.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded679","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded679", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded68.json b/src/main/resources/assets/imsm/models/item/useradded68.json index 205ce9f0..52a71f2d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded68.json +++ b/src/main/resources/assets/imsm/models/item/useradded68.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded68","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded68", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded680.json b/src/main/resources/assets/imsm/models/item/useradded680.json index 3bc78f58..e3345fed 100644 --- a/src/main/resources/assets/imsm/models/item/useradded680.json +++ b/src/main/resources/assets/imsm/models/item/useradded680.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded680","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded680", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded681.json b/src/main/resources/assets/imsm/models/item/useradded681.json index 6533699e..f986842d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded681.json +++ b/src/main/resources/assets/imsm/models/item/useradded681.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded681","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded681", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded682.json b/src/main/resources/assets/imsm/models/item/useradded682.json index 61ef5d5f..5e648bd7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded682.json +++ b/src/main/resources/assets/imsm/models/item/useradded682.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded682","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded682", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded683.json b/src/main/resources/assets/imsm/models/item/useradded683.json index 41f4a8d5..f5bf89e6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded683.json +++ b/src/main/resources/assets/imsm/models/item/useradded683.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded683","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded683", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded684.json b/src/main/resources/assets/imsm/models/item/useradded684.json index 137e09ee..75d8839a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded684.json +++ b/src/main/resources/assets/imsm/models/item/useradded684.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded684","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded684", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded685.json b/src/main/resources/assets/imsm/models/item/useradded685.json index 1a4030a2..43f291c0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded685.json +++ b/src/main/resources/assets/imsm/models/item/useradded685.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded685","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded685", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded686.json b/src/main/resources/assets/imsm/models/item/useradded686.json index e8fa51b8..788aa701 100644 --- a/src/main/resources/assets/imsm/models/item/useradded686.json +++ b/src/main/resources/assets/imsm/models/item/useradded686.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded686","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded686", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded687.json b/src/main/resources/assets/imsm/models/item/useradded687.json index 669b3603..49143b12 100644 --- a/src/main/resources/assets/imsm/models/item/useradded687.json +++ b/src/main/resources/assets/imsm/models/item/useradded687.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded687","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded687", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded688.json b/src/main/resources/assets/imsm/models/item/useradded688.json index f1763413..cf508b77 100644 --- a/src/main/resources/assets/imsm/models/item/useradded688.json +++ b/src/main/resources/assets/imsm/models/item/useradded688.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded688","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded688", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded689.json b/src/main/resources/assets/imsm/models/item/useradded689.json index 91d07448..43a0f1ce 100644 --- a/src/main/resources/assets/imsm/models/item/useradded689.json +++ b/src/main/resources/assets/imsm/models/item/useradded689.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded689","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded689", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded69.json b/src/main/resources/assets/imsm/models/item/useradded69.json index 9879b78e..a6cfb3bf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded69.json +++ b/src/main/resources/assets/imsm/models/item/useradded69.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded69","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded69", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded690.json b/src/main/resources/assets/imsm/models/item/useradded690.json index 3c4f1886..fc64befa 100644 --- a/src/main/resources/assets/imsm/models/item/useradded690.json +++ b/src/main/resources/assets/imsm/models/item/useradded690.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded690","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded690", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded691.json b/src/main/resources/assets/imsm/models/item/useradded691.json index b03e5a1b..ab6d5919 100644 --- a/src/main/resources/assets/imsm/models/item/useradded691.json +++ b/src/main/resources/assets/imsm/models/item/useradded691.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded691","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded691", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded692.json b/src/main/resources/assets/imsm/models/item/useradded692.json index a0f99303..fd71dc8d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded692.json +++ b/src/main/resources/assets/imsm/models/item/useradded692.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded692","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded692", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded693.json b/src/main/resources/assets/imsm/models/item/useradded693.json index b7fe6efc..cbdb89c9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded693.json +++ b/src/main/resources/assets/imsm/models/item/useradded693.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded693","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded693", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded694.json b/src/main/resources/assets/imsm/models/item/useradded694.json index e220012f..c12389bc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded694.json +++ b/src/main/resources/assets/imsm/models/item/useradded694.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded694","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded694", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded695.json b/src/main/resources/assets/imsm/models/item/useradded695.json index b5bee60f..d8211b47 100644 --- a/src/main/resources/assets/imsm/models/item/useradded695.json +++ b/src/main/resources/assets/imsm/models/item/useradded695.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded695","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded695", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded696.json b/src/main/resources/assets/imsm/models/item/useradded696.json index d1e7fe99..b53b280c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded696.json +++ b/src/main/resources/assets/imsm/models/item/useradded696.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded696","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded696", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded697.json b/src/main/resources/assets/imsm/models/item/useradded697.json index 5ad64dde..f34d639f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded697.json +++ b/src/main/resources/assets/imsm/models/item/useradded697.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded697","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded697", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded698.json b/src/main/resources/assets/imsm/models/item/useradded698.json index 73209c62..c06a7e07 100644 --- a/src/main/resources/assets/imsm/models/item/useradded698.json +++ b/src/main/resources/assets/imsm/models/item/useradded698.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded698","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded698", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded699.json b/src/main/resources/assets/imsm/models/item/useradded699.json index adca9c75..7fc1bf3a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded699.json +++ b/src/main/resources/assets/imsm/models/item/useradded699.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded699","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded699", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded7.json b/src/main/resources/assets/imsm/models/item/useradded7.json index b056dd57..9657a9a2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded7.json +++ b/src/main/resources/assets/imsm/models/item/useradded7.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded7","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded7", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded70.json b/src/main/resources/assets/imsm/models/item/useradded70.json index 47fb1ad2..199e00f8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded70.json +++ b/src/main/resources/assets/imsm/models/item/useradded70.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded70","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded70", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded700.json b/src/main/resources/assets/imsm/models/item/useradded700.json index c38be88b..9de3ea54 100644 --- a/src/main/resources/assets/imsm/models/item/useradded700.json +++ b/src/main/resources/assets/imsm/models/item/useradded700.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded700","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded700", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded701.json b/src/main/resources/assets/imsm/models/item/useradded701.json index d73f0071..ce0bb32f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded701.json +++ b/src/main/resources/assets/imsm/models/item/useradded701.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded701","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded701", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded702.json b/src/main/resources/assets/imsm/models/item/useradded702.json index 67c7a66e..b5c875d3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded702.json +++ b/src/main/resources/assets/imsm/models/item/useradded702.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded702","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded702", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded703.json b/src/main/resources/assets/imsm/models/item/useradded703.json index f31659c0..acbc18b0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded703.json +++ b/src/main/resources/assets/imsm/models/item/useradded703.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded703","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded703", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded704.json b/src/main/resources/assets/imsm/models/item/useradded704.json index 3273e1e6..7efca989 100644 --- a/src/main/resources/assets/imsm/models/item/useradded704.json +++ b/src/main/resources/assets/imsm/models/item/useradded704.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded704","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded704", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded705.json b/src/main/resources/assets/imsm/models/item/useradded705.json index 4ae77d42..575160f6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded705.json +++ b/src/main/resources/assets/imsm/models/item/useradded705.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded705","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded705", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded706.json b/src/main/resources/assets/imsm/models/item/useradded706.json index b0ff4250..a60df3c3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded706.json +++ b/src/main/resources/assets/imsm/models/item/useradded706.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded706","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded706", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded707.json b/src/main/resources/assets/imsm/models/item/useradded707.json index 91d38bd5..6152bada 100644 --- a/src/main/resources/assets/imsm/models/item/useradded707.json +++ b/src/main/resources/assets/imsm/models/item/useradded707.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded707","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded707", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded708.json b/src/main/resources/assets/imsm/models/item/useradded708.json index adb3e44e..3594e5d7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded708.json +++ b/src/main/resources/assets/imsm/models/item/useradded708.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded708","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded708", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded709.json b/src/main/resources/assets/imsm/models/item/useradded709.json index 8d812733..9c886b50 100644 --- a/src/main/resources/assets/imsm/models/item/useradded709.json +++ b/src/main/resources/assets/imsm/models/item/useradded709.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded709","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded709", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded71.json b/src/main/resources/assets/imsm/models/item/useradded71.json index add29d59..95e5895b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded71.json +++ b/src/main/resources/assets/imsm/models/item/useradded71.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded71","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded71", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded710.json b/src/main/resources/assets/imsm/models/item/useradded710.json index ae4151c4..75cda590 100644 --- a/src/main/resources/assets/imsm/models/item/useradded710.json +++ b/src/main/resources/assets/imsm/models/item/useradded710.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded710","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded710", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded711.json b/src/main/resources/assets/imsm/models/item/useradded711.json index dfdd9636..6b9b210e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded711.json +++ b/src/main/resources/assets/imsm/models/item/useradded711.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded711","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded711", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded712.json b/src/main/resources/assets/imsm/models/item/useradded712.json index 703c659f..0fe6ae1e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded712.json +++ b/src/main/resources/assets/imsm/models/item/useradded712.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded712","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded712", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded713.json b/src/main/resources/assets/imsm/models/item/useradded713.json index 1da5af2b..62f94f72 100644 --- a/src/main/resources/assets/imsm/models/item/useradded713.json +++ b/src/main/resources/assets/imsm/models/item/useradded713.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded713","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded713", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded714.json b/src/main/resources/assets/imsm/models/item/useradded714.json index 003447c5..ab8a1554 100644 --- a/src/main/resources/assets/imsm/models/item/useradded714.json +++ b/src/main/resources/assets/imsm/models/item/useradded714.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded714","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded714", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded715.json b/src/main/resources/assets/imsm/models/item/useradded715.json index 89114128..ec28d6b7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded715.json +++ b/src/main/resources/assets/imsm/models/item/useradded715.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded715","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded715", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded716.json b/src/main/resources/assets/imsm/models/item/useradded716.json index 827b88b1..1fd05406 100644 --- a/src/main/resources/assets/imsm/models/item/useradded716.json +++ b/src/main/resources/assets/imsm/models/item/useradded716.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded716","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded716", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded717.json b/src/main/resources/assets/imsm/models/item/useradded717.json index ea850602..286793d5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded717.json +++ b/src/main/resources/assets/imsm/models/item/useradded717.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded717","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded717", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded718.json b/src/main/resources/assets/imsm/models/item/useradded718.json index af86d8e6..92dd0797 100644 --- a/src/main/resources/assets/imsm/models/item/useradded718.json +++ b/src/main/resources/assets/imsm/models/item/useradded718.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded718","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded718", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded719.json b/src/main/resources/assets/imsm/models/item/useradded719.json index 01205e77..35c66988 100644 --- a/src/main/resources/assets/imsm/models/item/useradded719.json +++ b/src/main/resources/assets/imsm/models/item/useradded719.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded719","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded719", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded72.json b/src/main/resources/assets/imsm/models/item/useradded72.json index af14c58f..fc2afd8d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded72.json +++ b/src/main/resources/assets/imsm/models/item/useradded72.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded72","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded72", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded720.json b/src/main/resources/assets/imsm/models/item/useradded720.json index 00bae7f9..b5442bea 100644 --- a/src/main/resources/assets/imsm/models/item/useradded720.json +++ b/src/main/resources/assets/imsm/models/item/useradded720.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded720","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded720", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded721.json b/src/main/resources/assets/imsm/models/item/useradded721.json index 851dbe3f..31c75112 100644 --- a/src/main/resources/assets/imsm/models/item/useradded721.json +++ b/src/main/resources/assets/imsm/models/item/useradded721.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded721","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded721", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded722.json b/src/main/resources/assets/imsm/models/item/useradded722.json index d447aa83..c00ff6a9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded722.json +++ b/src/main/resources/assets/imsm/models/item/useradded722.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded722","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded722", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded723.json b/src/main/resources/assets/imsm/models/item/useradded723.json index bdd357fe..415d347c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded723.json +++ b/src/main/resources/assets/imsm/models/item/useradded723.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded723","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded723", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded724.json b/src/main/resources/assets/imsm/models/item/useradded724.json index f59205bb..edf4b4e5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded724.json +++ b/src/main/resources/assets/imsm/models/item/useradded724.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded724","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded724", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded725.json b/src/main/resources/assets/imsm/models/item/useradded725.json index eafc570f..96a61e82 100644 --- a/src/main/resources/assets/imsm/models/item/useradded725.json +++ b/src/main/resources/assets/imsm/models/item/useradded725.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded725","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded725", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded726.json b/src/main/resources/assets/imsm/models/item/useradded726.json index ee696c41..b1c2b3e0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded726.json +++ b/src/main/resources/assets/imsm/models/item/useradded726.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded726","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded726", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded727.json b/src/main/resources/assets/imsm/models/item/useradded727.json index 86465113..69dff5e7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded727.json +++ b/src/main/resources/assets/imsm/models/item/useradded727.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded727","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded727", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded728.json b/src/main/resources/assets/imsm/models/item/useradded728.json index e30583d1..054a53d3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded728.json +++ b/src/main/resources/assets/imsm/models/item/useradded728.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded728","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded728", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded729.json b/src/main/resources/assets/imsm/models/item/useradded729.json index f44c14a3..2433218b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded729.json +++ b/src/main/resources/assets/imsm/models/item/useradded729.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded729","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded729", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded73.json b/src/main/resources/assets/imsm/models/item/useradded73.json index 66c6c8b1..7f575e37 100644 --- a/src/main/resources/assets/imsm/models/item/useradded73.json +++ b/src/main/resources/assets/imsm/models/item/useradded73.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded73","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded73", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded730.json b/src/main/resources/assets/imsm/models/item/useradded730.json index 3dbab648..dfce4f4c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded730.json +++ b/src/main/resources/assets/imsm/models/item/useradded730.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded730","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded730", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded731.json b/src/main/resources/assets/imsm/models/item/useradded731.json index 033aa396..350c1451 100644 --- a/src/main/resources/assets/imsm/models/item/useradded731.json +++ b/src/main/resources/assets/imsm/models/item/useradded731.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded731","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded731", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded732.json b/src/main/resources/assets/imsm/models/item/useradded732.json index 992fa981..cccc43d7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded732.json +++ b/src/main/resources/assets/imsm/models/item/useradded732.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded732","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded732", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded733.json b/src/main/resources/assets/imsm/models/item/useradded733.json index efdf1e7e..26d8118e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded733.json +++ b/src/main/resources/assets/imsm/models/item/useradded733.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded733","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded733", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded734.json b/src/main/resources/assets/imsm/models/item/useradded734.json index 96bb0e56..e55efe5c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded734.json +++ b/src/main/resources/assets/imsm/models/item/useradded734.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded734","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded734", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded735.json b/src/main/resources/assets/imsm/models/item/useradded735.json index 3a111618..b9146d88 100644 --- a/src/main/resources/assets/imsm/models/item/useradded735.json +++ b/src/main/resources/assets/imsm/models/item/useradded735.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded735","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded735", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded736.json b/src/main/resources/assets/imsm/models/item/useradded736.json index 7111ad4f..7de3b01f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded736.json +++ b/src/main/resources/assets/imsm/models/item/useradded736.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded736","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded736", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded737.json b/src/main/resources/assets/imsm/models/item/useradded737.json index c7182c59..7f63565b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded737.json +++ b/src/main/resources/assets/imsm/models/item/useradded737.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded737","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded737", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded738.json b/src/main/resources/assets/imsm/models/item/useradded738.json index 87baf7eb..121eff8f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded738.json +++ b/src/main/resources/assets/imsm/models/item/useradded738.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded738","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded738", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded739.json b/src/main/resources/assets/imsm/models/item/useradded739.json index a7130078..1c71ac2f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded739.json +++ b/src/main/resources/assets/imsm/models/item/useradded739.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded739","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded739", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded74.json b/src/main/resources/assets/imsm/models/item/useradded74.json index 00936e5a..b04da18c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded74.json +++ b/src/main/resources/assets/imsm/models/item/useradded74.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded74","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded74", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded740.json b/src/main/resources/assets/imsm/models/item/useradded740.json index 289c98b8..8c8c6567 100644 --- a/src/main/resources/assets/imsm/models/item/useradded740.json +++ b/src/main/resources/assets/imsm/models/item/useradded740.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded740","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded740", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded741.json b/src/main/resources/assets/imsm/models/item/useradded741.json index 2bed9ddd..72c9cb40 100644 --- a/src/main/resources/assets/imsm/models/item/useradded741.json +++ b/src/main/resources/assets/imsm/models/item/useradded741.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded741","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded741", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded742.json b/src/main/resources/assets/imsm/models/item/useradded742.json index 17559b10..f24178a6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded742.json +++ b/src/main/resources/assets/imsm/models/item/useradded742.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded742","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded742", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded743.json b/src/main/resources/assets/imsm/models/item/useradded743.json index 9b095c28..aa5261ad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded743.json +++ b/src/main/resources/assets/imsm/models/item/useradded743.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded743","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded743", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded744.json b/src/main/resources/assets/imsm/models/item/useradded744.json index efcb359d..00c6ae38 100644 --- a/src/main/resources/assets/imsm/models/item/useradded744.json +++ b/src/main/resources/assets/imsm/models/item/useradded744.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded744","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded744", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded745.json b/src/main/resources/assets/imsm/models/item/useradded745.json index 1092a4e8..c2c2b756 100644 --- a/src/main/resources/assets/imsm/models/item/useradded745.json +++ b/src/main/resources/assets/imsm/models/item/useradded745.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded745","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded745", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded746.json b/src/main/resources/assets/imsm/models/item/useradded746.json index 36afcd4f..7024b776 100644 --- a/src/main/resources/assets/imsm/models/item/useradded746.json +++ b/src/main/resources/assets/imsm/models/item/useradded746.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded746","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded746", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded747.json b/src/main/resources/assets/imsm/models/item/useradded747.json index 4fefad1e..a3c5ba4b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded747.json +++ b/src/main/resources/assets/imsm/models/item/useradded747.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded747","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded747", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded748.json b/src/main/resources/assets/imsm/models/item/useradded748.json index 81ed18ae..a6ea1bc9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded748.json +++ b/src/main/resources/assets/imsm/models/item/useradded748.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded748","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded748", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded749.json b/src/main/resources/assets/imsm/models/item/useradded749.json index 99c0a43b..983981f2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded749.json +++ b/src/main/resources/assets/imsm/models/item/useradded749.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded749","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded749", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded75.json b/src/main/resources/assets/imsm/models/item/useradded75.json index cbeeb465..fcd0abee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded75.json +++ b/src/main/resources/assets/imsm/models/item/useradded75.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded75","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded75", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded750.json b/src/main/resources/assets/imsm/models/item/useradded750.json index 1a6acd70..32c3a9ee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded750.json +++ b/src/main/resources/assets/imsm/models/item/useradded750.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded750","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded750", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded751.json b/src/main/resources/assets/imsm/models/item/useradded751.json index a401452c..acc54442 100644 --- a/src/main/resources/assets/imsm/models/item/useradded751.json +++ b/src/main/resources/assets/imsm/models/item/useradded751.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded751","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded751", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded752.json b/src/main/resources/assets/imsm/models/item/useradded752.json index 4c5eb1fd..b5c403d8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded752.json +++ b/src/main/resources/assets/imsm/models/item/useradded752.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded752","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded752", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded753.json b/src/main/resources/assets/imsm/models/item/useradded753.json index 2ff0b315..3789c283 100644 --- a/src/main/resources/assets/imsm/models/item/useradded753.json +++ b/src/main/resources/assets/imsm/models/item/useradded753.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded753","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded753", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded754.json b/src/main/resources/assets/imsm/models/item/useradded754.json index c119462e..ac9cfa43 100644 --- a/src/main/resources/assets/imsm/models/item/useradded754.json +++ b/src/main/resources/assets/imsm/models/item/useradded754.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded754","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded754", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded755.json b/src/main/resources/assets/imsm/models/item/useradded755.json index 3af82ad4..d8a13894 100644 --- a/src/main/resources/assets/imsm/models/item/useradded755.json +++ b/src/main/resources/assets/imsm/models/item/useradded755.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded755","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded755", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded756.json b/src/main/resources/assets/imsm/models/item/useradded756.json index 03b18c49..c7aafd3c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded756.json +++ b/src/main/resources/assets/imsm/models/item/useradded756.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded756","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded756", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded757.json b/src/main/resources/assets/imsm/models/item/useradded757.json index 59fe265d..7a34d55c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded757.json +++ b/src/main/resources/assets/imsm/models/item/useradded757.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded757","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded757", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded758.json b/src/main/resources/assets/imsm/models/item/useradded758.json index ea9b4309..53fb70b1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded758.json +++ b/src/main/resources/assets/imsm/models/item/useradded758.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded758","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded758", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded759.json b/src/main/resources/assets/imsm/models/item/useradded759.json index 7fb675e3..a0ec1e77 100644 --- a/src/main/resources/assets/imsm/models/item/useradded759.json +++ b/src/main/resources/assets/imsm/models/item/useradded759.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded759","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded759", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded76.json b/src/main/resources/assets/imsm/models/item/useradded76.json index b1026ff0..390fb561 100644 --- a/src/main/resources/assets/imsm/models/item/useradded76.json +++ b/src/main/resources/assets/imsm/models/item/useradded76.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded76","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded76", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded760.json b/src/main/resources/assets/imsm/models/item/useradded760.json index 317acd7e..38d8c8cf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded760.json +++ b/src/main/resources/assets/imsm/models/item/useradded760.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded760","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded760", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded761.json b/src/main/resources/assets/imsm/models/item/useradded761.json index 90192374..145f109d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded761.json +++ b/src/main/resources/assets/imsm/models/item/useradded761.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded761","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded761", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded762.json b/src/main/resources/assets/imsm/models/item/useradded762.json index dc0a41ac..f884ac6f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded762.json +++ b/src/main/resources/assets/imsm/models/item/useradded762.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded762","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded762", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded763.json b/src/main/resources/assets/imsm/models/item/useradded763.json index 07910e15..831790cf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded763.json +++ b/src/main/resources/assets/imsm/models/item/useradded763.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded763","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded763", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded764.json b/src/main/resources/assets/imsm/models/item/useradded764.json index 7b2aa928..e2d39004 100644 --- a/src/main/resources/assets/imsm/models/item/useradded764.json +++ b/src/main/resources/assets/imsm/models/item/useradded764.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded764","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded764", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded765.json b/src/main/resources/assets/imsm/models/item/useradded765.json index 18e85b3b..ac4976ae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded765.json +++ b/src/main/resources/assets/imsm/models/item/useradded765.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded765","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded765", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded766.json b/src/main/resources/assets/imsm/models/item/useradded766.json index a98eb7a0..8c9ed0d1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded766.json +++ b/src/main/resources/assets/imsm/models/item/useradded766.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded766","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded766", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded767.json b/src/main/resources/assets/imsm/models/item/useradded767.json index 8ea67366..261cde27 100644 --- a/src/main/resources/assets/imsm/models/item/useradded767.json +++ b/src/main/resources/assets/imsm/models/item/useradded767.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded767","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded767", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded768.json b/src/main/resources/assets/imsm/models/item/useradded768.json index 411efc53..fa2d279a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded768.json +++ b/src/main/resources/assets/imsm/models/item/useradded768.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded768","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded768", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded769.json b/src/main/resources/assets/imsm/models/item/useradded769.json index 3cf503fb..69d06854 100644 --- a/src/main/resources/assets/imsm/models/item/useradded769.json +++ b/src/main/resources/assets/imsm/models/item/useradded769.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded769","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded769", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded77.json b/src/main/resources/assets/imsm/models/item/useradded77.json index a9a13540..e1fe150b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded77.json +++ b/src/main/resources/assets/imsm/models/item/useradded77.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded77","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded77", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded770.json b/src/main/resources/assets/imsm/models/item/useradded770.json index 2c2d7612..21a52711 100644 --- a/src/main/resources/assets/imsm/models/item/useradded770.json +++ b/src/main/resources/assets/imsm/models/item/useradded770.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded770","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded770", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded771.json b/src/main/resources/assets/imsm/models/item/useradded771.json index c9be558b..011a831e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded771.json +++ b/src/main/resources/assets/imsm/models/item/useradded771.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded771","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded771", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded772.json b/src/main/resources/assets/imsm/models/item/useradded772.json index fe229d65..2e87fff8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded772.json +++ b/src/main/resources/assets/imsm/models/item/useradded772.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded772","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded772", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded773.json b/src/main/resources/assets/imsm/models/item/useradded773.json index b6080764..9e7f0731 100644 --- a/src/main/resources/assets/imsm/models/item/useradded773.json +++ b/src/main/resources/assets/imsm/models/item/useradded773.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded773","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded773", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded774.json b/src/main/resources/assets/imsm/models/item/useradded774.json index b675a6df..2a9e48ee 100644 --- a/src/main/resources/assets/imsm/models/item/useradded774.json +++ b/src/main/resources/assets/imsm/models/item/useradded774.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded774","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded774", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded775.json b/src/main/resources/assets/imsm/models/item/useradded775.json index ed80c7db..d857b692 100644 --- a/src/main/resources/assets/imsm/models/item/useradded775.json +++ b/src/main/resources/assets/imsm/models/item/useradded775.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded775","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded775", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded776.json b/src/main/resources/assets/imsm/models/item/useradded776.json index 7567cdf3..b6b9af26 100644 --- a/src/main/resources/assets/imsm/models/item/useradded776.json +++ b/src/main/resources/assets/imsm/models/item/useradded776.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded776","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded776", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded777.json b/src/main/resources/assets/imsm/models/item/useradded777.json index 6354a207..e3653a20 100644 --- a/src/main/resources/assets/imsm/models/item/useradded777.json +++ b/src/main/resources/assets/imsm/models/item/useradded777.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded777","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded777", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded778.json b/src/main/resources/assets/imsm/models/item/useradded778.json index 711dc7fc..874e448c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded778.json +++ b/src/main/resources/assets/imsm/models/item/useradded778.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded778","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded778", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded779.json b/src/main/resources/assets/imsm/models/item/useradded779.json index d39e1d2b..0fe3b1c2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded779.json +++ b/src/main/resources/assets/imsm/models/item/useradded779.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded779","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded779", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded78.json b/src/main/resources/assets/imsm/models/item/useradded78.json index 22267b41..69d45718 100644 --- a/src/main/resources/assets/imsm/models/item/useradded78.json +++ b/src/main/resources/assets/imsm/models/item/useradded78.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded78","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded78", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded780.json b/src/main/resources/assets/imsm/models/item/useradded780.json index 2c21e043..8166d515 100644 --- a/src/main/resources/assets/imsm/models/item/useradded780.json +++ b/src/main/resources/assets/imsm/models/item/useradded780.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded780","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded780", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded781.json b/src/main/resources/assets/imsm/models/item/useradded781.json index 2ba2aef7..6909f8ba 100644 --- a/src/main/resources/assets/imsm/models/item/useradded781.json +++ b/src/main/resources/assets/imsm/models/item/useradded781.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded781","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded781", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded782.json b/src/main/resources/assets/imsm/models/item/useradded782.json index d826b882..6278f498 100644 --- a/src/main/resources/assets/imsm/models/item/useradded782.json +++ b/src/main/resources/assets/imsm/models/item/useradded782.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded782","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded782", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded783.json b/src/main/resources/assets/imsm/models/item/useradded783.json index e63574bc..4ede326f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded783.json +++ b/src/main/resources/assets/imsm/models/item/useradded783.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded783","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded783", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded784.json b/src/main/resources/assets/imsm/models/item/useradded784.json index e6f6ea40..fe5e14a4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded784.json +++ b/src/main/resources/assets/imsm/models/item/useradded784.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded784","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded784", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded785.json b/src/main/resources/assets/imsm/models/item/useradded785.json index 9b94fdab..7bd2eb0f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded785.json +++ b/src/main/resources/assets/imsm/models/item/useradded785.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded785","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded785", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded786.json b/src/main/resources/assets/imsm/models/item/useradded786.json index 32cc40c4..4d89a277 100644 --- a/src/main/resources/assets/imsm/models/item/useradded786.json +++ b/src/main/resources/assets/imsm/models/item/useradded786.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded786","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded786", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded787.json b/src/main/resources/assets/imsm/models/item/useradded787.json index e127a2c6..a3b89548 100644 --- a/src/main/resources/assets/imsm/models/item/useradded787.json +++ b/src/main/resources/assets/imsm/models/item/useradded787.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded787","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded787", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded788.json b/src/main/resources/assets/imsm/models/item/useradded788.json index d771cdbc..b6e3eb5e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded788.json +++ b/src/main/resources/assets/imsm/models/item/useradded788.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded788","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded788", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded789.json b/src/main/resources/assets/imsm/models/item/useradded789.json index 767849dc..48b04216 100644 --- a/src/main/resources/assets/imsm/models/item/useradded789.json +++ b/src/main/resources/assets/imsm/models/item/useradded789.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded789","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded789", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded79.json b/src/main/resources/assets/imsm/models/item/useradded79.json index 7954a965..d19a2363 100644 --- a/src/main/resources/assets/imsm/models/item/useradded79.json +++ b/src/main/resources/assets/imsm/models/item/useradded79.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded79","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded79", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded790.json b/src/main/resources/assets/imsm/models/item/useradded790.json index 64d4d379..0e263c23 100644 --- a/src/main/resources/assets/imsm/models/item/useradded790.json +++ b/src/main/resources/assets/imsm/models/item/useradded790.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded790","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded790", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded791.json b/src/main/resources/assets/imsm/models/item/useradded791.json index 9d7be9de..7f927217 100644 --- a/src/main/resources/assets/imsm/models/item/useradded791.json +++ b/src/main/resources/assets/imsm/models/item/useradded791.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded791","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded791", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded792.json b/src/main/resources/assets/imsm/models/item/useradded792.json index 1b95b1ff..c66db2db 100644 --- a/src/main/resources/assets/imsm/models/item/useradded792.json +++ b/src/main/resources/assets/imsm/models/item/useradded792.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded792","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded792", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded793.json b/src/main/resources/assets/imsm/models/item/useradded793.json index bce60202..28688c18 100644 --- a/src/main/resources/assets/imsm/models/item/useradded793.json +++ b/src/main/resources/assets/imsm/models/item/useradded793.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded793","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded793", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded794.json b/src/main/resources/assets/imsm/models/item/useradded794.json index e7ba6c06..b6165369 100644 --- a/src/main/resources/assets/imsm/models/item/useradded794.json +++ b/src/main/resources/assets/imsm/models/item/useradded794.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded794","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded794", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded795.json b/src/main/resources/assets/imsm/models/item/useradded795.json index 001a188f..bb3d9f5d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded795.json +++ b/src/main/resources/assets/imsm/models/item/useradded795.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded795","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded795", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded796.json b/src/main/resources/assets/imsm/models/item/useradded796.json index a95059e4..c40140a7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded796.json +++ b/src/main/resources/assets/imsm/models/item/useradded796.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded796","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded796", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded797.json b/src/main/resources/assets/imsm/models/item/useradded797.json index 388f696d..152c5f52 100644 --- a/src/main/resources/assets/imsm/models/item/useradded797.json +++ b/src/main/resources/assets/imsm/models/item/useradded797.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded797","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded797", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded798.json b/src/main/resources/assets/imsm/models/item/useradded798.json index 3b4f28cb..26a9a6d3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded798.json +++ b/src/main/resources/assets/imsm/models/item/useradded798.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded798","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded798", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded799.json b/src/main/resources/assets/imsm/models/item/useradded799.json index a2426f1d..4350a274 100644 --- a/src/main/resources/assets/imsm/models/item/useradded799.json +++ b/src/main/resources/assets/imsm/models/item/useradded799.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded799","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded799", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded8.json b/src/main/resources/assets/imsm/models/item/useradded8.json index 96eee335..562a9f28 100644 --- a/src/main/resources/assets/imsm/models/item/useradded8.json +++ b/src/main/resources/assets/imsm/models/item/useradded8.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded8","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded8", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded80.json b/src/main/resources/assets/imsm/models/item/useradded80.json index cc35d774..18784902 100644 --- a/src/main/resources/assets/imsm/models/item/useradded80.json +++ b/src/main/resources/assets/imsm/models/item/useradded80.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded80","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded80", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded800.json b/src/main/resources/assets/imsm/models/item/useradded800.json index 56b9894d..59435c05 100644 --- a/src/main/resources/assets/imsm/models/item/useradded800.json +++ b/src/main/resources/assets/imsm/models/item/useradded800.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded800","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded800", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded801.json b/src/main/resources/assets/imsm/models/item/useradded801.json index f776e9ce..66961897 100644 --- a/src/main/resources/assets/imsm/models/item/useradded801.json +++ b/src/main/resources/assets/imsm/models/item/useradded801.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded801","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded801", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded802.json b/src/main/resources/assets/imsm/models/item/useradded802.json index db79ba2b..498b0d36 100644 --- a/src/main/resources/assets/imsm/models/item/useradded802.json +++ b/src/main/resources/assets/imsm/models/item/useradded802.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded802","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded802", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded803.json b/src/main/resources/assets/imsm/models/item/useradded803.json index be5f0d2b..ef6588ca 100644 --- a/src/main/resources/assets/imsm/models/item/useradded803.json +++ b/src/main/resources/assets/imsm/models/item/useradded803.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded803","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded803", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded804.json b/src/main/resources/assets/imsm/models/item/useradded804.json index 1c876ed7..42818066 100644 --- a/src/main/resources/assets/imsm/models/item/useradded804.json +++ b/src/main/resources/assets/imsm/models/item/useradded804.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded804","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded804", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded805.json b/src/main/resources/assets/imsm/models/item/useradded805.json index 2fa64e93..148dbc17 100644 --- a/src/main/resources/assets/imsm/models/item/useradded805.json +++ b/src/main/resources/assets/imsm/models/item/useradded805.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded805","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded805", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded806.json b/src/main/resources/assets/imsm/models/item/useradded806.json index 9f9c3877..0c7d273f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded806.json +++ b/src/main/resources/assets/imsm/models/item/useradded806.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded806","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded806", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded807.json b/src/main/resources/assets/imsm/models/item/useradded807.json index e9594aec..97eb80ce 100644 --- a/src/main/resources/assets/imsm/models/item/useradded807.json +++ b/src/main/resources/assets/imsm/models/item/useradded807.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded807","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded807", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded808.json b/src/main/resources/assets/imsm/models/item/useradded808.json index 92372175..155faab6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded808.json +++ b/src/main/resources/assets/imsm/models/item/useradded808.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded808","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded808", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded809.json b/src/main/resources/assets/imsm/models/item/useradded809.json index 4c01d967..5595b8a4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded809.json +++ b/src/main/resources/assets/imsm/models/item/useradded809.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded809","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded809", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded81.json b/src/main/resources/assets/imsm/models/item/useradded81.json index 1c7cc363..18ef3c64 100644 --- a/src/main/resources/assets/imsm/models/item/useradded81.json +++ b/src/main/resources/assets/imsm/models/item/useradded81.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded81","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded81", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded810.json b/src/main/resources/assets/imsm/models/item/useradded810.json index ef51ac17..822d78de 100644 --- a/src/main/resources/assets/imsm/models/item/useradded810.json +++ b/src/main/resources/assets/imsm/models/item/useradded810.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded810","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded810", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded811.json b/src/main/resources/assets/imsm/models/item/useradded811.json index 80868835..ebbe4f1e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded811.json +++ b/src/main/resources/assets/imsm/models/item/useradded811.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded811","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded811", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded812.json b/src/main/resources/assets/imsm/models/item/useradded812.json index 508d359d..2fbaab6e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded812.json +++ b/src/main/resources/assets/imsm/models/item/useradded812.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded812","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded812", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded813.json b/src/main/resources/assets/imsm/models/item/useradded813.json index e3834c35..06f64feb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded813.json +++ b/src/main/resources/assets/imsm/models/item/useradded813.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded813","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded813", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded814.json b/src/main/resources/assets/imsm/models/item/useradded814.json index bf07a301..d2407946 100644 --- a/src/main/resources/assets/imsm/models/item/useradded814.json +++ b/src/main/resources/assets/imsm/models/item/useradded814.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded814","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded814", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded815.json b/src/main/resources/assets/imsm/models/item/useradded815.json index ca92214f..34c0d9e6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded815.json +++ b/src/main/resources/assets/imsm/models/item/useradded815.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded815","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded815", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded816.json b/src/main/resources/assets/imsm/models/item/useradded816.json index 3ce79dee..3aa91a6f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded816.json +++ b/src/main/resources/assets/imsm/models/item/useradded816.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded816","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded816", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded817.json b/src/main/resources/assets/imsm/models/item/useradded817.json index ec00f50d..592b6a3b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded817.json +++ b/src/main/resources/assets/imsm/models/item/useradded817.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded817","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded817", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded818.json b/src/main/resources/assets/imsm/models/item/useradded818.json index f3b7acd8..bc6b2ea0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded818.json +++ b/src/main/resources/assets/imsm/models/item/useradded818.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded818","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded818", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded819.json b/src/main/resources/assets/imsm/models/item/useradded819.json index 43110995..f7f82cf1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded819.json +++ b/src/main/resources/assets/imsm/models/item/useradded819.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded819","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded819", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded82.json b/src/main/resources/assets/imsm/models/item/useradded82.json index 92322292..9bfe433f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded82.json +++ b/src/main/resources/assets/imsm/models/item/useradded82.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded82","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded82", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded820.json b/src/main/resources/assets/imsm/models/item/useradded820.json index c41b2a74..381e6b10 100644 --- a/src/main/resources/assets/imsm/models/item/useradded820.json +++ b/src/main/resources/assets/imsm/models/item/useradded820.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded820","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded820", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded821.json b/src/main/resources/assets/imsm/models/item/useradded821.json index 2854e0da..02a42f28 100644 --- a/src/main/resources/assets/imsm/models/item/useradded821.json +++ b/src/main/resources/assets/imsm/models/item/useradded821.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded821","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded821", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded822.json b/src/main/resources/assets/imsm/models/item/useradded822.json index 1b5602e7..abe43867 100644 --- a/src/main/resources/assets/imsm/models/item/useradded822.json +++ b/src/main/resources/assets/imsm/models/item/useradded822.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded822","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded822", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded823.json b/src/main/resources/assets/imsm/models/item/useradded823.json index 82f05456..8c54744c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded823.json +++ b/src/main/resources/assets/imsm/models/item/useradded823.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded823","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded823", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded824.json b/src/main/resources/assets/imsm/models/item/useradded824.json index 3df92334..a3b70dc5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded824.json +++ b/src/main/resources/assets/imsm/models/item/useradded824.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded824","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded824", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded825.json b/src/main/resources/assets/imsm/models/item/useradded825.json index 9e891d2c..f9c91cb6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded825.json +++ b/src/main/resources/assets/imsm/models/item/useradded825.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded825","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded825", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded826.json b/src/main/resources/assets/imsm/models/item/useradded826.json index 4e861600..ef860f15 100644 --- a/src/main/resources/assets/imsm/models/item/useradded826.json +++ b/src/main/resources/assets/imsm/models/item/useradded826.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded826","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded826", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded827.json b/src/main/resources/assets/imsm/models/item/useradded827.json index 36f683b1..4799ac5c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded827.json +++ b/src/main/resources/assets/imsm/models/item/useradded827.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded827","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded827", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded828.json b/src/main/resources/assets/imsm/models/item/useradded828.json index 5cffa743..d41f26f2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded828.json +++ b/src/main/resources/assets/imsm/models/item/useradded828.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded828","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded828", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded829.json b/src/main/resources/assets/imsm/models/item/useradded829.json index 7d1efcd6..d30d60e2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded829.json +++ b/src/main/resources/assets/imsm/models/item/useradded829.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded829","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded829", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded83.json b/src/main/resources/assets/imsm/models/item/useradded83.json index bd3c8b48..92646b35 100644 --- a/src/main/resources/assets/imsm/models/item/useradded83.json +++ b/src/main/resources/assets/imsm/models/item/useradded83.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded83","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded83", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded830.json b/src/main/resources/assets/imsm/models/item/useradded830.json index 4f47ae10..81546328 100644 --- a/src/main/resources/assets/imsm/models/item/useradded830.json +++ b/src/main/resources/assets/imsm/models/item/useradded830.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded830","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded830", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded831.json b/src/main/resources/assets/imsm/models/item/useradded831.json index c50561f6..8c58f01e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded831.json +++ b/src/main/resources/assets/imsm/models/item/useradded831.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded831","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded831", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded832.json b/src/main/resources/assets/imsm/models/item/useradded832.json index 45731a89..30b485ea 100644 --- a/src/main/resources/assets/imsm/models/item/useradded832.json +++ b/src/main/resources/assets/imsm/models/item/useradded832.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded832","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded832", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded833.json b/src/main/resources/assets/imsm/models/item/useradded833.json index 4dcde455..068d5a44 100644 --- a/src/main/resources/assets/imsm/models/item/useradded833.json +++ b/src/main/resources/assets/imsm/models/item/useradded833.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded833","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded833", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded834.json b/src/main/resources/assets/imsm/models/item/useradded834.json index b46aeec5..e20c7f23 100644 --- a/src/main/resources/assets/imsm/models/item/useradded834.json +++ b/src/main/resources/assets/imsm/models/item/useradded834.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded834","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded834", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded835.json b/src/main/resources/assets/imsm/models/item/useradded835.json index 8e8e3aa5..76cb4f18 100644 --- a/src/main/resources/assets/imsm/models/item/useradded835.json +++ b/src/main/resources/assets/imsm/models/item/useradded835.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded835","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded835", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded836.json b/src/main/resources/assets/imsm/models/item/useradded836.json index a9fff39b..878d13cf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded836.json +++ b/src/main/resources/assets/imsm/models/item/useradded836.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded836","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded836", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded837.json b/src/main/resources/assets/imsm/models/item/useradded837.json index 119d88f3..b69cf405 100644 --- a/src/main/resources/assets/imsm/models/item/useradded837.json +++ b/src/main/resources/assets/imsm/models/item/useradded837.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded837","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded837", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded838.json b/src/main/resources/assets/imsm/models/item/useradded838.json index c341002e..31fd3870 100644 --- a/src/main/resources/assets/imsm/models/item/useradded838.json +++ b/src/main/resources/assets/imsm/models/item/useradded838.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded838","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded838", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded839.json b/src/main/resources/assets/imsm/models/item/useradded839.json index 76f1f883..54d5363a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded839.json +++ b/src/main/resources/assets/imsm/models/item/useradded839.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded839","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded839", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded84.json b/src/main/resources/assets/imsm/models/item/useradded84.json index c7e6b143..5a4ec08f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded84.json +++ b/src/main/resources/assets/imsm/models/item/useradded84.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded84","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded84", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded840.json b/src/main/resources/assets/imsm/models/item/useradded840.json index 36a6aa9d..96ab3026 100644 --- a/src/main/resources/assets/imsm/models/item/useradded840.json +++ b/src/main/resources/assets/imsm/models/item/useradded840.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded840","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded840", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded841.json b/src/main/resources/assets/imsm/models/item/useradded841.json index 6730fbdc..b7b459f7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded841.json +++ b/src/main/resources/assets/imsm/models/item/useradded841.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded841","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded841", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded842.json b/src/main/resources/assets/imsm/models/item/useradded842.json index 8c9bd8bf..961771a3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded842.json +++ b/src/main/resources/assets/imsm/models/item/useradded842.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded842","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded842", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded843.json b/src/main/resources/assets/imsm/models/item/useradded843.json index cebea419..9280a5e9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded843.json +++ b/src/main/resources/assets/imsm/models/item/useradded843.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded843","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded843", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded844.json b/src/main/resources/assets/imsm/models/item/useradded844.json index cac2838b..a0cb2f3c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded844.json +++ b/src/main/resources/assets/imsm/models/item/useradded844.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded844","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded844", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded845.json b/src/main/resources/assets/imsm/models/item/useradded845.json index a6593c1a..386937ad 100644 --- a/src/main/resources/assets/imsm/models/item/useradded845.json +++ b/src/main/resources/assets/imsm/models/item/useradded845.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded845","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded845", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded846.json b/src/main/resources/assets/imsm/models/item/useradded846.json index 33a7ea76..73304e19 100644 --- a/src/main/resources/assets/imsm/models/item/useradded846.json +++ b/src/main/resources/assets/imsm/models/item/useradded846.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded846","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded846", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded847.json b/src/main/resources/assets/imsm/models/item/useradded847.json index 2beac016..8d281256 100644 --- a/src/main/resources/assets/imsm/models/item/useradded847.json +++ b/src/main/resources/assets/imsm/models/item/useradded847.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded847","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded847", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded848.json b/src/main/resources/assets/imsm/models/item/useradded848.json index 19844086..b89fd588 100644 --- a/src/main/resources/assets/imsm/models/item/useradded848.json +++ b/src/main/resources/assets/imsm/models/item/useradded848.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded848","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded848", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded849.json b/src/main/resources/assets/imsm/models/item/useradded849.json index 29a920dc..20ab19d6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded849.json +++ b/src/main/resources/assets/imsm/models/item/useradded849.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded849","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded849", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded85.json b/src/main/resources/assets/imsm/models/item/useradded85.json index caa5a42c..f60fec9d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded85.json +++ b/src/main/resources/assets/imsm/models/item/useradded85.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded85","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded85", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded850.json b/src/main/resources/assets/imsm/models/item/useradded850.json index ec0f316d..67915e98 100644 --- a/src/main/resources/assets/imsm/models/item/useradded850.json +++ b/src/main/resources/assets/imsm/models/item/useradded850.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded850","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded850", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded851.json b/src/main/resources/assets/imsm/models/item/useradded851.json index ebeed03d..698736a5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded851.json +++ b/src/main/resources/assets/imsm/models/item/useradded851.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded851","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded851", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded852.json b/src/main/resources/assets/imsm/models/item/useradded852.json index 1c25c384..464d91bd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded852.json +++ b/src/main/resources/assets/imsm/models/item/useradded852.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded852","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded852", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded853.json b/src/main/resources/assets/imsm/models/item/useradded853.json index 8a74fb3d..9a633beb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded853.json +++ b/src/main/resources/assets/imsm/models/item/useradded853.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded853","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded853", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded854.json b/src/main/resources/assets/imsm/models/item/useradded854.json index 1f5d9b0a..4ed8eeff 100644 --- a/src/main/resources/assets/imsm/models/item/useradded854.json +++ b/src/main/resources/assets/imsm/models/item/useradded854.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded854","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded854", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded855.json b/src/main/resources/assets/imsm/models/item/useradded855.json index 2e7df30e..2dfd5788 100644 --- a/src/main/resources/assets/imsm/models/item/useradded855.json +++ b/src/main/resources/assets/imsm/models/item/useradded855.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded855","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded855", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded856.json b/src/main/resources/assets/imsm/models/item/useradded856.json index fa2504e6..ff1df067 100644 --- a/src/main/resources/assets/imsm/models/item/useradded856.json +++ b/src/main/resources/assets/imsm/models/item/useradded856.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded856","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded856", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded857.json b/src/main/resources/assets/imsm/models/item/useradded857.json index 78c15109..263dbfd0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded857.json +++ b/src/main/resources/assets/imsm/models/item/useradded857.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded857","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded857", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded858.json b/src/main/resources/assets/imsm/models/item/useradded858.json index 330e676f..00b78bb2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded858.json +++ b/src/main/resources/assets/imsm/models/item/useradded858.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded858","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded858", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded859.json b/src/main/resources/assets/imsm/models/item/useradded859.json index fb0e60b3..abd665b2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded859.json +++ b/src/main/resources/assets/imsm/models/item/useradded859.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded859","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded859", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded86.json b/src/main/resources/assets/imsm/models/item/useradded86.json index 6694a679..ebe87632 100644 --- a/src/main/resources/assets/imsm/models/item/useradded86.json +++ b/src/main/resources/assets/imsm/models/item/useradded86.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded86","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded86", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded860.json b/src/main/resources/assets/imsm/models/item/useradded860.json index 19dfa6de..7772a242 100644 --- a/src/main/resources/assets/imsm/models/item/useradded860.json +++ b/src/main/resources/assets/imsm/models/item/useradded860.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded860","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded860", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded861.json b/src/main/resources/assets/imsm/models/item/useradded861.json index a5cc59a0..dd20d678 100644 --- a/src/main/resources/assets/imsm/models/item/useradded861.json +++ b/src/main/resources/assets/imsm/models/item/useradded861.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded861","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded861", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded862.json b/src/main/resources/assets/imsm/models/item/useradded862.json index fa65c544..bfe04194 100644 --- a/src/main/resources/assets/imsm/models/item/useradded862.json +++ b/src/main/resources/assets/imsm/models/item/useradded862.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded862","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded862", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded863.json b/src/main/resources/assets/imsm/models/item/useradded863.json index 80f3f58b..f38ff53f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded863.json +++ b/src/main/resources/assets/imsm/models/item/useradded863.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded863","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded863", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded864.json b/src/main/resources/assets/imsm/models/item/useradded864.json index 2c7c3e0d..46f048c6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded864.json +++ b/src/main/resources/assets/imsm/models/item/useradded864.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded864","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded864", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded865.json b/src/main/resources/assets/imsm/models/item/useradded865.json index 1a911aad..e793f833 100644 --- a/src/main/resources/assets/imsm/models/item/useradded865.json +++ b/src/main/resources/assets/imsm/models/item/useradded865.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded865","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded865", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded866.json b/src/main/resources/assets/imsm/models/item/useradded866.json index 8f4c665a..caf2a2e7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded866.json +++ b/src/main/resources/assets/imsm/models/item/useradded866.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded866","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded866", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded867.json b/src/main/resources/assets/imsm/models/item/useradded867.json index 1d5981bb..ca159b4b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded867.json +++ b/src/main/resources/assets/imsm/models/item/useradded867.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded867","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded867", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded868.json b/src/main/resources/assets/imsm/models/item/useradded868.json index 5840f246..7990c25e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded868.json +++ b/src/main/resources/assets/imsm/models/item/useradded868.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded868","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded868", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded869.json b/src/main/resources/assets/imsm/models/item/useradded869.json index 99e2a389..83fd8220 100644 --- a/src/main/resources/assets/imsm/models/item/useradded869.json +++ b/src/main/resources/assets/imsm/models/item/useradded869.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded869","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded869", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded87.json b/src/main/resources/assets/imsm/models/item/useradded87.json index 0c7aaf73..e0cdc793 100644 --- a/src/main/resources/assets/imsm/models/item/useradded87.json +++ b/src/main/resources/assets/imsm/models/item/useradded87.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded87","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded87", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded870.json b/src/main/resources/assets/imsm/models/item/useradded870.json index bd1f79c7..905f52e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded870.json +++ b/src/main/resources/assets/imsm/models/item/useradded870.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded870","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded870", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded871.json b/src/main/resources/assets/imsm/models/item/useradded871.json index 14b7af02..ee9e3158 100644 --- a/src/main/resources/assets/imsm/models/item/useradded871.json +++ b/src/main/resources/assets/imsm/models/item/useradded871.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded871","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded871", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded872.json b/src/main/resources/assets/imsm/models/item/useradded872.json index 352323a3..aeba9b7a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded872.json +++ b/src/main/resources/assets/imsm/models/item/useradded872.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded872","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded872", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded873.json b/src/main/resources/assets/imsm/models/item/useradded873.json index 9298262b..15a8cb1f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded873.json +++ b/src/main/resources/assets/imsm/models/item/useradded873.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded873","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded873", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded874.json b/src/main/resources/assets/imsm/models/item/useradded874.json index 0e3c7d0f..6b93b469 100644 --- a/src/main/resources/assets/imsm/models/item/useradded874.json +++ b/src/main/resources/assets/imsm/models/item/useradded874.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded874","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded874", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded875.json b/src/main/resources/assets/imsm/models/item/useradded875.json index 92a4bd4c..381a74c6 100644 --- a/src/main/resources/assets/imsm/models/item/useradded875.json +++ b/src/main/resources/assets/imsm/models/item/useradded875.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded875","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded875", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded876.json b/src/main/resources/assets/imsm/models/item/useradded876.json index 14c58a23..b27293d3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded876.json +++ b/src/main/resources/assets/imsm/models/item/useradded876.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded876","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded876", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded877.json b/src/main/resources/assets/imsm/models/item/useradded877.json index 3c1618d9..d3454005 100644 --- a/src/main/resources/assets/imsm/models/item/useradded877.json +++ b/src/main/resources/assets/imsm/models/item/useradded877.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded877","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded877", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded878.json b/src/main/resources/assets/imsm/models/item/useradded878.json index 530a8c57..ed26bac1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded878.json +++ b/src/main/resources/assets/imsm/models/item/useradded878.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded878","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded878", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded879.json b/src/main/resources/assets/imsm/models/item/useradded879.json index ee9d5837..aca5f09b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded879.json +++ b/src/main/resources/assets/imsm/models/item/useradded879.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded879","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded879", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded88.json b/src/main/resources/assets/imsm/models/item/useradded88.json index ab0cc435..5922ed2a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded88.json +++ b/src/main/resources/assets/imsm/models/item/useradded88.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded88","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded88", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded880.json b/src/main/resources/assets/imsm/models/item/useradded880.json index 683f97bf..bfac06e7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded880.json +++ b/src/main/resources/assets/imsm/models/item/useradded880.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded880","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded880", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded881.json b/src/main/resources/assets/imsm/models/item/useradded881.json index 171fc17d..266ca64c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded881.json +++ b/src/main/resources/assets/imsm/models/item/useradded881.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded881","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded881", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded882.json b/src/main/resources/assets/imsm/models/item/useradded882.json index 5e317bff..79dd0f33 100644 --- a/src/main/resources/assets/imsm/models/item/useradded882.json +++ b/src/main/resources/assets/imsm/models/item/useradded882.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded882","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded882", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded883.json b/src/main/resources/assets/imsm/models/item/useradded883.json index 4fe69923..f14bdc32 100644 --- a/src/main/resources/assets/imsm/models/item/useradded883.json +++ b/src/main/resources/assets/imsm/models/item/useradded883.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded883","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded883", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded884.json b/src/main/resources/assets/imsm/models/item/useradded884.json index 2240ccaf..91ecfe28 100644 --- a/src/main/resources/assets/imsm/models/item/useradded884.json +++ b/src/main/resources/assets/imsm/models/item/useradded884.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded884","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded884", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded885.json b/src/main/resources/assets/imsm/models/item/useradded885.json index b7710ed6..ac4c9b44 100644 --- a/src/main/resources/assets/imsm/models/item/useradded885.json +++ b/src/main/resources/assets/imsm/models/item/useradded885.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded885","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded885", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded886.json b/src/main/resources/assets/imsm/models/item/useradded886.json index 9094af29..22540945 100644 --- a/src/main/resources/assets/imsm/models/item/useradded886.json +++ b/src/main/resources/assets/imsm/models/item/useradded886.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded886","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded886", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded887.json b/src/main/resources/assets/imsm/models/item/useradded887.json index b045a96f..25602c1b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded887.json +++ b/src/main/resources/assets/imsm/models/item/useradded887.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded887","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded887", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded888.json b/src/main/resources/assets/imsm/models/item/useradded888.json index f9ef89dc..7e71a97c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded888.json +++ b/src/main/resources/assets/imsm/models/item/useradded888.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded888","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded888", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded889.json b/src/main/resources/assets/imsm/models/item/useradded889.json index 35bbe027..bdcfb1ae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded889.json +++ b/src/main/resources/assets/imsm/models/item/useradded889.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded889","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded889", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded89.json b/src/main/resources/assets/imsm/models/item/useradded89.json index 35b8d7fd..d1a2c484 100644 --- a/src/main/resources/assets/imsm/models/item/useradded89.json +++ b/src/main/resources/assets/imsm/models/item/useradded89.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded89","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded89", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded890.json b/src/main/resources/assets/imsm/models/item/useradded890.json index 926179b2..22f868f4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded890.json +++ b/src/main/resources/assets/imsm/models/item/useradded890.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded890","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded890", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded891.json b/src/main/resources/assets/imsm/models/item/useradded891.json index 2dda2a50..43ccb2e9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded891.json +++ b/src/main/resources/assets/imsm/models/item/useradded891.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded891","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded891", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded892.json b/src/main/resources/assets/imsm/models/item/useradded892.json index 3da98ee5..38487708 100644 --- a/src/main/resources/assets/imsm/models/item/useradded892.json +++ b/src/main/resources/assets/imsm/models/item/useradded892.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded892","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded892", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded893.json b/src/main/resources/assets/imsm/models/item/useradded893.json index 778be5b1..d5eaf34c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded893.json +++ b/src/main/resources/assets/imsm/models/item/useradded893.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded893","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded893", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded894.json b/src/main/resources/assets/imsm/models/item/useradded894.json index 52bf2a72..9cbda20a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded894.json +++ b/src/main/resources/assets/imsm/models/item/useradded894.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded894","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded894", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded895.json b/src/main/resources/assets/imsm/models/item/useradded895.json index a72b023e..b9196cda 100644 --- a/src/main/resources/assets/imsm/models/item/useradded895.json +++ b/src/main/resources/assets/imsm/models/item/useradded895.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded895","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded895", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded896.json b/src/main/resources/assets/imsm/models/item/useradded896.json index 67ade035..eed56fda 100644 --- a/src/main/resources/assets/imsm/models/item/useradded896.json +++ b/src/main/resources/assets/imsm/models/item/useradded896.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded896","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded896", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded897.json b/src/main/resources/assets/imsm/models/item/useradded897.json index 6265001b..78bd28b5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded897.json +++ b/src/main/resources/assets/imsm/models/item/useradded897.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded897","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded897", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded898.json b/src/main/resources/assets/imsm/models/item/useradded898.json index b231bb11..98711faf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded898.json +++ b/src/main/resources/assets/imsm/models/item/useradded898.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded898","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded898", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded899.json b/src/main/resources/assets/imsm/models/item/useradded899.json index 5d60c05c..9ae9307e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded899.json +++ b/src/main/resources/assets/imsm/models/item/useradded899.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded899","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded899", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded9.json b/src/main/resources/assets/imsm/models/item/useradded9.json index 69451a18..74b013b8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded9.json +++ b/src/main/resources/assets/imsm/models/item/useradded9.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded9","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded9", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded90.json b/src/main/resources/assets/imsm/models/item/useradded90.json index 9555a484..2fb899e1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded90.json +++ b/src/main/resources/assets/imsm/models/item/useradded90.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded90","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded90", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded900.json b/src/main/resources/assets/imsm/models/item/useradded900.json index c829d2c8..aff364b3 100644 --- a/src/main/resources/assets/imsm/models/item/useradded900.json +++ b/src/main/resources/assets/imsm/models/item/useradded900.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded900","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded900", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded901.json b/src/main/resources/assets/imsm/models/item/useradded901.json index ba802f22..35f32fce 100644 --- a/src/main/resources/assets/imsm/models/item/useradded901.json +++ b/src/main/resources/assets/imsm/models/item/useradded901.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded901","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded901", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded902.json b/src/main/resources/assets/imsm/models/item/useradded902.json index cba96aa5..875fde1f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded902.json +++ b/src/main/resources/assets/imsm/models/item/useradded902.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded902","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded902", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded903.json b/src/main/resources/assets/imsm/models/item/useradded903.json index 7766a68c..80384dd7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded903.json +++ b/src/main/resources/assets/imsm/models/item/useradded903.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded903","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded903", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded904.json b/src/main/resources/assets/imsm/models/item/useradded904.json index 69c4144b..22ccb6df 100644 --- a/src/main/resources/assets/imsm/models/item/useradded904.json +++ b/src/main/resources/assets/imsm/models/item/useradded904.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded904","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded904", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded905.json b/src/main/resources/assets/imsm/models/item/useradded905.json index ae6a3d41..3748b5bc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded905.json +++ b/src/main/resources/assets/imsm/models/item/useradded905.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded905","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded905", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded906.json b/src/main/resources/assets/imsm/models/item/useradded906.json index 21459ecb..8f91b3e5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded906.json +++ b/src/main/resources/assets/imsm/models/item/useradded906.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded906","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded906", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded907.json b/src/main/resources/assets/imsm/models/item/useradded907.json index 21467384..428cb034 100644 --- a/src/main/resources/assets/imsm/models/item/useradded907.json +++ b/src/main/resources/assets/imsm/models/item/useradded907.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded907","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded907", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded908.json b/src/main/resources/assets/imsm/models/item/useradded908.json index 7aa701d5..bb41e70d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded908.json +++ b/src/main/resources/assets/imsm/models/item/useradded908.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded908","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded908", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded909.json b/src/main/resources/assets/imsm/models/item/useradded909.json index 6a83d3e3..63ae90bc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded909.json +++ b/src/main/resources/assets/imsm/models/item/useradded909.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded909","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded909", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded91.json b/src/main/resources/assets/imsm/models/item/useradded91.json index 42d72486..b2a18bed 100644 --- a/src/main/resources/assets/imsm/models/item/useradded91.json +++ b/src/main/resources/assets/imsm/models/item/useradded91.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded91","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded91", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded910.json b/src/main/resources/assets/imsm/models/item/useradded910.json index 8848fd50..395cca21 100644 --- a/src/main/resources/assets/imsm/models/item/useradded910.json +++ b/src/main/resources/assets/imsm/models/item/useradded910.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded910","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded910", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded911.json b/src/main/resources/assets/imsm/models/item/useradded911.json index 43a45ca6..a15bece8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded911.json +++ b/src/main/resources/assets/imsm/models/item/useradded911.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded911","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded911", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded912.json b/src/main/resources/assets/imsm/models/item/useradded912.json index 53fed17d..ba0d0779 100644 --- a/src/main/resources/assets/imsm/models/item/useradded912.json +++ b/src/main/resources/assets/imsm/models/item/useradded912.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded912","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded912", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded913.json b/src/main/resources/assets/imsm/models/item/useradded913.json index 17688648..c902d2ec 100644 --- a/src/main/resources/assets/imsm/models/item/useradded913.json +++ b/src/main/resources/assets/imsm/models/item/useradded913.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded913","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded913", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded914.json b/src/main/resources/assets/imsm/models/item/useradded914.json index dc4e373b..3956521c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded914.json +++ b/src/main/resources/assets/imsm/models/item/useradded914.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded914","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded914", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded915.json b/src/main/resources/assets/imsm/models/item/useradded915.json index 9d3e1ac6..8f209586 100644 --- a/src/main/resources/assets/imsm/models/item/useradded915.json +++ b/src/main/resources/assets/imsm/models/item/useradded915.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded915","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded915", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded916.json b/src/main/resources/assets/imsm/models/item/useradded916.json index 79135cee..53f495c5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded916.json +++ b/src/main/resources/assets/imsm/models/item/useradded916.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded916","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded916", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded917.json b/src/main/resources/assets/imsm/models/item/useradded917.json index b3de915d..c0a141fd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded917.json +++ b/src/main/resources/assets/imsm/models/item/useradded917.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded917","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded917", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded918.json b/src/main/resources/assets/imsm/models/item/useradded918.json index 7644aca7..cdf58d73 100644 --- a/src/main/resources/assets/imsm/models/item/useradded918.json +++ b/src/main/resources/assets/imsm/models/item/useradded918.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded918","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded918", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded919.json b/src/main/resources/assets/imsm/models/item/useradded919.json index edd4c94b..141615f2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded919.json +++ b/src/main/resources/assets/imsm/models/item/useradded919.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded919","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded919", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded92.json b/src/main/resources/assets/imsm/models/item/useradded92.json index da336887..876c878e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded92.json +++ b/src/main/resources/assets/imsm/models/item/useradded92.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded92","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded92", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded920.json b/src/main/resources/assets/imsm/models/item/useradded920.json index 4fb5ad25..731974f8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded920.json +++ b/src/main/resources/assets/imsm/models/item/useradded920.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded920","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded920", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded921.json b/src/main/resources/assets/imsm/models/item/useradded921.json index 4e449022..0b0162f2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded921.json +++ b/src/main/resources/assets/imsm/models/item/useradded921.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded921","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded921", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded922.json b/src/main/resources/assets/imsm/models/item/useradded922.json index 1af0ec52..9a5cfc91 100644 --- a/src/main/resources/assets/imsm/models/item/useradded922.json +++ b/src/main/resources/assets/imsm/models/item/useradded922.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded922","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded922", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded923.json b/src/main/resources/assets/imsm/models/item/useradded923.json index f1302210..8b6822f9 100644 --- a/src/main/resources/assets/imsm/models/item/useradded923.json +++ b/src/main/resources/assets/imsm/models/item/useradded923.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded923","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded923", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded924.json b/src/main/resources/assets/imsm/models/item/useradded924.json index 3af07046..607d6176 100644 --- a/src/main/resources/assets/imsm/models/item/useradded924.json +++ b/src/main/resources/assets/imsm/models/item/useradded924.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded924","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded924", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded925.json b/src/main/resources/assets/imsm/models/item/useradded925.json index b86010d3..9659577d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded925.json +++ b/src/main/resources/assets/imsm/models/item/useradded925.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded925","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded925", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded926.json b/src/main/resources/assets/imsm/models/item/useradded926.json index b1c0f638..1cb1d44d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded926.json +++ b/src/main/resources/assets/imsm/models/item/useradded926.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded926","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded926", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded927.json b/src/main/resources/assets/imsm/models/item/useradded927.json index 553c640e..45069c84 100644 --- a/src/main/resources/assets/imsm/models/item/useradded927.json +++ b/src/main/resources/assets/imsm/models/item/useradded927.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded927","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded927", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded928.json b/src/main/resources/assets/imsm/models/item/useradded928.json index 66cced08..db2b108a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded928.json +++ b/src/main/resources/assets/imsm/models/item/useradded928.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded928","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded928", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded929.json b/src/main/resources/assets/imsm/models/item/useradded929.json index f31d42da..256f567d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded929.json +++ b/src/main/resources/assets/imsm/models/item/useradded929.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded929","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded929", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded93.json b/src/main/resources/assets/imsm/models/item/useradded93.json index 07e08a3f..b67a56e2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded93.json +++ b/src/main/resources/assets/imsm/models/item/useradded93.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded93","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded93", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded930.json b/src/main/resources/assets/imsm/models/item/useradded930.json index a187dc0d..8fe39f71 100644 --- a/src/main/resources/assets/imsm/models/item/useradded930.json +++ b/src/main/resources/assets/imsm/models/item/useradded930.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded930","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded930", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded931.json b/src/main/resources/assets/imsm/models/item/useradded931.json index 9be22836..7da6f3eb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded931.json +++ b/src/main/resources/assets/imsm/models/item/useradded931.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded931","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded931", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded932.json b/src/main/resources/assets/imsm/models/item/useradded932.json index 8fd0f46a..79260901 100644 --- a/src/main/resources/assets/imsm/models/item/useradded932.json +++ b/src/main/resources/assets/imsm/models/item/useradded932.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded932","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded932", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded933.json b/src/main/resources/assets/imsm/models/item/useradded933.json index 3ffa0f14..b0053f2e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded933.json +++ b/src/main/resources/assets/imsm/models/item/useradded933.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded933","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded933", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded934.json b/src/main/resources/assets/imsm/models/item/useradded934.json index 6114e377..198f3009 100644 --- a/src/main/resources/assets/imsm/models/item/useradded934.json +++ b/src/main/resources/assets/imsm/models/item/useradded934.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded934","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded934", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded935.json b/src/main/resources/assets/imsm/models/item/useradded935.json index 5df1eab8..6ac1f681 100644 --- a/src/main/resources/assets/imsm/models/item/useradded935.json +++ b/src/main/resources/assets/imsm/models/item/useradded935.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded935","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded935", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded936.json b/src/main/resources/assets/imsm/models/item/useradded936.json index 96d80686..50f3d7c5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded936.json +++ b/src/main/resources/assets/imsm/models/item/useradded936.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded936","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded936", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded937.json b/src/main/resources/assets/imsm/models/item/useradded937.json index 8b693915..99fabc61 100644 --- a/src/main/resources/assets/imsm/models/item/useradded937.json +++ b/src/main/resources/assets/imsm/models/item/useradded937.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded937","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded937", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded938.json b/src/main/resources/assets/imsm/models/item/useradded938.json index 8b44bdc7..49af07c1 100644 --- a/src/main/resources/assets/imsm/models/item/useradded938.json +++ b/src/main/resources/assets/imsm/models/item/useradded938.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded938","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded938", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded939.json b/src/main/resources/assets/imsm/models/item/useradded939.json index d531665f..eb7dc6cd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded939.json +++ b/src/main/resources/assets/imsm/models/item/useradded939.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded939","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded939", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded94.json b/src/main/resources/assets/imsm/models/item/useradded94.json index eeff8b66..950018a8 100644 --- a/src/main/resources/assets/imsm/models/item/useradded94.json +++ b/src/main/resources/assets/imsm/models/item/useradded94.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded94","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded94", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded940.json b/src/main/resources/assets/imsm/models/item/useradded940.json index beed6fed..6b00cb2a 100644 --- a/src/main/resources/assets/imsm/models/item/useradded940.json +++ b/src/main/resources/assets/imsm/models/item/useradded940.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded940","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded940", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded941.json b/src/main/resources/assets/imsm/models/item/useradded941.json index a11a6531..7a87efde 100644 --- a/src/main/resources/assets/imsm/models/item/useradded941.json +++ b/src/main/resources/assets/imsm/models/item/useradded941.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded941","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded941", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded942.json b/src/main/resources/assets/imsm/models/item/useradded942.json index a0b30985..d1577162 100644 --- a/src/main/resources/assets/imsm/models/item/useradded942.json +++ b/src/main/resources/assets/imsm/models/item/useradded942.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded942","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded942", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded943.json b/src/main/resources/assets/imsm/models/item/useradded943.json index e22d115d..a8e3c6e2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded943.json +++ b/src/main/resources/assets/imsm/models/item/useradded943.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded943","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded943", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded944.json b/src/main/resources/assets/imsm/models/item/useradded944.json index 99639dc5..b6e8b472 100644 --- a/src/main/resources/assets/imsm/models/item/useradded944.json +++ b/src/main/resources/assets/imsm/models/item/useradded944.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded944","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded944", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded945.json b/src/main/resources/assets/imsm/models/item/useradded945.json index 47f1dd4b..01ca0569 100644 --- a/src/main/resources/assets/imsm/models/item/useradded945.json +++ b/src/main/resources/assets/imsm/models/item/useradded945.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded945","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded945", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded946.json b/src/main/resources/assets/imsm/models/item/useradded946.json index 32b4cfe6..3fe5d07f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded946.json +++ b/src/main/resources/assets/imsm/models/item/useradded946.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded946","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded946", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded947.json b/src/main/resources/assets/imsm/models/item/useradded947.json index 366181d7..2526876c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded947.json +++ b/src/main/resources/assets/imsm/models/item/useradded947.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded947","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded947", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded948.json b/src/main/resources/assets/imsm/models/item/useradded948.json index f8c35e58..1d97d264 100644 --- a/src/main/resources/assets/imsm/models/item/useradded948.json +++ b/src/main/resources/assets/imsm/models/item/useradded948.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded948","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded948", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded949.json b/src/main/resources/assets/imsm/models/item/useradded949.json index 7b117026..e3d8ce60 100644 --- a/src/main/resources/assets/imsm/models/item/useradded949.json +++ b/src/main/resources/assets/imsm/models/item/useradded949.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded949","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded949", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded95.json b/src/main/resources/assets/imsm/models/item/useradded95.json index 53a1c75c..5c6151ae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded95.json +++ b/src/main/resources/assets/imsm/models/item/useradded95.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded95","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded95", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded950.json b/src/main/resources/assets/imsm/models/item/useradded950.json index 9cf08cfc..bedf9c9b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded950.json +++ b/src/main/resources/assets/imsm/models/item/useradded950.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded950","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded950", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded951.json b/src/main/resources/assets/imsm/models/item/useradded951.json index c0689b3d..992a8371 100644 --- a/src/main/resources/assets/imsm/models/item/useradded951.json +++ b/src/main/resources/assets/imsm/models/item/useradded951.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded951","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded951", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded952.json b/src/main/resources/assets/imsm/models/item/useradded952.json index 92e1455f..65f0badf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded952.json +++ b/src/main/resources/assets/imsm/models/item/useradded952.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded952","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded952", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded953.json b/src/main/resources/assets/imsm/models/item/useradded953.json index b676b0dd..249f7cea 100644 --- a/src/main/resources/assets/imsm/models/item/useradded953.json +++ b/src/main/resources/assets/imsm/models/item/useradded953.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded953","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded953", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded954.json b/src/main/resources/assets/imsm/models/item/useradded954.json index bb0bd7f1..c2276385 100644 --- a/src/main/resources/assets/imsm/models/item/useradded954.json +++ b/src/main/resources/assets/imsm/models/item/useradded954.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded954","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded954", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded955.json b/src/main/resources/assets/imsm/models/item/useradded955.json index 766272f6..89d4208c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded955.json +++ b/src/main/resources/assets/imsm/models/item/useradded955.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded955","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded955", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded956.json b/src/main/resources/assets/imsm/models/item/useradded956.json index 99fcf69d..1d460f3f 100644 --- a/src/main/resources/assets/imsm/models/item/useradded956.json +++ b/src/main/resources/assets/imsm/models/item/useradded956.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded956","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded956", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded957.json b/src/main/resources/assets/imsm/models/item/useradded957.json index 459252ec..cb2e0132 100644 --- a/src/main/resources/assets/imsm/models/item/useradded957.json +++ b/src/main/resources/assets/imsm/models/item/useradded957.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded957","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded957", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded958.json b/src/main/resources/assets/imsm/models/item/useradded958.json index eab0356f..32fe71bc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded958.json +++ b/src/main/resources/assets/imsm/models/item/useradded958.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded958","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded958", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded959.json b/src/main/resources/assets/imsm/models/item/useradded959.json index 6c57c4cf..477f63bf 100644 --- a/src/main/resources/assets/imsm/models/item/useradded959.json +++ b/src/main/resources/assets/imsm/models/item/useradded959.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded959","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded959", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded96.json b/src/main/resources/assets/imsm/models/item/useradded96.json index 01084fee..355c1cba 100644 --- a/src/main/resources/assets/imsm/models/item/useradded96.json +++ b/src/main/resources/assets/imsm/models/item/useradded96.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded96","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded96", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded960.json b/src/main/resources/assets/imsm/models/item/useradded960.json index a966c12e..ad8a0346 100644 --- a/src/main/resources/assets/imsm/models/item/useradded960.json +++ b/src/main/resources/assets/imsm/models/item/useradded960.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded960","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded960", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded961.json b/src/main/resources/assets/imsm/models/item/useradded961.json index 79725bc7..8b9daf34 100644 --- a/src/main/resources/assets/imsm/models/item/useradded961.json +++ b/src/main/resources/assets/imsm/models/item/useradded961.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded961","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded961", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded962.json b/src/main/resources/assets/imsm/models/item/useradded962.json index e442f847..64bb6f8d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded962.json +++ b/src/main/resources/assets/imsm/models/item/useradded962.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded962","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded962", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded963.json b/src/main/resources/assets/imsm/models/item/useradded963.json index 52bb353a..468b37ae 100644 --- a/src/main/resources/assets/imsm/models/item/useradded963.json +++ b/src/main/resources/assets/imsm/models/item/useradded963.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded963","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded963", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded964.json b/src/main/resources/assets/imsm/models/item/useradded964.json index 06b13ea5..ae2a5757 100644 --- a/src/main/resources/assets/imsm/models/item/useradded964.json +++ b/src/main/resources/assets/imsm/models/item/useradded964.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded964","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded964", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded965.json b/src/main/resources/assets/imsm/models/item/useradded965.json index db843948..27d0b9e5 100644 --- a/src/main/resources/assets/imsm/models/item/useradded965.json +++ b/src/main/resources/assets/imsm/models/item/useradded965.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded965","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded965", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded966.json b/src/main/resources/assets/imsm/models/item/useradded966.json index 14600774..9eb2f797 100644 --- a/src/main/resources/assets/imsm/models/item/useradded966.json +++ b/src/main/resources/assets/imsm/models/item/useradded966.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded966","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded966", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded967.json b/src/main/resources/assets/imsm/models/item/useradded967.json index 16c4c228..c9b75113 100644 --- a/src/main/resources/assets/imsm/models/item/useradded967.json +++ b/src/main/resources/assets/imsm/models/item/useradded967.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded967","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded967", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded968.json b/src/main/resources/assets/imsm/models/item/useradded968.json index 65a5835e..a6ab7245 100644 --- a/src/main/resources/assets/imsm/models/item/useradded968.json +++ b/src/main/resources/assets/imsm/models/item/useradded968.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded968","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded968", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded969.json b/src/main/resources/assets/imsm/models/item/useradded969.json index 5b1b2e8f..024a4dac 100644 --- a/src/main/resources/assets/imsm/models/item/useradded969.json +++ b/src/main/resources/assets/imsm/models/item/useradded969.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded969","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded969", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded97.json b/src/main/resources/assets/imsm/models/item/useradded97.json index 4e32b577..5d12c38e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded97.json +++ b/src/main/resources/assets/imsm/models/item/useradded97.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded97","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded97", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded970.json b/src/main/resources/assets/imsm/models/item/useradded970.json index ff960299..8e9012dc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded970.json +++ b/src/main/resources/assets/imsm/models/item/useradded970.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded970","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded970", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded971.json b/src/main/resources/assets/imsm/models/item/useradded971.json index 9f524382..963e444d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded971.json +++ b/src/main/resources/assets/imsm/models/item/useradded971.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded971","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded971", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded972.json b/src/main/resources/assets/imsm/models/item/useradded972.json index bee275bd..d24ec9be 100644 --- a/src/main/resources/assets/imsm/models/item/useradded972.json +++ b/src/main/resources/assets/imsm/models/item/useradded972.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded972","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded972", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded973.json b/src/main/resources/assets/imsm/models/item/useradded973.json index b7125e66..97a5a3ab 100644 --- a/src/main/resources/assets/imsm/models/item/useradded973.json +++ b/src/main/resources/assets/imsm/models/item/useradded973.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded973","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded973", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded974.json b/src/main/resources/assets/imsm/models/item/useradded974.json index e0b01d33..43deb384 100644 --- a/src/main/resources/assets/imsm/models/item/useradded974.json +++ b/src/main/resources/assets/imsm/models/item/useradded974.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded974","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded974", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded975.json b/src/main/resources/assets/imsm/models/item/useradded975.json index aa7b0f20..1c303409 100644 --- a/src/main/resources/assets/imsm/models/item/useradded975.json +++ b/src/main/resources/assets/imsm/models/item/useradded975.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded975","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded975", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded976.json b/src/main/resources/assets/imsm/models/item/useradded976.json index 65f9762e..0c759f45 100644 --- a/src/main/resources/assets/imsm/models/item/useradded976.json +++ b/src/main/resources/assets/imsm/models/item/useradded976.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded976","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded976", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded977.json b/src/main/resources/assets/imsm/models/item/useradded977.json index 0c6564f0..17e54690 100644 --- a/src/main/resources/assets/imsm/models/item/useradded977.json +++ b/src/main/resources/assets/imsm/models/item/useradded977.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded977","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded977", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded978.json b/src/main/resources/assets/imsm/models/item/useradded978.json index be5362eb..4a688105 100644 --- a/src/main/resources/assets/imsm/models/item/useradded978.json +++ b/src/main/resources/assets/imsm/models/item/useradded978.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded978","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded978", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded979.json b/src/main/resources/assets/imsm/models/item/useradded979.json index b29f277f..1de6e8dc 100644 --- a/src/main/resources/assets/imsm/models/item/useradded979.json +++ b/src/main/resources/assets/imsm/models/item/useradded979.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded979","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded979", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded98.json b/src/main/resources/assets/imsm/models/item/useradded98.json index e4b358dc..9b23e568 100644 --- a/src/main/resources/assets/imsm/models/item/useradded98.json +++ b/src/main/resources/assets/imsm/models/item/useradded98.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded98","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded98", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded980.json b/src/main/resources/assets/imsm/models/item/useradded980.json index deeb2915..4dcc8cfe 100644 --- a/src/main/resources/assets/imsm/models/item/useradded980.json +++ b/src/main/resources/assets/imsm/models/item/useradded980.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded980","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded980", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded981.json b/src/main/resources/assets/imsm/models/item/useradded981.json index 3e32d18c..9195d2d2 100644 --- a/src/main/resources/assets/imsm/models/item/useradded981.json +++ b/src/main/resources/assets/imsm/models/item/useradded981.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded981","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded981", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded982.json b/src/main/resources/assets/imsm/models/item/useradded982.json index 5964c4ee..96362245 100644 --- a/src/main/resources/assets/imsm/models/item/useradded982.json +++ b/src/main/resources/assets/imsm/models/item/useradded982.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded982","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded982", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded983.json b/src/main/resources/assets/imsm/models/item/useradded983.json index 53214e86..fae5a839 100644 --- a/src/main/resources/assets/imsm/models/item/useradded983.json +++ b/src/main/resources/assets/imsm/models/item/useradded983.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded983","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded983", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded984.json b/src/main/resources/assets/imsm/models/item/useradded984.json index a4093b54..4efe062e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded984.json +++ b/src/main/resources/assets/imsm/models/item/useradded984.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded984","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded984", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded985.json b/src/main/resources/assets/imsm/models/item/useradded985.json index 235bd002..6f2d5395 100644 --- a/src/main/resources/assets/imsm/models/item/useradded985.json +++ b/src/main/resources/assets/imsm/models/item/useradded985.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded985","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded985", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded986.json b/src/main/resources/assets/imsm/models/item/useradded986.json index 26619370..0963d32c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded986.json +++ b/src/main/resources/assets/imsm/models/item/useradded986.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded986","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded986", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded987.json b/src/main/resources/assets/imsm/models/item/useradded987.json index b8290a56..c2c3c357 100644 --- a/src/main/resources/assets/imsm/models/item/useradded987.json +++ b/src/main/resources/assets/imsm/models/item/useradded987.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded987","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded987", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded988.json b/src/main/resources/assets/imsm/models/item/useradded988.json index 8729992f..baa8ac44 100644 --- a/src/main/resources/assets/imsm/models/item/useradded988.json +++ b/src/main/resources/assets/imsm/models/item/useradded988.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded988","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded988", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded989.json b/src/main/resources/assets/imsm/models/item/useradded989.json index ea546573..6f4fd7e4 100644 --- a/src/main/resources/assets/imsm/models/item/useradded989.json +++ b/src/main/resources/assets/imsm/models/item/useradded989.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded989","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded989", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded99.json b/src/main/resources/assets/imsm/models/item/useradded99.json index 3a413f5d..7236aebd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded99.json +++ b/src/main/resources/assets/imsm/models/item/useradded99.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded99","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded99", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded990.json b/src/main/resources/assets/imsm/models/item/useradded990.json index 88ab1c42..5fd5fae7 100644 --- a/src/main/resources/assets/imsm/models/item/useradded990.json +++ b/src/main/resources/assets/imsm/models/item/useradded990.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded990","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded990", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded991.json b/src/main/resources/assets/imsm/models/item/useradded991.json index fff65982..74067d8e 100644 --- a/src/main/resources/assets/imsm/models/item/useradded991.json +++ b/src/main/resources/assets/imsm/models/item/useradded991.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded991","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded991", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded992.json b/src/main/resources/assets/imsm/models/item/useradded992.json index c1b4842b..05d354cd 100644 --- a/src/main/resources/assets/imsm/models/item/useradded992.json +++ b/src/main/resources/assets/imsm/models/item/useradded992.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded992","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded992", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded993.json b/src/main/resources/assets/imsm/models/item/useradded993.json index 87382b7a..eef4cf0d 100644 --- a/src/main/resources/assets/imsm/models/item/useradded993.json +++ b/src/main/resources/assets/imsm/models/item/useradded993.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded993","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded993", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded994.json b/src/main/resources/assets/imsm/models/item/useradded994.json index 1ec397cc..e5907740 100644 --- a/src/main/resources/assets/imsm/models/item/useradded994.json +++ b/src/main/resources/assets/imsm/models/item/useradded994.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded994","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded994", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded995.json b/src/main/resources/assets/imsm/models/item/useradded995.json index d7a67533..c88b2c19 100644 --- a/src/main/resources/assets/imsm/models/item/useradded995.json +++ b/src/main/resources/assets/imsm/models/item/useradded995.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded995","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded995", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded996.json b/src/main/resources/assets/imsm/models/item/useradded996.json index 15a4cbf0..42ba346b 100644 --- a/src/main/resources/assets/imsm/models/item/useradded996.json +++ b/src/main/resources/assets/imsm/models/item/useradded996.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded996","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded996", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded997.json b/src/main/resources/assets/imsm/models/item/useradded997.json index fd06f771..fc4290cb 100644 --- a/src/main/resources/assets/imsm/models/item/useradded997.json +++ b/src/main/resources/assets/imsm/models/item/useradded997.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded997","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded997", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded998.json b/src/main/resources/assets/imsm/models/item/useradded998.json index ed914b78..b28dcdf0 100644 --- a/src/main/resources/assets/imsm/models/item/useradded998.json +++ b/src/main/resources/assets/imsm/models/item/useradded998.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded998","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded998", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/useradded999.json b/src/main/resources/assets/imsm/models/item/useradded999.json index b5242cd9..06791f2c 100644 --- a/src/main/resources/assets/imsm/models/item/useradded999.json +++ b/src/main/resources/assets/imsm/models/item/useradded999.json @@ -1 +1 @@ -{"parent":"imsm:block/useradded999","display":{"thirdperson":{"rotation":[10,-45,170],"translation":[0,1.5,-2.75],"scale":[0.375,0.375,0.375]}}} +{"parent": "imsm:block/useradded999", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_nucleareast.json b/src/main/resources/assets/imsm/models/item/utilitypower_nucleareast.json new file mode 100644 index 00000000..8c0b3216 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_nucleareast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_nucleareast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_nuclearnorth.json b/src/main/resources/assets/imsm/models/item/utilitypower_nuclearnorth.json new file mode 100644 index 00000000..be031233 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_nuclearnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_nuclearnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_nuclearsouth.json b/src/main/resources/assets/imsm/models/item/utilitypower_nuclearsouth.json new file mode 100644 index 00000000..479d74f5 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_nuclearsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_nuclearsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_nuclearwest.json b/src/main/resources/assets/imsm/models/item/utilitypower_nuclearwest.json new file mode 100644 index 00000000..f0cdfb1c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_nuclearwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_nuclearwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_oilcoaleast.json b/src/main/resources/assets/imsm/models/item/utilitypower_oilcoaleast.json new file mode 100644 index 00000000..332054f8 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_oilcoaleast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_oilcoaleast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_oilcoalnorth.json b/src/main/resources/assets/imsm/models/item/utilitypower_oilcoalnorth.json new file mode 100644 index 00000000..91035e9d --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_oilcoalnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_oilcoalnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_oilcoalsouth.json b/src/main/resources/assets/imsm/models/item/utilitypower_oilcoalsouth.json new file mode 100644 index 00000000..c6bf0695 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_oilcoalsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_oilcoalsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_oilcoalwest.json b/src/main/resources/assets/imsm/models/item/utilitypower_oilcoalwest.json new file mode 100644 index 00000000..41daac6b --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_oilcoalwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_oilcoalwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_sunnortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/utilitypower_sunnortheastsouthwest.json new file mode 100644 index 00000000..c8f515c7 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_sunnortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_sunnortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_windeast.json b/src/main/resources/assets/imsm/models/item/utilitypower_windeast.json new file mode 100644 index 00000000..1d768c5a --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_windeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_windeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_windnorth.json b/src/main/resources/assets/imsm/models/item/utilitypower_windnorth.json new file mode 100644 index 00000000..5782ef21 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_windnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_windnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_windsouth.json b/src/main/resources/assets/imsm/models/item/utilitypower_windsouth.json new file mode 100644 index 00000000..e2f7c52c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_windsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_windsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypower_windwest.json b/src/main/resources/assets/imsm/models/item/utilitypower_windwest.json new file mode 100644 index 00000000..ccd4d769 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypower_windwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypower_windwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypumpjackeastwest.json b/src/main/resources/assets/imsm/models/item/utilitypumpjackeastwest.json new file mode 100644 index 00000000..04f62523 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypumpjackeastwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypumpjackeastwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitypumpjacknorthsouth.json b/src/main/resources/assets/imsm/models/item/utilitypumpjacknorthsouth.json new file mode 100644 index 00000000..2f9979fe --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitypumpjacknorthsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitypumpjacknorthsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_burningeast.json b/src/main/resources/assets/imsm/models/item/utilityscrap_burningeast.json new file mode 100644 index 00000000..bdcb9109 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_burningeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_burningeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_burningnorth.json b/src/main/resources/assets/imsm/models/item/utilityscrap_burningnorth.json new file mode 100644 index 00000000..d3e1e134 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_burningnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_burningnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_burningsouth.json b/src/main/resources/assets/imsm/models/item/utilityscrap_burningsouth.json new file mode 100644 index 00000000..7219d781 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_burningsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_burningsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_burningwest.json b/src/main/resources/assets/imsm/models/item/utilityscrap_burningwest.json new file mode 100644 index 00000000..78682eba --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_burningwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_burningwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_heapeast.json b/src/main/resources/assets/imsm/models/item/utilityscrap_heapeast.json new file mode 100644 index 00000000..1320d68c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_heapeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_heapeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_heapnorth.json b/src/main/resources/assets/imsm/models/item/utilityscrap_heapnorth.json new file mode 100644 index 00000000..9392e567 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_heapnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_heapnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_heapsouth.json b/src/main/resources/assets/imsm/models/item/utilityscrap_heapsouth.json new file mode 100644 index 00000000..10268290 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_heapsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_heapsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_heapwest.json b/src/main/resources/assets/imsm/models/item/utilityscrap_heapwest.json new file mode 100644 index 00000000..6e6f66d0 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_heapwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_heapwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_recycleeast.json b/src/main/resources/assets/imsm/models/item/utilityscrap_recycleeast.json new file mode 100644 index 00000000..bbf55bd9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_recycleeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_recycleeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_recyclenorth.json b/src/main/resources/assets/imsm/models/item/utilityscrap_recyclenorth.json new file mode 100644 index 00000000..9870dc79 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_recyclenorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_recyclenorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_recyclesouth.json b/src/main/resources/assets/imsm/models/item/utilityscrap_recyclesouth.json new file mode 100644 index 00000000..953c4918 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_recyclesouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_recyclesouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilityscrap_recyclewest.json b/src/main/resources/assets/imsm/models/item/utilityscrap_recyclewest.json new file mode 100644 index 00000000..82461a79 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilityscrap_recyclewest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilityscrap_recyclewest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitywater_pumpeast.json b/src/main/resources/assets/imsm/models/item/utilitywater_pumpeast.json new file mode 100644 index 00000000..85a20f17 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitywater_pumpeast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitywater_pumpeast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitywater_pumpnorth.json b/src/main/resources/assets/imsm/models/item/utilitywater_pumpnorth.json new file mode 100644 index 00000000..6c6e8255 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitywater_pumpnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitywater_pumpnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitywater_pumpsouth.json b/src/main/resources/assets/imsm/models/item/utilitywater_pumpsouth.json new file mode 100644 index 00000000..84f3e3f2 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitywater_pumpsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitywater_pumpsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitywater_pumpwest.json b/src/main/resources/assets/imsm/models/item/utilitywater_pumpwest.json new file mode 100644 index 00000000..37fe2785 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitywater_pumpwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitywater_pumpwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitywater_towernortheastsouthwest.json b/src/main/resources/assets/imsm/models/item/utilitywater_towernortheastsouthwest.json new file mode 100644 index 00000000..a8180f7c --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitywater_towernortheastsouthwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitywater_towernortheastsouthwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitywater_treatmenteast.json b/src/main/resources/assets/imsm/models/item/utilitywater_treatmenteast.json new file mode 100644 index 00000000..47c880c4 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitywater_treatmenteast.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitywater_treatmenteast", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitywater_treatmentnorth.json b/src/main/resources/assets/imsm/models/item/utilitywater_treatmentnorth.json new file mode 100644 index 00000000..9f0b57b9 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitywater_treatmentnorth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitywater_treatmentnorth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitywater_treatmentsouth.json b/src/main/resources/assets/imsm/models/item/utilitywater_treatmentsouth.json new file mode 100644 index 00000000..a9842585 --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitywater_treatmentsouth.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitywater_treatmentsouth", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/utilitywater_treatmentwest.json b/src/main/resources/assets/imsm/models/item/utilitywater_treatmentwest.json new file mode 100644 index 00000000..3275b4ee --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/utilitywater_treatmentwest.json @@ -0,0 +1 @@ +{"parent": "imsm:block/utilitywater_treatmentwest", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/models/item/woodenhouse.json b/src/main/resources/assets/imsm/models/item/woodenhouse.json new file mode 100644 index 00000000..6f57b46e --- /dev/null +++ b/src/main/resources/assets/imsm/models/item/woodenhouse.json @@ -0,0 +1 @@ +{"parent": "imsm:block/woodenhouse", "display": {"thirdperson": {"rotation": [10, -45, 170], "translation": [0, 1.5, -2.75], "scale": [0.375, 0.375, 0.375]}}} \ No newline at end of file diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockAirBalloon.png b/src/main/resources/assets/imsm/textures/block/blockairballoon.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockAirBalloon.png rename to src/main/resources/assets/imsm/textures/block/blockairballoon.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockAirplane.png b/src/main/resources/assets/imsm/textures/block/blockairplane.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockAirplane.png rename to src/main/resources/assets/imsm/textures/block/blockairplane.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockArena1.png b/src/main/resources/assets/imsm/textures/block/blockarena1.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockArena1.png rename to src/main/resources/assets/imsm/textures/block/blockarena1.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockArena2.png b/src/main/resources/assets/imsm/textures/block/blockarena2.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockArena2.png rename to src/main/resources/assets/imsm/textures/block/blockarena2.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockBigPyramid.png b/src/main/resources/assets/imsm/textures/block/blockbigpyramid.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockBigPyramid.png rename to src/main/resources/assets/imsm/textures/block/blockbigpyramid.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockBlackRock.png b/src/main/resources/assets/imsm/textures/block/blockblackrock.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockBlackRock.png rename to src/main/resources/assets/imsm/textures/block/blockblackrock.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockBoat.png b/src/main/resources/assets/imsm/textures/block/blockboat.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockBoat.png rename to src/main/resources/assets/imsm/textures/block/blockboat.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockBunker.png b/src/main/resources/assets/imsm/textures/block/blockbunker.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockBunker.png rename to src/main/resources/assets/imsm/textures/block/blockbunker.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockCastleTower.png b/src/main/resources/assets/imsm/textures/block/blockcastletower.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockCastleTower.png rename to src/main/resources/assets/imsm/textures/block/blockcastletower.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockCheckerboard.png b/src/main/resources/assets/imsm/textures/block/blockcheckerboard.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockCheckerboard.png rename to src/main/resources/assets/imsm/textures/block/blockcheckerboard.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockCosyHouse.png b/src/main/resources/assets/imsm/textures/block/blockcosyhouse.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockCosyHouse.png rename to src/main/resources/assets/imsm/textures/block/blockcosyhouse.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockDungeon.png b/src/main/resources/assets/imsm/textures/block/blockdungeon.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockDungeon.png rename to src/main/resources/assets/imsm/textures/block/blockdungeon.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockEnchantmentRoom.png b/src/main/resources/assets/imsm/textures/block/blockenchantmentroom.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockEnchantmentRoom.png rename to src/main/resources/assets/imsm/textures/block/blockenchantmentroom.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockFarm.png b/src/main/resources/assets/imsm/textures/block/blockfarm.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockFarm.png rename to src/main/resources/assets/imsm/textures/block/blockfarm.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockFarm2.png b/src/main/resources/assets/imsm/textures/block/blockfarm2.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockFarm2.png rename to src/main/resources/assets/imsm/textures/block/blockfarm2.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockFarm3.png b/src/main/resources/assets/imsm/textures/block/blockfarm3.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockFarm3.png rename to src/main/resources/assets/imsm/textures/block/blockfarm3.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockFarm4.png b/src/main/resources/assets/imsm/textures/block/blockfarm4.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockFarm4.png rename to src/main/resources/assets/imsm/textures/block/blockfarm4.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockGiantTree.png b/src/main/resources/assets/imsm/textures/block/blockgianttree.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockGiantTree.png rename to src/main/resources/assets/imsm/textures/block/blockgianttree.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockHountedHouse.png b/src/main/resources/assets/imsm/textures/block/blockhountedhouse.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockHountedHouse.png rename to src/main/resources/assets/imsm/textures/block/blockhountedhouse.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockHouse.png b/src/main/resources/assets/imsm/textures/block/blockhouse.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockHouse.png rename to src/main/resources/assets/imsm/textures/block/blockhouse.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockHouseTrap1.png b/src/main/resources/assets/imsm/textures/block/blockhousetrap1.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockHouseTrap1.png rename to src/main/resources/assets/imsm/textures/block/blockhousetrap1.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockHouseTrap2.png b/src/main/resources/assets/imsm/textures/block/blockhousetrap2.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockHouseTrap2.png rename to src/main/resources/assets/imsm/textures/block/blockhousetrap2.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockLighthouse.png b/src/main/resources/assets/imsm/textures/block/blocklighthouse.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockLighthouse.png rename to src/main/resources/assets/imsm/textures/block/blocklighthouse.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockMegaHouse.png b/src/main/resources/assets/imsm/textures/block/blockmegahouse.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockMegaHouse.png rename to src/main/resources/assets/imsm/textures/block/blockmegahouse.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockMegaHouse2.png b/src/main/resources/assets/imsm/textures/block/blockmegahouse2.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockMegaHouse2.png rename to src/main/resources/assets/imsm/textures/block/blockmegahouse2.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockMegaTower.png b/src/main/resources/assets/imsm/textures/block/blockmegatower.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockMegaTower.png rename to src/main/resources/assets/imsm/textures/block/blockmegatower.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockPlane.png b/src/main/resources/assets/imsm/textures/block/blockplane.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockPlane.png rename to src/main/resources/assets/imsm/textures/block/blockplane.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockPrison.png b/src/main/resources/assets/imsm/textures/block/blockprison.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockPrison.png rename to src/main/resources/assets/imsm/textures/block/blockprison.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockPrison2.png b/src/main/resources/assets/imsm/textures/block/blockprison2.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockPrison2.png rename to src/main/resources/assets/imsm/textures/block/blockprison2.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockPyramid.png b/src/main/resources/assets/imsm/textures/block/blockpyramid.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockPyramid.png rename to src/main/resources/assets/imsm/textures/block/blockpyramid.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockRollercoaster.png b/src/main/resources/assets/imsm/textures/block/blockrollercoaster.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockRollercoaster.png rename to src/main/resources/assets/imsm/textures/block/blockrollercoaster.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockRollerCoaster2.png b/src/main/resources/assets/imsm/textures/block/blockrollercoaster2.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockRollerCoaster2.png rename to src/main/resources/assets/imsm/textures/block/blockrollercoaster2.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockSkyscraper.png b/src/main/resources/assets/imsm/textures/block/blockskyscraper.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockSkyscraper.png rename to src/main/resources/assets/imsm/textures/block/blockskyscraper.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockStadium.png b/src/main/resources/assets/imsm/textures/block/blockstadium.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockStadium.png rename to src/main/resources/assets/imsm/textures/block/blockstadium.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockStoreHouse.png b/src/main/resources/assets/imsm/textures/block/blockstorehouse.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockStoreHouse.png rename to src/main/resources/assets/imsm/textures/block/blockstorehouse.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockTorch2.png b/src/main/resources/assets/imsm/textures/block/blocktorch2.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockTorch2.png rename to src/main/resources/assets/imsm/textures/block/blocktorch2.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockTower.png b/src/main/resources/assets/imsm/textures/block/blocktower.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockTower.png rename to src/main/resources/assets/imsm/textures/block/blocktower.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockUnlimited.png b/src/main/resources/assets/imsm/textures/block/blockunlimited.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockUnlimited.png rename to src/main/resources/assets/imsm/textures/block/blockunlimited.png diff --git a/src/main/resources/assets/imsm/textures/blocks/BlockWaterSlide.png b/src/main/resources/assets/imsm/textures/block/blockwaterslide.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/BlockWaterSlide.png rename to src/main/resources/assets/imsm/textures/block/blockwaterslide.png diff --git a/src/main/resources/assets/imsm/textures/blocks/boat.png b/src/main/resources/assets/imsm/textures/block/boat.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/boat.png rename to src/main/resources/assets/imsm/textures/block/boat.png diff --git a/src/main/resources/assets/imsm/textures/blocks/bus.png b/src/main/resources/assets/imsm/textures/block/bus.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/bus.png rename to src/main/resources/assets/imsm/textures/block/bus.png diff --git a/src/main/resources/assets/imsm/textures/blocks/bus2.png b/src/main/resources/assets/imsm/textures/block/bus2.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/bus2.png rename to src/main/resources/assets/imsm/textures/block/bus2.png diff --git a/src/main/resources/assets/imsm/textures/blocks/challenge.png b/src/main/resources/assets/imsm/textures/block/challenge.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/challenge.png rename to src/main/resources/assets/imsm/textures/block/challenge.png diff --git a/src/main/resources/assets/imsm/textures/blocks/christmas.png b/src/main/resources/assets/imsm/textures/block/christmas.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/christmas.png rename to src/main/resources/assets/imsm/textures/block/christmas.png diff --git a/src/main/resources/assets/imsm/textures/blocks/cinema.png b/src/main/resources/assets/imsm/textures/block/cinema.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/cinema.png rename to src/main/resources/assets/imsm/textures/block/cinema.png diff --git a/src/main/resources/assets/imsm/textures/blocks/dead.png b/src/main/resources/assets/imsm/textures/block/dead.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/dead.png rename to src/main/resources/assets/imsm/textures/block/dead.png diff --git a/src/main/resources/assets/imsm/textures/blocks/Decoration.png b/src/main/resources/assets/imsm/textures/block/decoration.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/Decoration.png rename to src/main/resources/assets/imsm/textures/block/decoration.png diff --git a/src/main/resources/assets/imsm/textures/blocks/fair.png b/src/main/resources/assets/imsm/textures/block/fair.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/fair.png rename to src/main/resources/assets/imsm/textures/block/fair.png diff --git a/src/main/resources/assets/imsm/textures/blocks/Food.png b/src/main/resources/assets/imsm/textures/block/food.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/Food.png rename to src/main/resources/assets/imsm/textures/block/food.png diff --git a/src/main/resources/assets/imsm/textures/blocks/helicopter.png b/src/main/resources/assets/imsm/textures/block/helicopter.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/helicopter.png rename to src/main/resources/assets/imsm/textures/block/helicopter.png diff --git a/src/main/resources/assets/imsm/textures/blocks/IndustryHigh_Density.png b/src/main/resources/assets/imsm/textures/block/industryhigh_density.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/IndustryHigh_Density.png rename to src/main/resources/assets/imsm/textures/block/industryhigh_density.png diff --git a/src/main/resources/assets/imsm/textures/blocks/IndustryLow_Density.png b/src/main/resources/assets/imsm/textures/block/industrylow_density.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/IndustryLow_Density.png rename to src/main/resources/assets/imsm/textures/block/industrylow_density.png diff --git a/src/main/resources/assets/imsm/textures/blocks/IndustryMedium_Density.png b/src/main/resources/assets/imsm/textures/block/industrymedium_density.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/IndustryMedium_Density.png rename to src/main/resources/assets/imsm/textures/block/industrymedium_density.png diff --git a/src/main/resources/assets/imsm/textures/blocks/Office.png b/src/main/resources/assets/imsm/textures/block/office.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/Office.png rename to src/main/resources/assets/imsm/textures/block/office.png diff --git a/src/main/resources/assets/imsm/textures/blocks/Public.png b/src/main/resources/assets/imsm/textures/block/public.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/Public.png rename to src/main/resources/assets/imsm/textures/block/public.png diff --git a/src/main/resources/assets/imsm/textures/blocks/Random.png b/src/main/resources/assets/imsm/textures/block/random.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/Random.png rename to src/main/resources/assets/imsm/textures/block/random.png diff --git a/src/main/resources/assets/imsm/textures/blocks/Remover.png b/src/main/resources/assets/imsm/textures/block/remover.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/Remover.png rename to src/main/resources/assets/imsm/textures/block/remover.png diff --git a/src/main/resources/assets/imsm/textures/blocks/RemoverArrow.png b/src/main/resources/assets/imsm/textures/block/removerarrow.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/RemoverArrow.png rename to src/main/resources/assets/imsm/textures/block/removerarrow.png diff --git a/src/main/resources/assets/imsm/textures/blocks/RemoverSpiraal.png b/src/main/resources/assets/imsm/textures/block/removerspiraal.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/RemoverSpiraal.png rename to src/main/resources/assets/imsm/textures/block/removerspiraal.png diff --git a/src/main/resources/assets/imsm/textures/blocks/ResidentalEnormous_Density.png b/src/main/resources/assets/imsm/textures/block/residentalenormous_density.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/ResidentalEnormous_Density.png rename to src/main/resources/assets/imsm/textures/block/residentalenormous_density.png diff --git a/src/main/resources/assets/imsm/textures/blocks/ResidentalHigh_Density.png b/src/main/resources/assets/imsm/textures/block/residentalhigh_density.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/ResidentalHigh_Density.png rename to src/main/resources/assets/imsm/textures/block/residentalhigh_density.png diff --git a/src/main/resources/assets/imsm/textures/blocks/ResidentalLow_Density.png b/src/main/resources/assets/imsm/textures/block/residentallow_density.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/ResidentalLow_Density.png rename to src/main/resources/assets/imsm/textures/block/residentallow_density.png diff --git a/src/main/resources/assets/imsm/textures/blocks/ResidentalMedium_Density.png b/src/main/resources/assets/imsm/textures/block/residentalmedium_density.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/ResidentalMedium_Density.png rename to src/main/resources/assets/imsm/textures/block/residentalmedium_density.png diff --git a/src/main/resources/assets/imsm/textures/blocks/ShoppingHigh_Density.png b/src/main/resources/assets/imsm/textures/block/shoppinghigh_density.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/ShoppingHigh_Density.png rename to src/main/resources/assets/imsm/textures/block/shoppinghigh_density.png diff --git a/src/main/resources/assets/imsm/textures/blocks/ShoppingLow_Density.png b/src/main/resources/assets/imsm/textures/block/shoppinglow_density.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/ShoppingLow_Density.png rename to src/main/resources/assets/imsm/textures/block/shoppinglow_density.png diff --git a/src/main/resources/assets/imsm/textures/blocks/ShoppingMedium_Density.png b/src/main/resources/assets/imsm/textures/block/shoppingmedium_density.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/ShoppingMedium_Density.png rename to src/main/resources/assets/imsm/textures/block/shoppingmedium_density.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportAirport.png b/src/main/resources/assets/imsm/textures/block/transportairport.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportAirport.png rename to src/main/resources/assets/imsm/textures/block/transportairport.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportAvenue.png b/src/main/resources/assets/imsm/textures/block/transportavenue.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportAvenue.png rename to src/main/resources/assets/imsm/textures/block/transportavenue.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportBridge.png b/src/main/resources/assets/imsm/textures/block/transportbridge.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportBridge.png rename to src/main/resources/assets/imsm/textures/block/transportbridge.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportConnector.png b/src/main/resources/assets/imsm/textures/block/transportconnector.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportConnector.png rename to src/main/resources/assets/imsm/textures/block/transportconnector.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportHarbour.png b/src/main/resources/assets/imsm/textures/block/transportharbour.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportHarbour.png rename to src/main/resources/assets/imsm/textures/block/transportharbour.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportHighway.png b/src/main/resources/assets/imsm/textures/block/transporthighway.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportHighway.png rename to src/main/resources/assets/imsm/textures/block/transporthighway.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportHighway_Floor.png b/src/main/resources/assets/imsm/textures/block/transporthighway_floor.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportHighway_Floor.png rename to src/main/resources/assets/imsm/textures/block/transporthighway_floor.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportPublic.png b/src/main/resources/assets/imsm/textures/block/transportpublic.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportPublic.png rename to src/main/resources/assets/imsm/textures/block/transportpublic.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportRoad.png b/src/main/resources/assets/imsm/textures/block/transportroad.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportRoad.png rename to src/main/resources/assets/imsm/textures/block/transportroad.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportRoads.png b/src/main/resources/assets/imsm/textures/block/transportroads.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportRoads.png rename to src/main/resources/assets/imsm/textures/block/transportroads.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportStreet.png b/src/main/resources/assets/imsm/textures/block/transportstreet.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportStreet.png rename to src/main/resources/assets/imsm/textures/block/transportstreet.png diff --git a/src/main/resources/assets/imsm/textures/blocks/TransportWater.png b/src/main/resources/assets/imsm/textures/block/transportwater.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/TransportWater.png rename to src/main/resources/assets/imsm/textures/block/transportwater.png diff --git a/src/main/resources/assets/imsm/textures/blocks/u.png b/src/main/resources/assets/imsm/textures/block/u.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/u.png rename to src/main/resources/assets/imsm/textures/block/u.png diff --git a/src/main/resources/assets/imsm/textures/blocks/Utility.png b/src/main/resources/assets/imsm/textures/block/utility.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/Utility.png rename to src/main/resources/assets/imsm/textures/block/utility.png diff --git a/src/main/resources/assets/imsm/textures/blocks/wg.png b/src/main/resources/assets/imsm/textures/block/wg.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/wg.png rename to src/main/resources/assets/imsm/textures/block/wg.png diff --git a/src/main/resources/assets/imsm/textures/blocks/windmill.png b/src/main/resources/assets/imsm/textures/block/windmill.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/windmill.png rename to src/main/resources/assets/imsm/textures/block/windmill.png diff --git a/src/main/resources/assets/imsm/textures/blocks/windmill2.png b/src/main/resources/assets/imsm/textures/block/windmill2.png similarity index 100% rename from src/main/resources/assets/imsm/textures/blocks/windmill2.png rename to src/main/resources/assets/imsm/textures/block/windmill2.png diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta new file mode 100644 index 00000000..9138236e --- /dev/null +++ b/src/main/resources/pack.mcmeta @@ -0,0 +1,7 @@ +{ + "pack": { + "description": "imsm resources", + "pack_format": 5, + "_comment": "A pack_format of 4 requires json lang files. Note: we require v4 pack meta for all mods." + } +}